Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lifecycle-operator): remove scheduler from helm charts #3855

Merged
merged 2 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ metricsOperator:
enabled: false

lifecycleOperator:
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
allowedNamespaces: [allowed-ns-test]
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ metricsOperator:
enabled: false

lifecycleOperator:
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ metricsOperator:

lifecycleOperator:
promotionTasksEnabled: true
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ metricsOperator:

lifecycleOperator:
promotionTasksEnabled: true
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ metricsOperator:

lifecycleOperator:
promotionTasksEnabled: true
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
13 changes: 6 additions & 7 deletions .github/actions/deploy-keptn-on-cluster/values/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ metricsOperator:

lifecycleOperator:
promotionTasksEnabled: true
lifecycleOperator:
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
imagePullPolicy: Never
image:
tag: $TAG
env:
functionRunnerImage: localhost:5000/keptn/deno-runtime:$TAG
pythonRunnerImage: localhost:5000/keptn/python-runtime:$TAG
7 changes: 3 additions & 4 deletions .github/scripts/.helm-tests/default/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ certManager:
tag: v0.0.0
lifecycleOperator:
enabled: true
lifecycleOperator:
image:
tag: v0.0.0
imagePullPolicy: Never
image:
tag: v0.0.0
imagePullPolicy: Never
metricsOperator:
enabled: true
image:
Expand Down
11 changes: 5 additions & 6 deletions .github/scripts/.helm-tests/lifecycle-only/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ global:
lifecycleOperator:
enabled: true
promotionTasksEnabled: true
lifecycleOperator:
image:
repository: busybox
tag: 1.37
imagePullPolicy: Always
hostNetwork: true
image:
repository: busybox
tag: 1.37
imagePullPolicy: Always
hostNetwork: true
deniedNamespaces: ["foo", "bar"]

metricsOperator:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ certManager:
tag: v0.0.0
lifecycleOperator:
enabled: true
lifecycleOperator:
image:
tag: v0.0.0
imagePullPolicy: Never
image:
tag: v0.0.0
imagePullPolicy: Never
metricsOperator:
enabled: false
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
lifecycleOperator:
annotations:
test-annotation: "local" # will be used
lifecycleOperator:
image:
registry: "local-registry.io" # will be used
imagePullPolicy: Never # will be used
image:
registry: "local-registry.io" # will be used
imagePullPolicy: Never # will be used
metricsOperator:
annotations:
test-annotation: "local" # will be used
Expand Down
3 changes: 2 additions & 1 deletion docs/blog/posts/keptn-helm-umbrella-charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ certManager:

lifecycleOperator:
enabled: false # installation of lifecycle-operator is disabled
metricsOperator:

metricsOperator:
replicas: 3 # installing 3 replicas of metrics-operator
annotations: # setting custom annotations for metrics-operator
myMetricsKey: metricsValue1
Expand Down
Loading
Loading