32 lines
728 B
YAML
32 lines
728 B
YAML
image:
|
|
repository: ghcr.io/project-zot/zot
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
|
|
kubernetes.io/tls-acme: "true"
|
|
kubernetes.io/ingress.allow-http: "false"
|
|
cert-manager.io/cluster-issuer: badhouseplants-issuer-http01
|
|
pathtype: Prefix
|
|
hosts:
|
|
- host: zot.badhouseplants.net
|
|
paths:
|
|
- path: /
|
|
tls:
|
|
- secretName: zot.badhouseplants.net
|
|
hosts:
|
|
- zot.badhouseplants.net
|
|
service:
|
|
type: ClusterIP
|
|
persistence: false
|
|
pvc:
|
|
create: false
|
|
# accessMode: "ReadWriteMany"
|
|
# storage: 5Gi
|
|
# storageClassName: ceph-filesystem
|
|
mountConfig: true
|
|
mountSecret: true
|
|
strategy:
|
|
type: Recreate
|