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

chore: update release please config to work with umbrella chart #2357

Merged
merged 1 commit into from
Oct 30, 2023
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
2 changes: 1 addition & 1 deletion klt-cert-manager/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ image:
## @param image.repository specify repo for manager image
repository: ghcr.io/keptn/certificate-operator
## @param image.tag select tag for manager container
tag: v1.1.0
tag: v1.1.0 # x-release-please-version
## @param imagePullPolicy select image pull policy for manager container
imagePullPolicy: Always

Expand Down
6 changes: 3 additions & 3 deletions lifecycle-operator/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ lifecycleOperator:
## @param lifecycleOperator.image.repository specify registry for manager image
repository: ghcr.io/keptn/lifecycle-operator
## @param lifecycleOperator.image.tag select tag for manager image
tag: v0.8.2
tag: v0.8.2 # x-release-please-version
## @param lifecycleOperator.imagePullPolicy specify pull policy for manager image
imagePullPolicy: Always
## @extra lifecycleOperator.livenessProbe custom livenessprobe for manager container
Expand Down Expand Up @@ -206,7 +206,7 @@ scheduler:
## @param scheduler.image.repository set image repository for scheduler
repository: ghcr.io/keptn/scheduler
## @param scheduler.image.tag set image tag for scheduler
tag: v0.8.2
tag: v0.8.2 # x-release-please-version
## @param scheduler.imagePullPolicy set image pull policy for scheduler
imagePullPolicy: Always
## @extra scheduler.livenessProbe customizable liveness probe for the scheduler
Expand Down Expand Up @@ -256,4 +256,4 @@ schedulerConfig:
## @param schedulerConfig.profiles[0].plugins.permit.enabled[0].name enables permit plugin
- name: KLCPermit
## @param scheduler.tolerations adds tolerations for scheduler
schedulerName: keptn-scheduler
schedulerName: keptn-scheduler
2 changes: 1 addition & 1 deletion metrics-operator/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ image:
## @param image.repository specify registry for manager image
repository: ghcr.io/keptn/metrics-operator
## @param image.tag select tag for manager image
tag: v0.8.2
tag: v0.8.2 # x-release-please-version
## @extra livenessProbe custom livenessprobe for manager container
## @skip livenessProbe.httpGet.path
## @skip livenessProbe.httpGet.port
Expand Down
18 changes: 12 additions & 6 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"extra-files": [
"README.md",
"operator/config/manager/manager.yaml",
"helm/chart/Chart.yaml",
"chart/Chart.yaml",
"Makefile",
"helm/chart/values.yaml",
"helm/chart/README.md",
"chart/values.yaml",
"chart/README.md",
"docs/content/en/docs/getting-started/_index.md"
]
},
Expand All @@ -38,7 +38,9 @@
"prerelease": false,
"draft": false,
"extra-files": [
"Makefile"
"Makefile",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"lifecycle-operator": {
Expand All @@ -50,7 +52,9 @@
"prerelease": false,
"draft": false,
"extra-files": [
"Makefile"
"Makefile",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"scheduler": {
Expand All @@ -75,7 +79,9 @@
"extra-files": [
"Makefile",
"converter/sli_converter.md",
"converter/slo_converter.md"
"converter/slo_converter.md",
"chart/Chart.yaml",
"chart/values.yaml"
]
},
"runtimes/python-runtime": {
Expand Down
Loading