2 Commits
1.0.2 ... 1.0.5

Author SHA1 Message Date
6138857d66 fix deploy
All checks were successful
Upload Helm Chart / Explore-Gitea-Actions (push) Successful in 2s
2024-01-14 19:22:38 +00:00
84363f7f36 Fix deploy
All checks were successful
Upload Helm Chart / Explore-Gitea-Actions (push) Successful in 2s
2024-01-14 19:20:42 +00:00

View File

@@ -20,19 +20,19 @@ spec:
{{- range $sec := .Values.secrets }} {{- range $sec := .Values.secrets }}
{{- if eq $sec.type "env"}} {{- if eq $sec.type "env"}}
- secretRef: - secretRef:
name: {{ $sec.name }} name: {{ include "..fullname" $ }}-{{ $sec.name }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- range $esec := .Values.externalSecrets }} {{- range $esec := .Values.externalSecrets }}
{{- if eq $esec.type "env"}} {{- if eq $esec.type "env"}}
- secretRef: - secretRef:
name: {{ $esec.ref.target }} name: {{ include "..fullname" $ }}-exts-{{ $esec.name }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- range $cfgm := .Values.configMaps }} {{- range $cfgm := .Values.configMaps }}
{{- if eq $cfgm.type "env"}} {{- if eq $cfgm.type "env"}}
- configMapRef: - configMapRef:
name: {{ $cfgm.name }} name: {{ include "..fullname" $ }}-{{ $cfgm.name }}
{{- end }} {{- end }}
{{- end }} {{- end }}
image: {{ .Values.site.image }} image: {{ .Values.site.image }}
@@ -45,7 +45,7 @@ spec:
{{- end }} {{- end }}
{{- range $esecret := .Values.externalSecrets }} {{- range $esecret := .Values.externalSecrets }}
{{- if eq $esecret.type "docker" }} {{- if eq $esecret.type "docker" }}
- name: {{ $esecret.ref.target }} - name: {{ include "..fullname" $ }}-exts-{{ $esecret.name }}
{{- end }} {{- end }}
{{- end }} {{- end }}
ports: ports: