Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1f8c671

Browse files
keptn-botmowies
andauthoredMar 4, 2024··
Update keptn-cert-manager Helm chart (#137)
Co-authored-by: mowies <6901203+mowies@users.noreply.github.com> Co-authored-by: Moritz Wiesinger <moritz.wiesinger@dynatrace.com>
1 parent 3de7810 commit 1f8c671

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed
 

‎charts/keptn-cert-manager/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: common
33
repository: https://charts.lifecycle.keptn.sh
4-
version: 0.1.3
5-
digest: sha256:babbda5a2547939acb7ff5ddba4d516d5e59377ca2b02b597fa77c8ce2640b54
6-
generated: "2024-01-18T14:43:25.121567+01:00"
4+
version: 0.1.4
5+
digest: sha256:16a2c2b907d0cf88de1e869c5d9d2249c9aeb6a9fd941f77c71f4f58caae7868
6+
generated: "2024-02-26T10:12:23.997201478Z"

‎charts/keptn-cert-manager/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ type: application
3131
# This is the chart version. This version number should be incremented each time you make changes
3232
# to the chart and its templates, including the app version.
3333
# Versions are expected to follow Semantic Versioning (https://semver.org/)
34-
version: 0.2.1
34+
version: 0.2.2
3535

3636
# This is the version number of the application being deployed. This version number should be
3737
# incremented each time you make changes to the application. Versions are not expected to
3838
# follow Semantic Versioning. They should reflect the version the application is using.
3939
# It is recommended to use it with quotes.
40-
appVersion: "v2.0.0" # x-release-please-version
40+
appVersion: "v2.1.0" # x-release-please-version
4141
dependencies:
4242
- name: common
4343
repository: "https://charts.lifecycle.keptn.sh"
44-
version: 0.1.3
44+
version: 0.1.4

‎charts/keptn-cert-manager/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resource.
1111
| Name | Description | Value |
1212
| ------------------------------- | ------------------------------------------------------------------------- | ----- |
1313
| `global.imageRegistry` | Global container image registry | `""` |
14+
| `global.imagePullPolicy` | select global image pull policy | `""` |
1415
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
1516
| `global.commonLabels` | Common labels to add to all Keptn resources. Evaluated as a template | `{}` |
1617
| `global.commonAnnotations` | Common annotations to add to all Keptn resources. Evaluated as a template | `{}` |
@@ -37,8 +38,8 @@ resource.
3738
| `env.labelSelectorValue` | specify the value for the label selector | `true` |
3839
| `image.registry` | specify the container registry for the certificate-operator image | `ghcr.io` |
3940
| `image.repository` | specify repo for manager image | `keptn/certificate-operator` |
40-
| `image.tag` | select tag for manager container | `v2.0.0` |
41-
| `imagePullPolicy` | select image pull policy for manager container | `Always` |
41+
| `image.tag` | select tag for manager container | `v2.1.0` |
42+
| `image.imagePullPolicy` | specify pull policy for the manager image. This overrides global values | `""` |
4243
| `livenessProbe` | custom RBAC proxy liveness probe | |
4344
| `readinessProbe` | custom manager readiness probe | |
4445
| `resources` | custom limits and requests for manager container | |

‎charts/keptn-cert-manager/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
- name: KUBERNETES_CLUSTER_DOMAIN
4848
value: {{ .Values.kubernetesClusterDomain }}
4949
image: {{- include "common.images.image" ( dict "imageRoot" .Values.image "global" .Values.global ) | indent 1}}
50-
imagePullPolicy: {{ .Values.imagePullPolicy }}
50+
imagePullPolicy: {{ .Values.image.imagePullPolicy | default (.Values.global.imagePullPolicy | default "IfNotPresent") }}
5151
name: certificate-operator
5252
resources: {{- toYaml .Values.resources | nindent 12 }}
5353
securityContext:

‎charts/keptn-cert-manager/values.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
global:
77
## @param global.imageRegistry Global container image registry
88
imageRegistry: ""
9-
9+
## @param global.imagePullPolicy select global image pull policy
10+
imagePullPolicy: ""
1011
## @param global.imagePullSecrets Global Docker registry secret names as an array
1112
## E.g.
1213
## imagePullSecrets:
@@ -68,10 +69,9 @@ image:
6869
## @param image.repository specify repo for manager image
6970
repository: keptn/certificate-operator
7071
## @param image.tag select tag for manager container
71-
tag: v2.0.0 # x-release-please-version
72-
## @param imagePullPolicy select image pull policy for manager container
73-
imagePullPolicy: Always
74-
72+
tag: v2.1.0 # x-release-please-version
73+
## @param image.imagePullPolicy specify pull policy for the manager image. This overrides global values
74+
imagePullPolicy: ""
7575
## @extra livenessProbe custom RBAC proxy liveness probe
7676
## @skip livenessProbe.httpGet.path
7777
## @skip livenessProbe.httpGet.port

0 commit comments

Comments
 (0)
Please sign in to comment.