kubernetes: clarifier volume config et sync localtime #229

Merged
vlbeaudoin merged 1 commit from vlbeaudoin/deploy/localtime into main 2025-02-20 17:13:28 -05:00 AGit

View file

@ -23,9 +23,23 @@ spec:
- containerPort: 8080
volumeMounts:
- name: config-secret
mountPath: '/etc/agecemorg/config.yaml'
mountPath: '/etc/agecemorg/'
readOnly: true
- name: localtime
mountPath: /etc/localtime
readOnly: true
volumes:
- name: config-secret
secret:
secretName: agecemorg-config
secretName: agecemorg-config-secret
items:
- key: config.yaml
path: config.yaml
#- key: cert.pem
# path: cert.pem
#- key: key.pem
# path: key.pem
- name: localtime
hostPath:
path: /etc/localtime
type: File