This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
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.
- Loading branch information
Showing
39 changed files
with
7,533 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
annotations: | ||
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.1 | ||
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 | ||
keywords: | ||
- cert-manager | ||
- kube-lego | ||
- letsencrypt | ||
- tls | ||
kubeVersion: '>= 1.20.0-0' | ||
maintainers: | ||
- email: cert-manager-maintainers@googlegroups.com | ||
name: cert-manager-maintainers | ||
url: https://cert-manager.io | ||
name: cert-manager | ||
sources: | ||
- https://github.com/cert-manager/cert-manager | ||
version: v1.10.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cert-manager {{ .Chart.AppVersion }} has been deployed successfully! | ||
|
||
In order to begin issuing certificates, you will need to set up a ClusterIssuer | ||
or Issuer resource (for example, by creating a 'letsencrypt-staging' issuer). | ||
|
||
More information on the different types of issuers and how to configure them | ||
can be found in our documentation: | ||
|
||
https://cert-manager.io/docs/configuration/ | ||
|
||
For information on how to configure cert-manager to automatically provision | ||
Certificates for Ingress resources, take a look at the `ingress-shim` | ||
documentation: | ||
|
||
https://cert-manager.io/docs/usage/ingress/ |
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,174 @@ | ||
{{/* vim: set filetype=mustache: */}} | ||
{{/* | ||
Expand the name of the chart. | ||
*/}} | ||
{{- define "cert-manager.name" -}} | ||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "cert-manager.fullname" -}} | ||
{{- if .Values.fullnameOverride -}} | ||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} | ||
{{- else -}} | ||
{{- $name := default .Chart.Name .Values.nameOverride -}} | ||
{{- if contains $name .Release.Name -}} | ||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}} | ||
{{- else -}} | ||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the service account to use | ||
*/}} | ||
{{- define "cert-manager.serviceAccountName" -}} | ||
{{- if .Values.serviceAccount.create -}} | ||
{{ default (include "cert-manager.fullname" .) .Values.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default" .Values.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Webhook templates | ||
*/}} | ||
|
||
{{/* | ||
Expand the name of the chart. | ||
Manually fix the 'app' and 'name' labels to 'webhook' to maintain | ||
compatibility with the v0.9 deployment selector. | ||
*/}} | ||
{{- define "webhook.name" -}} | ||
{{- printf "webhook" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
If release name contains chart name it will be used as a full name. | ||
*/}} | ||
{{- define "webhook.fullname" -}} | ||
{{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 55 | trimSuffix "-" -}} | ||
{{- printf "%s-webhook" $trimmedName | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{- define "webhook.caRef" -}} | ||
{{- template "cert-manager.namespace" }}/{{ template "webhook.fullname" . }}-ca | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the service account to use | ||
*/}} | ||
{{- define "webhook.serviceAccountName" -}} | ||
{{- if .Values.webhook.serviceAccount.create -}} | ||
{{ default (include "webhook.fullname" .) .Values.webhook.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default" .Values.webhook.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
cainjector templates | ||
*/}} | ||
|
||
{{/* | ||
Expand the name of the chart. | ||
Manually fix the 'app' and 'name' labels to 'cainjector' to maintain | ||
compatibility with the v0.9 deployment selector. | ||
*/}} | ||
{{- define "cainjector.name" -}} | ||
{{- printf "cainjector" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
If release name contains chart name it will be used as a full name. | ||
*/}} | ||
{{- define "cainjector.fullname" -}} | ||
{{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 52 | trimSuffix "-" -}} | ||
{{- printf "%s-cainjector" $trimmedName | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the service account to use | ||
*/}} | ||
{{- define "cainjector.serviceAccountName" -}} | ||
{{- if .Values.cainjector.serviceAccount.create -}} | ||
{{ default (include "cainjector.fullname" .) .Values.cainjector.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default" .Values.cainjector.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
startupapicheck templates | ||
*/}} | ||
|
||
{{/* | ||
Expand the name of the chart. | ||
Manually fix the 'app' and 'name' labels to 'startupapicheck' to maintain | ||
compatibility with the v0.9 deployment selector. | ||
*/}} | ||
{{- define "startupapicheck.name" -}} | ||
{{- printf "startupapicheck" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
If release name contains chart name it will be used as a full name. | ||
*/}} | ||
{{- define "startupapicheck.fullname" -}} | ||
{{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 52 | trimSuffix "-" -}} | ||
{{- printf "%s-startupapicheck" $trimmedName | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the service account to use | ||
*/}} | ||
{{- define "startupapicheck.serviceAccountName" -}} | ||
{{- if .Values.startupapicheck.serviceAccount.create -}} | ||
{{ default (include "startupapicheck.fullname" .) .Values.startupapicheck.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default" .Values.startupapicheck.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create chart name and version as used by the chart label. | ||
*/}} | ||
{{- define "chartName" -}} | ||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Labels that should be added on each resource | ||
*/}} | ||
{{- define "labels" -}} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
{{- if eq (default "helm" .Values.creator) "helm" }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
helm.sh/chart: {{ include "chartName" . }} | ||
{{- end -}} | ||
{{- if .Values.global.commonLabels}} | ||
{{ toYaml .Values.global.commonLabels }} | ||
{{- end }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Namespace for all resources to be installed into | ||
If not defined in values file then the helm release namespace is used | ||
By default this is not set so the helm release namespace will be used | ||
This gets around an problem within helm discussed here | ||
https://github.com/helm/helm/issues/5358 | ||
*/}} | ||
{{- define "cert-manager.namespace" -}} | ||
{{ .Values.namespace | default .Release.Namespace }} | ||
{{- end -}} |
109 changes: 109 additions & 0 deletions
109
tools/charts/cert-manager/templates/cainjector-deployment.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,109 @@ | ||
{{- if .Values.cainjector.enabled }} | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
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 }} | ||
{{- with .Values.cainjector.deploymentAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
replicas: {{ .Values.cainjector.replicaCount }} | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: {{ include "cainjector.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/component: "cainjector" | ||
{{- with .Values.cainjector.strategy }} | ||
strategy: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
template: | ||
metadata: | ||
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 8 }} | ||
{{- with .Values.cainjector.podLabels }} | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.podAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
spec: | ||
serviceAccountName: {{ template "cainjector.serviceAccountName" . }} | ||
{{- if hasKey .Values.cainjector "automountServiceAccountToken" }} | ||
automountServiceAccountToken: {{ .Values.cainjector.automountServiceAccountToken }} | ||
{{- end }} | ||
{{- with .Values.global.priorityClassName }} | ||
priorityClassName: {{ . | quote }} | ||
{{- end }} | ||
{{- with .Values.cainjector.securityContext }} | ||
securityContext: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
containers: | ||
- name: {{ .Chart.Name }}-cainjector | ||
{{- with .Values.cainjector.image }} | ||
image: "{{- if .registry -}}{{ .registry }}/{{- end -}}{{ .repository }}{{- if (.digest) -}} @{{ .digest }}{{- else -}}:{{ default $.Chart.AppVersion .tag }} {{- end -}}" | ||
{{- end }} | ||
imagePullPolicy: {{ .Values.cainjector.image.pullPolicy }} | ||
args: | ||
{{- if .Values.global.logLevel }} | ||
- --v={{ .Values.global.logLevel }} | ||
{{- end }} | ||
{{- with .Values.global.leaderElection }} | ||
- --leader-election-namespace={{ .namespace }} | ||
{{- if .leaseDuration }} | ||
- --leader-election-lease-duration={{ .leaseDuration }} | ||
{{- end }} | ||
{{- if .renewDeadline }} | ||
- --leader-election-renew-deadline={{ .renewDeadline }} | ||
{{- end }} | ||
{{- if .retryPeriod }} | ||
- --leader-election-retry-period={{ .retryPeriod }} | ||
{{- end }} | ||
{{- end }} | ||
{{- with .Values.cainjector.extraArgs }} | ||
{{- toYaml . | nindent 10 }} | ||
{{- end }} | ||
env: | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
{{- with .Values.cainjector.containerSecurityContext }} | ||
securityContext: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.resources }} | ||
resources: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.nodeSelector }} | ||
nodeSelector: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.affinity }} | ||
affinity: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.tolerations }} | ||
tolerations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.cainjector.topologySpreadConstraints }} | ||
topologySpreadConstraints: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- end }} |
20 changes: 20 additions & 0 deletions
20
tools/charts/cert-manager/templates/cainjector-psp-clusterrole.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,20 @@ | ||
{{- if .Values.cainjector.enabled }} | ||
{{- if .Values.global.podSecurityPolicy.enabled }} | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: {{ template "cainjector.fullname" . }}-psp | ||
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 }} | ||
rules: | ||
- apiGroups: ['policy'] | ||
resources: ['podsecuritypolicies'] | ||
verbs: ['use'] | ||
resourceNames: | ||
- {{ template "cainjector.fullname" . }} | ||
{{- end }} | ||
{{- end }} |
Oops, something went wrong.