-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2569 from DaoCloud/upgrade/cert-manager/v1.16.1
Robot Upgrade: cert-manager chart upgrade from v1.12.2 to v1.16.1
- Loading branch information
Showing
35 changed files
with
15,893 additions
and
2,600 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
2,069 changes: 1,896 additions & 173 deletions
2,069
charts/cert-manager/cert-manager/charts/cert-manager/README.md
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
charts/cert-manager/cert-manager/charts/cert-manager/templates/NOTES.txt
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
19 changes: 19 additions & 0 deletions
19
charts/cert-manager/cert-manager/charts/cert-manager/templates/cainjector-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,19 @@ | ||
{{- if .Values.cainjector.config -}} | ||
{{- $config := .Values.cainjector.config -}} | ||
{{- $_ := set $config "apiVersion" (default "cainjector.config.cert-manager.io/v1alpha1" $config.apiVersion) -}} | ||
{{- $_ := set $config "kind" (default "CAInjectorConfiguration" $config.kind) -}} | ||
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: | | ||
{{- $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
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
30 changes: 30 additions & 0 deletions
30
charts/cert-manager/cert-manager/charts/cert-manager/templates/cainjector-service.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,30 @@ | ||
{{- if and .Values.prometheus.enabled (not .Values.prometheus.podmonitor.enabled) }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ template "cainjector.fullname" . }} | ||
namespace: {{ include "cert-manager.namespace" . }} | ||
{{- with .Values.cainjector.serviceAnnotations }} | ||
annotations: | ||
{{ toYaml . | indent 4 }} | ||
{{- end }} | ||
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 }} | ||
{{- with .Values.cainjector.serviceLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- protocol: TCP | ||
port: 9402 | ||
name: http-metrics | ||
selector: | ||
app.kubernetes.io/name: {{ include "cainjector.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/component: "cainjector" | ||
{{- end }} |
19 changes: 19 additions & 0 deletions
19
charts/cert-manager/cert-manager/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,19 @@ | ||
{{- if .Values.config -}} | ||
{{- $config := .Values.config -}} | ||
{{- $_ := set $config "apiVersion" (default "controller.config.cert-manager.io/v1alpha1" $config.apiVersion) -}} | ||
{{- $_ := set $config "kind" (default "ControllerConfiguration" $config.kind) -}} | ||
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: | | ||
{{- $config | toYaml | nindent 4 }} | ||
{{- end -}} |
Oops, something went wrong.