Update cronjob-fediblock-sync.yaml

This commit is contained in:
cunningpike 2023-01-23 12:30:25 -05:00 committed by GitHub
parent 5eb8cf1032
commit 85ed0a2de0
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: command:
- fediblock - fediblock
- -c - -c
- {{ .Values.fediblockhole.conf_file.path }}{{ .Values.fediblockhole.conf_file.filename }} - {{ .Values.fediblockhole.conf_file_path }}{{ .Values.fediblockhole.conf_file_filename }}
envFrom: envFrom:
- configMapRef: - configMapRef:
name: {{ include "fediblockhole.fullname" . }}-conf-toml name: {{ include "fediblockhole.fullname" . }}-conf-toml
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: "{{ .Values.fediblockhole.conf_file.path }}" mountPath: "{{ .Values.fediblockhole.conf_file_path }}"
subPath: {{ .Values.fediblockhole.conf_file.filename }} subPath: {{ .Values.fediblockhole.conf_file_filename }}
volumes: volumes:
- name: config - name: config
configMap: configMap:
name: {{ include "fediblockhole.fullname" . }}-conf-toml name: {{ include "fediblockhole.fullname" . }}-conf-toml
items: items:
- key: "{{ .Values.fediblockhole.conf_file.filename }}" - key: "{{ .Values.fediblockhole.conf_file_filename }}"
path: "{{ .Values.fediblockhole.conf_file.filename }}" path: "{{ .Values.fediblockhole.conf_file_filename }}"
{{- end }} {{- end }}