Skip to content

Commit

Permalink
fix extractor secret
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Jul 31, 2022
1 parent 282e525 commit 024ca5e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions templates/extractors/clowder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
- name: RABBITMQ_URI
valueFrom:
secretKeyRef:
name: {{ include "clowder.fullname" . }}
name: {{ $fullname }}
key: rabbitmq-uri
containers:
- name: extractor
Expand All @@ -46,24 +46,24 @@ spec:
- name: RABBITMQ_URI
valueFrom:
secretKeyRef:
name: {{ include "clowder.fullname" . }}
name: {{ $fullname }}
key: rabbitmq-uri
{{- if .env }}
{{- toYaml .env | nindent 12 }}
{{- end }}
{{- if $.Values.resources }}
{{- if .resources }}
resources:
{{- toYaml $.Values.resources | nindent 12 }}
{{- toYaml .resources | nindent 12 }}
{{- end }}
{{- with $.Values.nodeSelector }}
{{- with .nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with $.Values.affinity }}
{{- with .affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with $.Values.tolerations }}
{{- with .tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down

0 comments on commit 024ca5e

Please sign in to comment.