IPCEICIS-2952 #31

Merged
Michal.Wrobel merged 113 commits from IPCEICIS-2952 into development 2025-05-28 10:30:56 +00:00
2 changed files with 15 additions and 0 deletions
Showing only changes of commit ad76195004 - Show all commits

View file

@ -0,0 +1,9 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: passwd-user-configmap
data:
passwd: |
root:x:0:0:root:/root:/bin/sh
openbao:x:100:1000::/home/openbao:/sbin/nologin
logrotate:x:100:100::/home/logrotate:/bin/sh

View file

@ -39,6 +39,9 @@ server:
- name: logrotate-config-volume - name: logrotate-config-volume
configMap: configMap:
name: logrotate-config name: logrotate-config
- name: passwd-volume
configMap:
name: passwd-user-configmap
- name: host-log-storage - name: host-log-storage
hostPath: hostPath:
path: /var/log path: /var/log
@ -48,6 +51,9 @@ server:
- mountPath: /openbao/logs - mountPath: /openbao/logs
name: host-log-storage name: host-log-storage
readOnly: false readOnly: false
- mountPath: /etc/passwd
name: passwd-volume
subPath: passwd
extraArgs: "chmod o+rwx /etc/passwd" extraArgs: "chmod o+rwx /etc/passwd"