Skip to content

Commit

Permalink
Update keptn-cert-manager Helm chart (#137)
Browse files Browse the repository at this point in the history
Co-authored-by: mowies <[email protected]>
Co-authored-by: Moritz Wiesinger <[email protected]>
  • Loading branch information
3 people authored Mar 4, 2024
1 parent 3de7810 commit 1f8c671
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
6 changes: 3 additions & 3 deletions charts/keptn-cert-manager/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: https://charts.lifecycle.keptn.sh
version: 0.1.3
digest: sha256:babbda5a2547939acb7ff5ddba4d516d5e59377ca2b02b597fa77c8ce2640b54
generated: "2024-01-18T14:43:25.121567+01:00"
version: 0.1.4
digest: sha256:16a2c2b907d0cf88de1e869c5d9d2249c9aeb6a9fd941f77c71f4f58caae7868
generated: "2024-02-26T10:12:23.997201478Z"
6 changes: 3 additions & 3 deletions charts/keptn-cert-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.1
version: 0.2.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v2.0.0" # x-release-please-version
appVersion: "v2.1.0" # x-release-please-version
dependencies:
- name: common
repository: "https://charts.lifecycle.keptn.sh"
version: 0.1.3
version: 0.1.4
5 changes: 3 additions & 2 deletions charts/keptn-cert-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ resource.
| Name | Description | Value |
| ------------------------------- | ------------------------------------------------------------------------- | ----- |
| `global.imageRegistry` | Global container image registry | `""` |
| `global.imagePullPolicy` | select global image pull policy | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.commonLabels` | Common labels to add to all Keptn resources. Evaluated as a template | `{}` |
| `global.commonAnnotations` | Common annotations to add to all Keptn resources. Evaluated as a template | `{}` |
Expand All @@ -37,8 +38,8 @@ resource.
| `env.labelSelectorValue` | specify the value for the label selector | `true` |
| `image.registry` | specify the container registry for the certificate-operator image | `ghcr.io` |
| `image.repository` | specify repo for manager image | `keptn/certificate-operator` |
| `image.tag` | select tag for manager container | `v2.0.0` |
| `imagePullPolicy` | select image pull policy for manager container | `Always` |
| `image.tag` | select tag for manager container | `v2.1.0` |
| `image.imagePullPolicy` | specify pull policy for the manager image. This overrides global values | `""` |
| `livenessProbe` | custom RBAC proxy liveness probe | |
| `readinessProbe` | custom manager readiness probe | |
| `resources` | custom limits and requests for manager container | |
2 changes: 1 addition & 1 deletion charts/keptn-cert-manager/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
- name: KUBERNETES_CLUSTER_DOMAIN
value: {{ .Values.kubernetesClusterDomain }}
image: {{- include "common.images.image" ( dict "imageRoot" .Values.image "global" .Values.global ) | indent 1}}
imagePullPolicy: {{ .Values.imagePullPolicy }}
imagePullPolicy: {{ .Values.image.imagePullPolicy | default (.Values.global.imagePullPolicy | default "IfNotPresent") }}
name: certificate-operator
resources: {{- toYaml .Values.resources | nindent 12 }}
securityContext:
Expand Down
10 changes: 5 additions & 5 deletions charts/keptn-cert-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
global:
## @param global.imageRegistry Global container image registry
imageRegistry: ""

## @param global.imagePullPolicy select global image pull policy
imagePullPolicy: ""
## @param global.imagePullSecrets Global Docker registry secret names as an array
## E.g.
## imagePullSecrets:
Expand Down Expand Up @@ -68,10 +69,9 @@ image:
## @param image.repository specify repo for manager image
repository: keptn/certificate-operator
## @param image.tag select tag for manager container
tag: v2.0.0 # x-release-please-version
## @param imagePullPolicy select image pull policy for manager container
imagePullPolicy: Always

tag: v2.1.0 # x-release-please-version
## @param image.imagePullPolicy specify pull policy for the manager image. This overrides global values
imagePullPolicy: ""
## @extra livenessProbe custom RBAC proxy liveness probe
## @skip livenessProbe.httpGet.path
## @skip livenessProbe.httpGet.port
Expand Down

0 comments on commit 1f8c671

Please sign in to comment.