| 123456789101112131415161718192021222324252627282930 |
- #! values.yaml
- # Project Name
- projectName: bridge
- # Namespace
- namespace: bridge
- # Default deployment settings
- deployment:
- strategy: Recreate
- defaultReplicas: 1
- # Default resource limits
- resources:
- defaultCpuLimit: "100m"
- defaultMemoryLimit: "512Mi"
- # Service settings
- service:
- type: LoadBalancer
- # Storage settings
- storage:
- defaultStorageClass: "hostpath"
- defaultSize: "100Mi"
- defaultAccessMode: "ReadWriteOnce"
- # Services variables
- serviceA:
- image: alpine
- imagePullPolicy: IfNotPresent
- serviceB:
- image: alpine
- imagePullPolicy: IfNotPresent
- # You can apply the same logic to loop on networks, volumes, secrets and configs...
|