Skip to content

Commit

Permalink
Add needs for s3 components
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Jul 29, 2024
1 parent b00705d commit b401387
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion helmfile.d/20-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ releases:
version: {{ .Values.radar_s3_connector._chart_version }}
installed: {{ .Values.radar_s3_connector._install }}
timeout: {{ add .Values.base_timeout .Values.radar_s3_connector._extra_timeout }}
{{ if .Values.minio._install }}needs: [minio]{{ end }}
{{ if or .Values.minio._install .Values.cp_kafka._install }}
needs:
{{ if .Values.minio._install }}- minio{{ end }}
{{ if .Values.cp_kafka._install }}
- cp-kafka
- cp-schema-registry
{{ end }}
{{ end }}
<<: *logFailedRelease
values:
- {{ .Values.radar_s3_connector | toYaml | indent 8 | trim }}
Expand Down

0 comments on commit b401387

Please sign in to comment.