values.yaml.j2 522 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. image:
  3. repository: portainer/portainer-ce
  4. tag: 2.34.0
  5. pullPolicy: IfNotPresent
  6. service:
  7. type: {{ network_mode }}
  8. {% if traefik_enabled %}
  9. ingress:
  10. enabled: true
  11. hosts:
  12. - host: {{ traefik_host }}
  13. paths:
  14. - path: /
  15. port: "9000"
  16. {% if traefik_tls_enabled %}
  17. tls:
  18. - secretName: {{ traefik_tls_secret }}
  19. hosts:
  20. - {{ traefik_host }}
  21. {% endif %}
  22. {% endif %}
  23. {% if volumes_mode == 'existing-pvc' %}
  24. persistence:
  25. existingClaim: {{ volumes_pvc_name }}
  26. {% endif %}