From 05572ec6a1a6dd7a56c786333af046eea19929bd Mon Sep 17 00:00:00 2001 From: Moritz Wiesinger Date: Tue, 20 Jun 2023 12:00:21 +0200 Subject: [PATCH] fix(helm-chart): fix Python runtime version number (#1586) --- helm/chart/README.md | 2 +- helm/chart/values.yaml | 2 +- klt-cert-manager/.gitignore | 2 +- metrics-operator/.gitignore | 2 +- operator/config/manager/manager.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helm/chart/README.md b/helm/chart/README.md index 1286cd2ec3..453bfb4c71 100644 --- a/helm/chart/README.md +++ b/helm/chart/README.md @@ -92,7 +92,7 @@ checks | `lifecycleOperator.manager.env.optionsControllerLogLevel` | sets the log level of Keptn Options Controller | `0` | | `lifecycleOperator.manager.env.otelCollectorUrl` | Sets the URL for the open telemetry collector | `otel-collector:4317` | | `lifecycleOperator.manager.env.functionRunnerImage` | specify image for deno task runtime | `ghcr.io/keptn/functions-runtime:v0.7.1` | -| `lifecycleOperator.manager.env.pythonRunnerImage` | specify image for python task runtime | `ghcr.io/keptn/python-runtime:0.0.0` | +| `lifecycleOperator.manager.env.pythonRunnerImage` | specify image for python task runtime | `ghcr.io/keptn/python-runtime:v0.0.0` | | `lifecycleOperator.manager.image.repository` | specify registry for manager image | `ghcr.io/keptn/lifecycle-operator` | | `lifecycleOperator.manager.image.tag` | select tag for manager image | `v0.7.1` | | `lifecycleOperator.manager.imagePullPolicy` | specify pull policy for manager image | `Always` | diff --git a/helm/chart/values.yaml b/helm/chart/values.yaml index c519eb15b3..17624eb281 100644 --- a/helm/chart/values.yaml +++ b/helm/chart/values.yaml @@ -78,7 +78,7 @@ lifecycleOperator: keptnWorkloadInstanceControllerLogLevel: "0" optionsControllerLogLevel: "0" otelCollectorUrl: otel-collector:4317 - pythonRunnerImage: ghcr.io/keptn/python-runtime:0.0.0 + pythonRunnerImage: ghcr.io/keptn/python-runtime:v0.0.0 image: repository: ghcr.io/keptn/lifecycle-operator tag: v0.7.1 diff --git a/klt-cert-manager/.gitignore b/klt-cert-manager/.gitignore index 540294463a..55384b0fe3 100644 --- a/klt-cert-manager/.gitignore +++ b/klt-cert-manager/.gitignore @@ -5,7 +5,7 @@ *.dll *.so *.dylib -bin +bin/ testbin/* Dockerfile.cross diff --git a/metrics-operator/.gitignore b/metrics-operator/.gitignore index 00f37ab078..e28d69955a 100644 --- a/metrics-operator/.gitignore +++ b/metrics-operator/.gitignore @@ -5,7 +5,7 @@ *.dll *.so *.dylib -bin +bin/ testbin/* # Test binary, build with `go test -c` diff --git a/operator/config/manager/manager.yaml b/operator/config/manager/manager.yaml index 0dfd57d2e6..68d488b892 100644 --- a/operator/config/manager/manager.yaml +++ b/operator/config/manager/manager.yaml @@ -68,7 +68,7 @@ spec: - name: FUNCTION_RUNNER_IMAGE value: ghcr.io/keptn/functions-runtime:v0.7.1 # x-release-please-version - name: PYTHON_RUNNER_IMAGE - value: ghcr.io/keptn/python-runtime:0.0.0 # x-release-please-version + value: ghcr.io/keptn/python-runtime:v0.0.0 # x-release-please-version - name: OTEL_COLLECTOR_URL value: otel-collector:4317 - name: KEPTN_APP_CONTROLLER_LOG_LEVEL