-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: Update cert manager to 1.12.6 (#2700)
* deps: bump cert manager to 1.13.2 * helm: allow minor jump for cert-manager
- Loading branch information
Showing
20 changed files
with
3,139 additions
and
2,802 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ annotations: | |
fingerprint: 1020CF3C033D4F35BAE1C19E1226061C665DF13E | ||
url: https://cert-manager.io/public-keys/cert-manager-keyring-2021-09-20-1020CF3C033D4F35BAE1C19E1226061C665DF13E.gpg | ||
apiVersion: v1 | ||
appVersion: v1.10.0 | ||
appVersion: v1.12.6 | ||
description: A Helm chart for cert-manager | ||
home: https://github.com/cert-manager/cert-manager | ||
icon: https://raw.githubusercontent.com/cert-manager/cert-manager/d53c0b9270f8cd90d908460d69502694e1838f5f/logo/logo-small.png | ||
|
@@ -13,12 +13,12 @@ keywords: | |
- kube-lego | ||
- letsencrypt | ||
- tls | ||
kubeVersion: '>= 1.20.0-0' | ||
kubeVersion: '>= 1.22.0-0' | ||
maintainers: | ||
- email: [email protected] | ||
name: cert-manager-maintainers | ||
url: https://cert-manager.io | ||
name: cert-manager | ||
sources: | ||
- https://github.com/cert-manager/cert-manager | ||
version: v1.10.0 | ||
version: v1.12.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
...rnal/constellation/helm/charts/cert-manager/templates/cainjector-poddisruptionbudget.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{{- if .Values.cainjector.podDisruptionBudget.enabled }} | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: {{ include "cainjector.fullname" . }} | ||
namespace: {{ include "cert-manager.namespace" . }} | ||
labels: | ||
app: {{ include "cainjector.name" . }} | ||
app.kubernetes.io/name: {{ include "cainjector.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/component: "cainjector" | ||
{{- include "labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: {{ include "cainjector.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/component: "cainjector" | ||
|
||
{{- with .Values.cainjector.podDisruptionBudget.minAvailable }} | ||
minAvailable: {{ . }} | ||
{{- end }} | ||
{{- with .Values.cainjector.podDisruptionBudget.maxUnavailable }} | ||
maxUnavailable: {{ . }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
internal/constellation/helm/charts/cert-manager/templates/controller-config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{{- if .Values.config -}} | ||
{{- if not .Values.config.apiVersion -}} | ||
{{- fail "config.apiVersion must be set" -}} | ||
{{- end -}} | ||
|
||
{{- if not .Values.config.kind -}} | ||
{{- fail "config.kind must be set" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "cert-manager.fullname" . }} | ||
namespace: {{ include "cert-manager.namespace" . }} | ||
labels: | ||
app: {{ include "cert-manager.name" . }} | ||
app.kubernetes.io/name: {{ include "cert-manager.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/component: "controller" | ||
{{- include "labels" . | nindent 4 }} | ||
data: | ||
{{- if .Values.config }} | ||
config.yaml: | | ||
{{ .Values.config | toYaml | nindent 4 }} | ||
{{- end }} |
Oops, something went wrong.