Skip to content

Commit

Permalink
fix(helm-chart): fix Python runtime version number (#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowies committed Jun 20, 2023
1 parent 3834b70 commit 05572ec
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm/chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <!---x-release-please-version--> | `ghcr.io/keptn/functions-runtime:v0.7.1` |
| `lifecycleOperator.manager.env.pythonRunnerImage` | specify image for python task runtime <!---x-release-please-version--> | `ghcr.io/keptn/python-runtime:0.0.0` |
| `lifecycleOperator.manager.env.pythonRunnerImage` | specify image for python task runtime <!---x-release-please-version--> | `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 <!---x-release-please-version--> | `v0.7.1` |
| `lifecycleOperator.manager.imagePullPolicy` | specify pull policy for manager image | `Always` |
Expand Down
2 changes: 1 addition & 1 deletion helm/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion klt-cert-manager/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*.dll
*.so
*.dylib
bin
bin/
testbin/*
Dockerfile.cross

Expand Down
2 changes: 1 addition & 1 deletion metrics-operator/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*.dll
*.so
*.dylib
bin
bin/
testbin/*

# Test binary, build with `go test -c`
Expand Down
2 changes: 1 addition & 1 deletion operator/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 05572ec

Please sign in to comment.