28 lines
684 B
YAML
28 lines
684 B
YAML
replicaCount: 1
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
nginx.ingress.kubernetes.io/backend-protocol: HTTP
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
oceanbox.io/expose: internal
|
|
hosts:
|
|
- host: codex.adm.oceanbox.io
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
tls:
|
|
- hosts:
|
|
- codex.adm.oceanbox.io
|
|
secretName: prod-codex-tls
|
|
volumes:
|
|
- name: appsettings
|
|
configMap:
|
|
name: prod-codex-appsettings
|
|
volumeMounts:
|
|
- name: appsettings
|
|
mountPath: "/app/appsettings.json"
|
|
readOnly: true
|
|
subPath: appsettings.json
|