values.yaml 674 B

123456789101112131415161718192021222324252627282930
  1. #! values.yaml
  2. # Project Name
  3. projectName: bridge
  4. # Namespace
  5. namespace: bridge
  6. # Default deployment settings
  7. deployment:
  8. strategy: Recreate
  9. defaultReplicas: 1
  10. # Default resource limits
  11. resources:
  12. defaultCpuLimit: "100m"
  13. defaultMemoryLimit: "512Mi"
  14. # Service settings
  15. service:
  16. type: LoadBalancer
  17. # Storage settings
  18. storage:
  19. defaultStorageClass: "hostpath"
  20. defaultSize: "100Mi"
  21. defaultAccessMode: "ReadWriteOnce"
  22. # Services variables
  23. serviceA:
  24. image: alpine
  25. imagePullPolicy: IfNotPresent
  26. serviceB:
  27. image: alpine
  28. imagePullPolicy: IfNotPresent
  29. # You can apply the same logic to loop on networks, volumes, secrets and configs...