Merge pull request 'kubernetes: clarifier volume config et sync localtime' (#229) from vlbeaudoin/deploy/localtime into main

Reviewed-on: #229
This commit is contained in:
Victor Lacasse-Beaudoin 2025-02-20 17:13:27 -05:00
commit df4d3bedaa

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