values.yaml 570 B

123456789101112131415161718192021222324252627
  1. ---
  2. image:
  3. repository: portainer/portainer-ce
  4. tag: 2.30.1
  5. pullPolicy: IfNotPresent
  6. service:
  7. type: ClusterIP
  8. # --> (Optional) When you want to automatically create an Ingress
  9. # ingress:
  10. # enabled: true
  11. # hosts:
  12. # - host: "your-fqdn" # <-- Replace with your FQDN
  13. # paths:
  14. # - path: /
  15. # port: "9000"
  16. # tls:
  17. # - secretName: portainer-certificate-secret
  18. # hosts:
  19. # - "your-fqdn" # <-- Replace with your FQDN
  20. # <--
  21. # --> (Optional) When using an existing PVC
  22. # persistence:
  23. # existingClaim: "portainer"
  24. # <--