| 12345678910111213141516171819202122232425262728293031 |
- replicaCount: 1
- image:
- repository: registry
- tag: "2"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 5000
- persistence:
- enabled: true
- storageClass: longhorn
- size: 5Gi
- ingress:
- enabled: true
- className: traefik
- host: registry.asterisk.is
- tls:
- enabled: true
- secretName: registry-tls
- issuerName: letsencrypt-prod
- auth:
- enabled: true
- username: docker
- password: dockerpass
- # optional: precomputed htpasswd content (string). If empty, template will generate it from username/password
- htpasswd: ""
|