From a2720d103680291f0e408b784e220fddb838ce8e Mon Sep 17 00:00:00 2001 From: Valentin Fedoskin Date: Sat, 23 May 2020 17:13:16 +0200 Subject: [PATCH] add json logs --- charts/flux-notifier/Chart.yaml | 4 ++-- charts/flux-notifier/README.md | 4 ++-- charts/flux-notifier/values.yaml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/charts/flux-notifier/Chart.yaml b/charts/flux-notifier/Chart.yaml index 5755049..13f5e84 100644 --- a/charts/flux-notifier/Chart.yaml +++ b/charts/flux-notifier/Chart.yaml @@ -3,8 +3,8 @@ name: flux-notifier description: |- Helm chart to deploy [flux-notifier](https://github.com/slamdev/flux-notifier/). type: application -version: 0.0.1 -appVersion: "v0.0.1" +version: 0.0.2 +appVersion: "v0.0.4" home: https://github.com/slamdev/helm-charts/tree/master/charts/flux-notifier icon: https://docs.fluxcd.io/en/1.19.0/_files/flux-icon@2x.png maintainers: diff --git a/charts/flux-notifier/README.md b/charts/flux-notifier/README.md index afaa363..f7cc23a 100644 --- a/charts/flux-notifier/README.md +++ b/charts/flux-notifier/README.md @@ -2,7 +2,7 @@ flux-notifier ============= Helm chart to deploy [flux-notifier](https://github.com/slamdev/flux-notifier/). -Current chart version is `0.0.1` +Current chart version is `0.0.2` Source code can be found [here](https://github.com/slamdev/helm-charts/tree/master/charts/flux-notifier) @@ -13,7 +13,7 @@ Source code can be found [here](https://github.com/slamdev/helm-charts/tree/mast | Key | Type | Default | Description | |-----|------|---------|-------------| | affinity | object | `{}` | affinity for scheduler pod assignment | -| env | list | `[]` | additional environment variables for the deployment | +| env | list | `[{"name":"FLUX_NOTIFIER_LOG_FORMAT","value":"json"}]` | additional environment variables for the deployment | | fullnameOverride | string | `""` | full name of the chart. | | image.pullPolicy | string | `"IfNotPresent"` | image pull policy | | image.repository | string | `"slamdev/flux-notifier"` | image repository | diff --git a/charts/flux-notifier/values.yaml b/charts/flux-notifier/values.yaml index d397a92..496234a 100644 --- a/charts/flux-notifier/values.yaml +++ b/charts/flux-notifier/values.yaml @@ -90,6 +90,6 @@ readinessProbe: port: http # env -- additional environment variables for the deployment -env: [] - # - name: SAMPLE - # value: text +env: + - name: FLUX_NOTIFIER_LOG_FORMAT + value: json