diff --git a/charts/kubezero-logging/Chart.yaml b/charts/kubezero-logging/Chart.yaml index 2b1da0d..28e04a1 100644 --- a/charts/kubezero-logging/Chart.yaml +++ b/charts/kubezero-logging/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: kubezero-logging description: KubeZero Umbrella Chart for complete EFK stack type: application -version: 0.3.6 +version: 0.3.7 appVersion: 1.2.1 home: https://kubezero.com icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png diff --git a/charts/kubezero-logging/values.yaml b/charts/kubezero-logging/values.yaml index 3f0f51d..1ae05f1 100644 --- a/charts/kubezero-logging/values.yaml +++ b/charts/kubezero-logging/values.yaml @@ -128,8 +128,7 @@ fluentd: remove_keys id # KubeZero pipeline incl. GeoIP etc. - # Freaking ES jams under load and all is lost ... - # pipeline fluentd + pipeline fluentd host "#{ENV['OUTPUT_HOST']}" port "#{ENV['OUTPUT_PORT']}" diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 1ee80fd..2ac91f7 100755 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -2,6 +2,7 @@ set -e DEPLOY_DIR=$( dirname $( realpath $0 )) +which yq || { echo "yq not found!"; exit 1; } # Waits for max 300s and retries function wait_for() { @@ -31,13 +32,15 @@ else _argo_date="$(date -u --iso-8601=seconds)" _argo_passwd="$($DEPLOY_DIR/argocd_password.py)" - cat <> values.yaml + cat < _argocd_values.yaml +argo-cd: configs: secret: # ArgoCD password: ${_argo_passwd%%:*} Please move to secure location ! argocdServerAdminPassword: "${_argo_passwd##*:}" argocdServerAdminPasswordMtime: "$_argo_date" EOF + yq merge -i --overwrite values.yaml _argocd_values.yaml && rm -f _argocd_values.yaml fi # Deploy initial argocd