infisical.values.yaml 880 B

12345678910111213141516171819202122232425262728293031
  1. # Values for the bundled Infisical standalone chart used by the e2e suite.
  2. # Postgres and Redis run in-cluster (chart subcharts); ingress is disabled
  3. # because the suite reaches the API through a port-forward and ESO reaches it
  4. # through the in-cluster Service. ENCRYPTION_KEY / AUTH_SECRET / SITE_URL are
  5. # supplied at runtime by the addon via the "infisical-secrets" Secret.
  6. infisical:
  7. # Pin a predictable Service / Deployment name so the addon can port-forward
  8. # and ESO can target it by DNS without templating the release name.
  9. fullnameOverride: "infisical-backend"
  10. replicaCount: 1
  11. autoBootstrap:
  12. enabled: false
  13. image:
  14. tag: "v0.158.0"
  15. kubeSecretRef: "infisical-secrets"
  16. resources:
  17. requests:
  18. cpu: 200m
  19. limits:
  20. memory: 1000Mi
  21. ingress:
  22. enabled: false
  23. nginx:
  24. enabled: false
  25. postgresql:
  26. enabled: true
  27. redis:
  28. enabled: true