Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Add manifest generation to helm chart. #2332

Merged
merged 1 commit into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions chart/flux/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ spec:
{{- if .Values.git.label }}
- --git-label={{ .Values.git.label }}
{{- end }}
{{- if .Values.git.manifestGeneration }}
- --manifest-generation=true
{{- end }}
- --registry-poll-interval={{ .Values.registry.pollInterval }}
- --registry-rps={{ .Values.registry.rps }}
- --registry-burst={{ .Values.registry.burst }}
Expand Down
2 changes: 2 additions & 0 deletions chart/flux/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ git:
# data: |
# [credential "https://github.com"]
# username = foo
# Enables manifest generation. For an example see: https://github.com/weaveworks/flux-kustomize-example
manifestGeneration: false

registry:
# Period at which to check for updated images
Expand Down