Update cronjob-fediblock-sync.yaml

This commit is contained in:
cunningpike 2023-01-23 14:25:11 -05:00 committed by GitHub
parent a17461aafc
commit facb997fce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -25,19 +25,19 @@ spec:
command:
- fediblock-sync
- -c
- {{- include "fediblockhole.conf_file_path" . }}{{- include "fediblockhole.conf_file_filename" . }}
- {{ include "fediblockhole.conf_file_path" . }}{{ include "fediblockhole.conf_file_filename" . }}
envFrom:
- configMapRef:
name: {{ include "fediblockhole.fullname" . }}-conf-toml
volumeMounts:
- name: config
mountPath: {{- include "fediblockhole.conf_file_path" . | quote }}
subPath: {{- include "fediblockhole.conf_file_filename" . }}
mountPath: {{ include "fediblockhole.conf_file_path" . | quote }}
subPath: {{ include "fediblockhole.conf_file_filename" . }}
volumes:
- name: config
configMap:
name: {{ include "fediblockhole.fullname" . }}-conf-toml
items:
- key: {{- include "fediblockhole.conf_file_filename" . | quote }}
path: {{- include "fediblockhole.conf_file_filename" . | quote }}
- key: {{ include "fediblockhole.conf_file_filename" . | quote }}
path: {{ include "fediblockhole.conf_file_filename" . | quote }}
{{- end }}