-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Prepare helm chart for 0.3.0 (#73)
* chore: updated helm chart version to 0.0.4 * chore: bump appVersion to v0.3.0 * fix: incorrect formatting on empty labels * fix: newline indent * fix: remove default runtime config in helm chart * feat: simplify helm chart (#75) * feat: simplify helm chart * fix: remove -n * fix: register healthcheck for e2e test * feat: separate checks and sparrow config * fix: e2e tests * fix: bug where env variables would not be read correctly * feat: allow mounting extra secrets as env variables * docs: envfromSecrets * chore: bump viper version to fix issue with env variables * chore: remove old secret * chore: increase check value examples for slow networks * feat: default config * fix: configmap file not created --------- Co-authored-by: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com>
- Loading branch information
1 parent
9dc3eed
commit c4a6b54
Showing
13 changed files
with
158 additions
and
605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "sparrow.sparrowConfigName" . }} | ||
labels: | ||
{{- include "sparrow.labels" . | nindent 4 }} | ||
data: | ||
.sparrow.yaml: | | ||
{{- .Values.sparrowConfig | toYaml | nindent 4 }} | ||
{{- if .Values.checksConfig }} | ||
checks.yaml: | | ||
{{- .Values.checksConfig | toYaml | nindent 4 }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.