-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the cert-manager chart to appversion 1.14.5
- Loading branch information
1 parent
1edc6dd
commit 47659ca
Showing
25 changed files
with
5,936 additions
and
3,083 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
annotations: | ||
artifacthub.io/license: Apache-2.0 | ||
artifacthub.io/prerelease: "false" | ||
artifacthub.io/signKey: | | ||
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.14.5 | ||
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 +14,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.14.5 |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{- if .Values.cainjector.config -}} | ||
{{- $_ := .Values.cainjector.config.apiVersion | required ".Values.cainjector.config.apiVersion must be set !" -}} | ||
{{- $_ := .Values.cainjector.config.kind | required ".Values.cainjector.config.kind must be set !" -}} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
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 }} | ||
data: | ||
config.yaml: | | ||
{{- .Values.cainjector.config | toYaml | nindent 4 }} | ||
{{- 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
29 changes: 29 additions & 0 deletions
29
external/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,29 @@ | ||
{{- 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" | ||
|
||
{{- if not (or (hasKey .Values.cainjector.podDisruptionBudget "minAvailable") (hasKey .Values.cainjector.podDisruptionBudget "maxUnavailable")) }} | ||
minAvailable: 1 # Default value because minAvailable and maxUnavailable are not set | ||
{{- end }} | ||
{{- if hasKey .Values.cainjector.podDisruptionBudget "minAvailable" }} | ||
minAvailable: {{ .Values.cainjector.podDisruptionBudget.minAvailable }} | ||
{{- end }} | ||
{{- if hasKey .Values.cainjector.podDisruptionBudget "maxUnavailable" }} | ||
maxUnavailable: {{ .Values.cainjector.podDisruptionBudget.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
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,18 @@ | ||
{{- if .Values.config -}} | ||
{{- $_ := .Values.config.apiVersion | required ".Values.config.apiVersion must be set !" -}} | ||
{{- $_ := .Values.config.kind | required ".Values.config.kind must be set !" -}} | ||
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: | ||
config.yaml: | | ||
{{- .Values.config | toYaml | nindent 4 }} | ||
{{- end -}} |
Oops, something went wrong.