Skip to content

Commit dee99e3

Browse files
authored
chore(chart-deps): update sealed-secrets to version 2.18.4 (#3045)
1 parent b8da4c2 commit dee99e3

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

apps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ appsInfo:
208208
isBeta: true
209209
sealed-secrets:
210210
title: Sealed Secrets
211-
appVersion: 0.36.0
211+
appVersion: 0.36.1
212212
repo: https://github.com/bitnami-labs/sealed-secrets
213213
maintainers: Bitnami Labs
214214
relatedLinks:

chart/chart-index/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies:
100100
version: 4.4.34
101101
repository: https://charts.bitnami.com/bitnami
102102
- name: sealed-secrets
103-
version: 2.18.3
103+
version: 2.18.4
104104
repository: https://bitnami-labs.github.io/sealed-secrets/
105105
- name: tekton-pipeline
106106
alias: tekton-pipelines

charts/sealed-secrets/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
annotations:
22
category: DeveloperTools
33
apiVersion: v2
4-
appVersion: 0.36.0
4+
appVersion: 0.36.1
55
description: Helm chart for the sealed-secrets controller.
66
home: https://github.com/bitnami-labs/sealed-secrets
77
icon: https://bitnami.com/assets/stacks/sealed-secrets/img/sealed-secrets-stack-220x234.png
@@ -16,4 +16,4 @@ name: sealed-secrets
1616
sources:
1717
- https://github.com/bitnami-labs/sealed-secrets
1818
type: application
19-
version: 2.18.3
19+
version: 2.18.4

charts/sealed-secrets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The command removes all the Kubernetes components associated with the chart and
8686
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------- |
8787
| `image.registry` | Sealed Secrets image registry | `docker.io` |
8888
| `image.repository` | Sealed Secrets image repository | `bitnami/sealed-secrets-controller` |
89-
| `image.tag` | Sealed Secrets image tag (immutable tags are recommended) | `0.36.0` |
89+
| `image.tag` | Sealed Secrets image tag (immutable tags are recommended) | `0.36.1` |
9090
| `image.pullPolicy` | Sealed Secrets image pull policy | `IfNotPresent` |
9191
| `image.pullSecrets` | Sealed Secrets image pull secrets | `[]` |
9292
| `revisionHistoryLimit` | Number of old history to retain to allow rollback (If not set, default Kubernetes value is set to 10) | `""` |

charts/sealed-secrets/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,15 @@ spec:
181181
ports:
182182
- name: http
183183
containerPort: {{ .Values.containerPorts.http | default "8080" }}
184+
protocol: TCP
184185
{{- if .Values.hostNetwork }}
185186
hostPort: {{ .Values.containerPorts.http }}
186187
{{- else if .Values.hostPorts.http }}
187188
hostPort: {{ .Values.hostPorts.http }}
188189
{{- end }}
189190
- name: metrics
190191
containerPort: {{ .Values.containerPorts.metrics | default "8081" }}
192+
protocol: TCP
191193
{{- if .Values.hostNetwork }}
192194
hostPort: {{ .Values.containerPorts.metrics }}
193195
{{- else if .Values.hostPorts.metrics }}

charts/sealed-secrets/templates/service.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ spec:
2929
- name: http
3030
port: {{ .Values.service.port }}
3131
targetPort: http
32+
protocol: TCP
3233
{{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePort)) }}
3334
nodePort: {{ .Values.service.nodePort }}
3435
{{- else if eq .Values.service.type "ClusterIP" }}
@@ -67,6 +68,7 @@ spec:
6768
- name: metrics
6869
port: {{ .Values.metrics.service.port }}
6970
targetPort: metrics
71+
protocol: TCP
7072
{{- if and (or (eq .Values.metrics.service.type "NodePort") (eq .Values.metrics.service.type "LoadBalancer")) (not (empty .Values.metrics.service.nodePort)) }}
7173
nodePort: {{ .Values.metrics.service.nodePort }}
7274
{{- else if eq .Values.metrics.service.type "ClusterIP" }}

charts/sealed-secrets/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ commonLabels: {}
3939
image:
4040
registry: docker.io
4141
repository: bitnami/sealed-secrets-controller
42-
tag: 0.36.0
42+
tag: 0.36.1
4343
## Specify a imagePullPolicy
4444
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
4545
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images

0 commit comments

Comments
 (0)