File tree 5 files changed +15
-14
lines changed
charts/keptn-cert-manager
5 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 1
1
dependencies:
2
2
- name: common
3
3
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 "
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ type: application
31
31
# This is the chart version. This version number should be incremented each time you make changes
32
32
# to the chart and its templates, including the app version.
33
33
# Versions are expected to follow Semantic Versioning (https://semver.org/)
34
- version : 0.2.1
34
+ version : 0.2.2
35
35
36
36
# This is the version number of the application being deployed. This version number should be
37
37
# incremented each time you make changes to the application. Versions are not expected to
38
38
# follow Semantic Versioning. They should reflect the version the application is using.
39
39
# 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
41
41
dependencies :
42
42
- name : common
43
43
repository : " https://charts.lifecycle.keptn.sh"
44
- version : 0.1.3
44
+ version : 0.1.4
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ resource.
11
11
| Name | Description | Value |
12
12
| ------------------------------- | ------------------------------------------------------------------------- | ----- |
13
13
| ` global.imageRegistry ` | Global container image registry | ` "" ` |
14
+ | ` global.imagePullPolicy ` | select global image pull policy | ` "" ` |
14
15
| ` global.imagePullSecrets ` | Global Docker registry secret names as an array | ` [] ` |
15
16
| ` global.commonLabels ` | Common labels to add to all Keptn resources. Evaluated as a template | ` {} ` |
16
17
| ` global.commonAnnotations ` | Common annotations to add to all Keptn resources. Evaluated as a template | ` {} ` |
@@ -37,8 +38,8 @@ resource.
37
38
| ` env.labelSelectorValue ` | specify the value for the label selector | ` true ` |
38
39
| ` image.registry ` | specify the container registry for the certificate-operator image | ` ghcr.io ` |
39
40
| ` 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 | ` "" ` |
42
43
| ` livenessProbe ` | custom RBAC proxy liveness probe | |
43
44
| ` readinessProbe ` | custom manager readiness probe | |
44
45
| ` resources ` | custom limits and requests for manager container | |
Original file line number Diff line number Diff line change 47
47
- name : KUBERNETES_CLUSTER_DOMAIN
48
48
value : {{ .Values.kubernetesClusterDomain }}
49
49
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") }}
51
51
name : certificate-operator
52
52
resources : {{- toYaml .Values.resources | nindent 12 }}
53
53
securityContext :
Original file line number Diff line number Diff line change 6
6
global :
7
7
# # @param global.imageRegistry Global container image registry
8
8
imageRegistry : " "
9
-
9
+ # # @param global.imagePullPolicy select global image pull policy
10
+ imagePullPolicy : " "
10
11
# # @param global.imagePullSecrets Global Docker registry secret names as an array
11
12
# # E.g.
12
13
# # imagePullSecrets:
@@ -68,10 +69,9 @@ image:
68
69
# # @param image.repository specify repo for manager image
69
70
repository : keptn/certificate-operator
70
71
# # @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 : " "
75
75
# # @extra livenessProbe custom RBAC proxy liveness probe
76
76
# # @skip livenessProbe.httpGet.path
77
77
# # @skip livenessProbe.httpGet.port
You can’t perform that action at this time.
0 commit comments