Skip to content

Commit

Permalink
event-reporter / statefulset: added codefresh cert secret volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-codefresh committed Jun 12, 2024
1 parent f98f2f4 commit 3950fd7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions charts/argo-cd/templates/event-reporter/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ spec:
secretKeyRef:
key: token
name: codefresh-token
{{ - if or .Values.global.codefresh.tls.caCerts.secret.create .Values.global.codefresh.tls.caCerts.secretKeyRef }}
{{ - $name := .Values.global.codefresh.tls.caCerts.secret.create | ternary "codefresh-tls-certs" .Values.global.codefresh.tls.caCerts.secretKeyRef.name }}
{{ - $key := .Values.global.codefresh.tls.caCerts.secret.create | ternary (default "ca-bundle.crt" .Values.global.codefresh.tls.caCerts.secret.key) .Values.global.codefresh.tls.caCerts.secretKeyRef.key }}
- name: CODEFRESH_SSL_CERT_FILE
value: /app/config/codefresh-tls-certs/{{ $key }}
{{ - end }}
# todo: clean up
- name: EVENT_REPORTER_INSECURE
valueFrom:
Expand Down Expand Up @@ -227,6 +233,11 @@ spec:
{{- with .Values.eventReporter.volumeMounts }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if or .Values.global.codefresh.tls.caCerts.secret.create .Values.global.codefresh.tls.caCerts.secretKeyRef}}
- name: codefresh-tls-certs
mountPath: /app/config/codefresh-tls-certs
readOnly: true
{{- end }}
- name: argocd-repo-server-tls
mountPath: /app/config/server/tls
- mountPath: /tmp
Expand Down Expand Up @@ -265,6 +276,13 @@ spec:
{{- with .Values.eventReporter.volumes }}
{{- toYaml . | nindent 6 }}
{{- end }}
{ { - if or .Values.global.codefresh.tls.caCerts.secret.create .Values.global.codefresh.tls.caCerts.secretKeyRef } }
- name: codefresh-tls-certs
secret:
secretName: { { .Values.global.codefresh.tls.caCerts.secret.create | ternary "codefresh-tls-certs" .Values.global.codefresh.tls.caCerts.secretKeyRef.name } }
defaultMode: 420
optional: true
{ { - end } }
- emptyDir: { }
name: plugins-home
- emptyDir: { }
Expand Down

0 comments on commit 3950fd7

Please sign in to comment.