You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
338 B
15 lines
338 B
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: authservice
|
|
spec:
|
|
template:
|
|
spec:
|
|
initContainers:
|
|
- name: fix-permission
|
|
image: busybox
|
|
command: ['sh', '-c']
|
|
args: ['chmod -R 777 /var/lib/authservice;']
|
|
volumeMounts:
|
|
- mountPath: /var/lib/authservice
|
|
name: data
|
|
|