This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
charts/stable/cert-manager/values.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump for v0.6.2 (cert-manager/cert-manager#1382) Signed-off-by: James Munnelly <james@munnelly.eu>
119 lines (99 sloc)
3.31 KB
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
# Default values for cert-manager. | |
# This is a YAML-formatted file. | |
# Declare variables to be passed into your templates. | |
global: | |
## Reference to one or more secrets to be used when pulling images | |
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | |
## | |
imagePullSecrets: [] | |
# - name: "image-pull-secret" | |
# Optional priority class to be used for the cert-manager pods | |
priorityClassName: "" | |
replicaCount: 1 | |
strategy: {} | |
# type: RollingUpdate | |
# rollingUpdate: | |
# maxSurge: 0 | |
# maxUnavailable: 1 | |
image: | |
repository: quay.io/jetstack/cert-manager-controller | |
tag: v0.6.2 | |
pullPolicy: IfNotPresent | |
# Override the namespace used to store DNS provider credentials etc. for ClusterIssuer | |
# resources. By default, the same namespace as cert-manager is deployed within is | |
# used. This namespace will not be automatically created by the Helm chart. | |
clusterResourceNamespace: "" | |
leaderElection: | |
# Override the namespace used to store the ConfigMap for leader election | |
namespace: "" | |
rbac: | |
# Specifies whether RBAC resources should be created | |
create: true | |
serviceAccount: | |
# Specifies whether a service account should be created | |
create: true | |
# The name of the service account to use. | |
# If not set and create is true, a name is generated using the fullname template | |
name: | |
# Optional additional arguments | |
extraArgs: [] | |
# Use this flag to set a namespace that cert-manager will use to store | |
# supporting resources required for each ClusterIssuer (default is kube-system) | |
# - --cluster-resource-namespace=kube-system | |
extraEnv: [] | |
# - name: SOME_VAR | |
# value: 'some value' | |
resources: {} | |
# requests: | |
# cpu: 10m | |
# memory: 32Mi | |
# Pod Security Context | |
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ | |
securityContext: | |
enabled: false | |
fsGroup: 1001 | |
runAsUser: 1001 | |
podAnnotations: {} | |
podLabels: {} | |
# Optional DNS settings, useful if you have a public and private DNS zone for | |
# the same domain on Route 53. What follows is an example of ensuring | |
# cert-manager can access an ingress or DNS TXT records at all times. | |
# NOTE: This requires Kubernetes 1.10 or `CustomPodDNS` feature gate enabled for | |
# the cluster to work. | |
# podDnsPolicy: "None" | |
# podDnsConfig: | |
# nameservers: | |
# - "1.1.1.1" | |
# - "8.8.8.8" | |
nodeSelector: {} | |
ingressShim: {} | |
# defaultIssuerName: "" | |
# defaultIssuerKind: "" | |
# defaultACMEChallengeType: "" | |
# defaultACMEDNS01ChallengeProvider: "" | |
webhook: | |
enabled: true | |
# Use these variables to configure the HTTP_PROXY environment variables | |
# http_proxy: "http://proxy:8080" | |
# http_proxy: "http://proxy:8080" | |
# no_proxy: 127.0.0.1,localhost | |
# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#affinity-v1-core | |
# for example: | |
# affinity: | |
# nodeAffinity: | |
# requiredDuringSchedulingIgnoredDuringExecution: | |
# nodeSelectorTerms: | |
# - matchExpressions: | |
# - key: foo.bar.com/role | |
# operator: In | |
# values: | |
# - master | |
affinity: {} | |
# expects input structure as per specification https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#toleration-v1-core | |
# for example: | |
# tolerations: | |
# - key: foo.bar.com/role | |
# operator: Equal | |
# value: master | |
# effect: NoSchedule | |
tolerations: [] |