From b407e51bba9b46863273737bb8d35ab8abfe4c1a Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Wed, 7 Jul 2021 13:18:18 +0200 Subject: [PATCH 01/26] Fix workflow for autogenerating docs (#592) * Use grep -c flag in check for changes step to fix case when more than 1 website file was modified --- .github/workflows/auto-gen-docs.yaml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/auto-gen-docs.yaml b/.github/workflows/auto-gen-docs.yaml index fbfd60f2e..5d7462d8a 100644 --- a/.github/workflows/auto-gen-docs.yaml +++ b/.github/workflows/auto-gen-docs.yaml @@ -23,18 +23,15 @@ jobs: submodules: recursive # Fetch the Docsy theme fetch-depth: 0 - # Checks out a copy of your repository on the ubuntu-latest machine + # Checks if the previous commit introduced any changes to website files - name: Check for changes run: | - if git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -E "^website*"; then - git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -E "^website*" - echo "IS_CHANGED=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -E "^website*")" >> $GITHUB_ENV - else - echo "IS_CHANGED=empty" >> $GITHUB_ENV - fi + IS_CHANGED=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -Ec "^website*" || :) + [[ $IS_CHANGED -gt 0 ]] && echo "IS_CHANGED=true" >> $GITHUB_ENV || echo "IS_CHANGED=false" >> $GITHUB_ENV + # Sets up the appropriate version of Hugo - name: Setup Hugo - if: env.IS_CHANGED != 'empty' + if: env.IS_CHANGED == 'true' uses: peaceiris/actions-hugo@v2 with: hugo-version: '0.62.2' @@ -42,14 +39,14 @@ jobs: # Sets up node - required by Hugo - name: Setup Node - if: env.IS_CHANGED != 'empty' + if: env.IS_CHANGED == 'true' uses: actions/setup-node@v1 with: node-version: '12.x' # Installs dependencies required by docsy theme - name: Install docsy dependencies - if: env.IS_CHANGED != 'empty' + if: env.IS_CHANGED == 'true' run: | cd website npm install @@ -57,17 +54,18 @@ jobs: sudo npm install -D --save autoprefixer sudo npm install -D --save postcss-cli cd ../ + # Runs makefile goal - checks changes to /website folder and generates docs - name: Run Makefile goal - if: env.IS_CHANGED != 'empty' + if: env.IS_CHANGED == 'true' env: DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: make generate-docs - # Create push request with generated docs + # Creates pull request with generated docs - name: Create Pull Request - if: env.IS_CHANGED != 'empty' + if: env.IS_CHANGED == 'true' uses: peter-evans/create-pull-request@v3 with: commit-message: Auto-updated docs From 52fe5fe95e743e8b48acbc2dacca1b91a2114417 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Thu, 8 Jul 2021 12:18:19 +0530 Subject: [PATCH 02/26] Implemented validation logic for the webhook - Created a single Validate() function to validate both updating and creating Jenkins CR. - Implemented the Validate function to fetch warnings from the API and do security check if being enabled. - Updated the helm charts and helm-e2e target to run the helm tests. --- Makefile | 3 +- api/v1alpha2/jenkins_webhook.go | 140 +- chart/jenkins-operator/crds/jenkins-crd.yaml | 5545 +++++++++-------- .../templates/cert-manager.yaml | 26 + .../jenkins-operator/templates/operator.yaml | 10 + chart/jenkins-operator/templates/webhook.yaml | 43 + go.mod | 2 + go.sum | 2 + 8 files changed, 2995 insertions(+), 2776 deletions(-) create mode 100644 chart/jenkins-operator/templates/cert-manager.yaml create mode 100644 chart/jenkins-operator/templates/webhook.yaml diff --git a/Makefile b/Makefile index 761c730e4..33dab1655 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,8 @@ e2e: deepcopy-gen manifests ## Runs e2e tests, you can use EXTRA_ARGS .PHONY: helm-e2e IMAGE_NAME := $(DOCKER_REGISTRY):$(GITCOMMIT) -helm-e2e: helm container-runtime-build ## Runs helm e2e tests, you can use EXTRA_ARGS +#TODO: install cert-manager before running helm charts +helm-e2e: helm install-cert-manager container-runtime-build ## Runs helm e2e tests, you can use EXTRA_ARGS @echo "+ $@" RUNNING_TESTS=1 go test -parallel=1 "./test/helm/" -ginkgo.v -tags "$(BUILDTAGS) cgo" -v -timeout 60m -run "$(E2E_TEST_SELECTOR)" -image-name=$(IMAGE_NAME) $(E2E_TEST_ARGS) diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 92b584572..494fdb802 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -17,6 +17,15 @@ limitations under the License. package v1alpha2 import ( + "encoding/json" + "errors" + "io/ioutil" + "net/http" + "time" + + "github.com/jenkinsci/kubernetes-operator/pkg/plugins" + + "golang.org/x/mod/semver" "k8s.io/apimachinery/pkg/runtime" ctrl "sigs.k8s.io/controller-runtime" logf "sigs.k8s.io/controller-runtime/pkg/log" @@ -41,21 +50,142 @@ var _ webhook.Validator = &Jenkins{} // ValidateCreate implements webhook.Validator so a webhook will be registered for the type func (in *Jenkins) ValidateCreate() error { - jenkinslog.Info("validate create", "name", in.Name) + if in.Spec.ValidateSecurityWarnings { + jenkinslog.Info("validate create", "name", in.Name) + return Validate(*in) + } - // TODO(user): fill in your validation logic upon object creation. return nil } // ValidateUpdate implements webhook.Validator so a webhook will be registered for the type func (in *Jenkins) ValidateUpdate(old runtime.Object) error { - jenkinslog.Info("validate update", "name", in.Name) + if in.Spec.ValidateSecurityWarnings { + jenkinslog.Info("validate update", "name", in.Name) + return Validate(*in) + } - // TODO(user): fill in your validation logic upon object update. return nil } func (in *Jenkins) ValidateDelete() error { - // TODO(user): fill in your validation logic upon object deletion. + return nil +} + +type Warnings struct { + Warnings []Warning `json:"securityWarnings"` +} + +type Warning struct { + Versions []Version `json:"versions"` + ID string `json:"id"` + Message string `json:"message"` + URL string `json:"url"` + Active bool `json:"active"` +} +type Version struct { + FirstVersion string `json:"firstVersion"` + LastVersion string `json:"lastVersion"` +} + +const APIURL string = "https://plugins.jenkins.io/api/plugin/" + +func MakeSemanticVersion(version string) string { + version = "v" + version + return semver.Canonical(version) +} + +func CompareVersions(firstVersion string, lastVersion string, pluginVersion string) bool { + firstSemVer := MakeSemanticVersion(firstVersion) + lastSemVer := MakeSemanticVersion(lastVersion) + pluginSemVer := MakeSemanticVersion(pluginVersion) + if semver.Compare(pluginSemVer, firstSemVer) == -1 || semver.Compare(pluginSemVer, lastSemVer) == 1 { + return false + } + return true +} + +func CheckSecurityWarnings(pluginName string, pluginVersion string) (bool, error) { + jenkinslog.Info("checking security warnings", "plugin: ", pluginName) + pluginURL := APIURL + pluginName + client := &http.Client{ + Timeout: time.Second * 30, + } + request, err := http.NewRequest("GET", pluginURL, nil) + if err != nil { + return false, err + } + request.Header.Add("Accept", "application/json") + request.Header.Add("Content-Type", "application/json") + response, err := client.Do(request) + if err != nil { + return false, err + } + defer response.Body.Close() + bodyBytes, err := ioutil.ReadAll(response.Body) + if err != nil { + return false, err + } + securityWarnings := Warnings{} + + jsonErr := json.Unmarshal(bodyBytes, &securityWarnings) + if jsonErr != nil { + return false, err + } + + jenkinslog.Info("Validate()", "warnings", securityWarnings) + + for _, warning := range securityWarnings.Warnings { + for _, version := range warning.Versions { + firstVersion := version.FirstVersion + lastVersion := version.LastVersion + if len(firstVersion) == 0 { + firstVersion = "0" // setting default value in case of empty string + } + if len(lastVersion) == 0 { + lastVersion = pluginVersion // setting default value in case of empty string + } + + if CompareVersions(firstVersion, lastVersion, pluginVersion) { + jenkinslog.Info("security Vulnerabilities detected", "message", warning.Message, "Check security Advisory", warning.URL) + return true, nil + } + } + } + + return false, nil +} + +func Validate(r Jenkins) error { + basePlugins := plugins.BasePlugins() + var warnings string = "" + + for _, plugin := range basePlugins { + name := plugin.Name + version := plugin.Version + hasWarnings, err := CheckSecurityWarnings(name, version) + if err != nil { + return err + } + if hasWarnings { + warnings += "Security Vulnerabilities detected in base plugin:" + name + } + } + + for _, plugin := range r.Spec.Master.Plugins { + name := plugin.Name + version := plugin.Version + hasWarnings, err := CheckSecurityWarnings(name, version) + if err != nil { + return err + } + if hasWarnings { + warnings += "Security Vulnerabilities detected in the user defined plugin: " + name + } + } + if len(warnings) > 0 { + return errors.New(warnings) + } + return nil } diff --git a/chart/jenkins-operator/crds/jenkins-crd.yaml b/chart/jenkins-operator/crds/jenkins-crd.yaml index ff4e59536..953509023 100644 --- a/chart/jenkins-operator/crds/jenkins-crd.yaml +++ b/chart/jenkins-operator/crds/jenkins-crd.yaml @@ -5,6 +5,7 @@ kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.4.1 + creationTimestamp: null name: jenkins.jenkins.io spec: group: jenkins.io @@ -15,172 +16,176 @@ spec: singular: jenkins scope: Namespaced versions: - - name: v1alpha2 - schema: - openAPIV3Schema: - description: Jenkins is the Schema for the jenkins API - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation + - name: v1alpha2 + schema: + openAPIV3Schema: + description: Jenkins is the Schema for the jenkins API + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' - type: string - kind: - description: 'Kind is a string value representing the REST resource this + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Spec defines the desired state of the Jenkins - properties: - backup: - description: 'Backup defines configuration of Jenkins backup More + type: string + metadata: + type: object + spec: + description: Spec defines the desired state of the Jenkins + properties: + ValidateSecurityWarnings: + description: ValidateSecurityWarnings enables or disables validating + potential security warnings in Jenkins plugins via admission webhooks. + type: boolean + backup: + description: 'Backup defines configuration of Jenkins backup More info: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configure-backup-and-restore/' - properties: - action: - description: Action defines action which performs backup in backup - container sidecar - properties: - exec: - description: Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside - the container, the working directory for the command is - root ('/') in the container's filesystem. The command - is simply exec'd, it is not run inside a shell, so traditional - shell instructions ('|', etc) won't work. To use a shell, - you need to explicitly call out to that shell. Exit - status of 0 is treated as live/healthy and non-zero - is unhealthy. - items: - type: string - type: array - type: object - type: object - containerName: - description: ContainerName is the container name responsible for - backup operation - type: string - interval: - description: Interval tells how often make backup in seconds Defaults - to 30. - format: int64 - type: integer - makeBackupBeforePodDeletion: - description: MakeBackupBeforePodDeletion tells operator to make - backup before Jenkins master pod deletion - type: boolean - required: - - action - - containerName - - interval - - makeBackupBeforePodDeletion - type: object - configurationAsCode: - description: ConfigurationAsCode defines configuration of Jenkins - customization via Configuration as Code Jenkins plugin - properties: - configurations: - items: - description: ConfigMapRef is reference to Kubernetes ConfigMap. + properties: + action: + description: Action defines action which performs backup in backup + container sidecar + properties: + exec: + description: Exec specifies the action to take. properties: - name: - type: string - required: - - name + command: + description: Command is the command line to execute inside + the container, the working directory for the command is + root ('/') in the container's filesystem. The command + is simply exec'd, it is not run inside a shell, so traditional + shell instructions ('|', etc) won't work. To use a shell, + you need to explicitly call out to that shell. Exit + status of 0 is treated as live/healthy and non-zero + is unhealthy. + items: + type: string + type: array type: object - type: array - secret: - description: SecretRef is reference to Kubernetes secret. + type: object + containerName: + description: ContainerName is the container name responsible for + backup operation + type: string + interval: + description: Interval tells how often make backup in seconds Defaults + to 30. + format: int64 + type: integer + makeBackupBeforePodDeletion: + description: MakeBackupBeforePodDeletion tells operator to make + backup before Jenkins master pod deletion + type: boolean + required: + - action + - containerName + - interval + - makeBackupBeforePodDeletion + type: object + configurationAsCode: + description: ConfigurationAsCode defines configuration of Jenkins + customization via Configuration as Code Jenkins plugin + properties: + configurations: + items: + description: ConfigMapRef is reference to Kubernetes ConfigMap. properties: name: type: string required: - - name + - name type: object - required: - - configurations - - secret - type: object - groovyScripts: - description: GroovyScripts defines configuration of Jenkins customization - via groovy scripts - properties: - configurations: - items: - description: ConfigMapRef is reference to Kubernetes ConfigMap. - properties: - name: - type: string - required: - - name - type: object - type: array - secret: - description: SecretRef is reference to Kubernetes secret. + type: array + secret: + description: SecretRef is reference to Kubernetes secret. + properties: + name: + type: string + required: + - name + type: object + required: + - configurations + - secret + type: object + groovyScripts: + description: GroovyScripts defines configuration of Jenkins customization + via groovy scripts + properties: + configurations: + items: + description: ConfigMapRef is reference to Kubernetes ConfigMap. properties: name: type: string required: - - name + - name type: object - required: - - configurations - - secret - type: object - jenkinsAPISettings: - description: JenkinsAPISettings defines configuration used by the - operator to gain admin access to the Jenkins API - properties: - authorizationStrategy: - description: AuthorizationStrategy defines authorization strategy - of the operator for the Jenkins API - type: string - required: - - authorizationStrategy - type: object - master: - description: Master represents Jenkins master pod properties and Jenkins - plugins. Every single change here requires a pod restart. - properties: - annotations: - additionalProperties: + type: array + secret: + description: SecretRef is reference to Kubernetes secret. + properties: + name: type: string - description: 'Annotations is an unstructured key value map stored + required: + - name + type: object + required: + - configurations + - secret + type: object + jenkinsAPISettings: + description: JenkinsAPISettings defines configuration used by the + operator to gain admin access to the Jenkins API + properties: + authorizationStrategy: + description: AuthorizationStrategy defines authorization strategy + of the operator for the Jenkins API + type: string + required: + - authorizationStrategy + type: object + master: + description: Master represents Jenkins master pod properties and Jenkins + plugins. Every single change here requires a pod restart. + properties: + annotations: + additionalProperties: + type: string + description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - basePlugins: - description: 'BasePlugins contains plugins required by operator + type: object + basePlugins: + description: 'BasePlugins contains plugins required by operator Defaults to : - name: kubernetes version: "1.29.6" - name: workflow-job version: "2.41" - name: workflow-aggregator version: "2.6" - name: git version: "4.7.2" - name: job-dsl version: "1.77" - name: configuration-as-code version: "1.51" - name: kubernetes-credentials-provider version: "0.18-1"' - items: - description: Plugin defines Jenkins plugin. - properties: - downloadURL: - description: DownloadURL is the custom url from where plugin - has to be downloaded. - type: string - name: - description: Name is the name of Jenkins plugin - type: string - version: - description: Version is the version of Jenkins plugin - type: string - required: - - name - - version - type: object - type: array - containers: - description: 'List of containers belonging to the pod. Containers + items: + description: Plugin defines Jenkins plugin. + properties: + downloadURL: + description: DownloadURL is the custom url from where plugin + has to be downloaded. + type: string + name: + description: Name is the name of Jenkins plugin + type: string + version: + description: Version is the version of Jenkins plugin + type: string + required: + - name + - version + type: object + type: array + containers: + description: 'List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Defaults to: - image: jenkins/jenkins:lts imagePullPolicy: Always livenessProbe: failureThreshold: 12 httpGet: path: @@ -192,11 +197,11 @@ spec: 1 timeoutSeconds: 1 resources: limits: cpu: 1500m memory: 3Gi requests: cpu: "1" memory: 600Mi' - items: - description: Container defines Kubernetes container attributes. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s + items: + description: Container defines Kubernetes container attributes. + properties: + args: + description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the @@ -204,11 +209,11 @@ spec: can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. + items: + type: string + type: array + command: + description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot @@ -217,22 +222,22 @@ spec: a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the - container. - items: - description: EnvVar represents an environment variable - present in a Container. - properties: - name: - description: Name of the environment variable. Must - be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are + items: + type: string + type: array + env: + description: List of environment variables to set in the + container. + items: + description: EnvVar represents an environment variable + present in a Container. + properties: + name: + description: Name of the environment variable. Must + be a C_IDENTIFIER. + type: string + value: + description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the @@ -241,249 +246,249 @@ spec: $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's - value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: + type: string + valueFrom: + description: Source for the environment variable's + value. Cannot be used if value is not empty. + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + properties: + key: + description: The key to select. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + fieldRef: + description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath - is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in - the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: + properties: + apiVersion: + description: Version of the schema the FieldPath + is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in + the specified API version. + type: string + required: + - fieldPath + type: object + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of - the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the - pod's namespace - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format of + the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + secretKeyRef: + description: Selects a key of a secret in the + pod's namespace + properties: + key: + description: The key of the secret to select + from. Must be a valid secret key. + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables - in the container. The keys defined within a source must - be a C_IDENTIFIER. All invalid keys will be reported as - an event when the container is starting. When a key exists - in multiple sources, the value associated with the last - source will take precedence. Values defined by an Env - with a duplicate key will take precedence. - items: - description: EnvFromSource represents the source of a - set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: + type: string + optional: + description: Specify whether the Secret or + its key must be defined + type: boolean + required: + - key + type: object + type: object + required: + - name + type: object + type: array + envFrom: + description: List of sources to populate environment variables + in the container. The keys defined within a source must + be a C_IDENTIFIER. All invalid keys will be reported as + an event when the container is starting. When a key exists + in multiple sources, the value associated with the last + source will take precedence. Values defined by an Env + with a duplicate key will take precedence. + items: + description: EnvFromSource represents the source of a + set of ConfigMaps + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must - be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to - each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: + type: string + optional: + description: Specify whether the ConfigMap must + be defined + type: boolean + type: object + prefix: + description: An optional identifier to prepend to + each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be - defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images' - type: string - imagePullPolicy: - description: Image pull policy. One of Always, Never, IfNotPresent. - Defaults to Always. - type: string - lifecycle: - description: Actions that the management system should take - in response to container lifecycle events. - properties: - postStart: - description: 'PostStart is called immediately after + type: string + optional: + description: Specify whether the Secret must be + defined + type: boolean + type: object + type: object + type: array + image: + description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images' + type: string + imagePullPolicy: + description: Image pull policy. One of Always, Never, IfNotPresent. + Defaults to Always. + type: string + lifecycle: + description: Actions that the management system should take + in response to container lifecycle events. + properties: + postStart: + description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to - execute inside the container, the working - directory for the command is root ('/') in - the container's filesystem. The command is - simply exec'd, it is not run inside a shell, - so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is - treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, defaults - to the pod IP. You probably want to set "Host" - in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom - header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to - the host. Defaults to HTTP. + properties: + exec: + description: One and only one of the following should + be specified. Exec specifies the action to take. + properties: + command: + description: Command is the command line to + execute inside the container, the working + directory for the command is root ('/') in + the container's filesystem. The command is + simply exec'd, it is not run inside a shell, + so traditional shell instructions ('|', etc) + won't work. To use a shell, you need to explicitly + call out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is unhealthy. + items: type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving + type: array + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: Host name to connect to, defaults + to the pod IP. You probably want to set "Host" + in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: The header field name + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: Name or number of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to + the host. Defaults to HTTP. + type: string + required: + - port + type: object + tcpSocket: + description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a + type: string + port: + anyOf: + - type: integer + - type: string + description: Number or name of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called @@ -496,677 +501,677 @@ spec: of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to - execute inside the container, the working - directory for the command is root ('/') in - the container's filesystem. The command is - simply exec'd, it is not run inside a shell, - so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is - treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request - to perform. - properties: - host: - description: Host name to connect to, defaults - to the pod IP. You probably want to set "Host" - in httpHeaders instead. + properties: + exec: + description: One and only one of the following should + be specified. Exec specifies the action to take. + properties: + command: + description: Command is the command line to + execute inside the container, the working + directory for the command is root ('/') in + the container's filesystem. The command is + simply exec'd, it is not run inside a shell, + so traditional shell instructions ('|', etc) + won't work. To use a shell, you need to explicitly + call out to that shell. Exit status of 0 is + treated as live/healthy and non-zero is unhealthy. + items: type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom - header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to - the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving + type: array + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: Host name to connect to, defaults + to the pod IP. You probably want to set "Host" + in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: The header field name + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: Name or number of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to + the host. Defaults to HTTP. + type: string + required: + - port + type: object + tcpSocket: + description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: Periodic probe of container liveness. Container - will be restarted if the probe fails. - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: + port: + anyOf: - type: integer - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: + description: Number or name of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container + type: object + type: object + type: object + livenessProbe: + description: Periodic probe of container liveness. Container + will be restarted if the probe fails. + properties: + exec: + description: One and only one of the following should + be specified. Exec specifies the action to take. + properties: + command: + description: Command is the command line to execute + inside the container, the working directory for + the command is root ('/') in the container's + filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions + ('|', etc) won't work. To use a shell, you need + to explicitly call out to that shell. Exit status + of 0 is treated as live/healthy and non-zero is + unhealthy. + items: + type: string + type: array + type: object + failureThreshold: + description: Minimum consecutive failures for the probe + to be considered failed after having succeeded. Defaults + to 3. Minimum value is 1. + format: int32 + type: integer + httpGet: + description: HTTPGet specifies the http request to perform. + properties: + host: + description: Host name to connect to, defaults to + the pod IP. You probably want to set "Host" in + httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom header + to be used in HTTP probes + properties: + name: + description: The header field name + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: Name or number of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the + host. Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum - value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving + format: int32 + type: integer + periodSeconds: + description: How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: Minimum consecutive successes for the probe + to be considered successful after having failed. Defaults + to 1. Must be 1 for liveness and startup. Minimum + value is 1. + format: int32 + type: integer + tcpSocket: + description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe + type: string + port: + anyOf: + - type: integer + - type: string + description: Number or name of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' + format: int32 + type: integer + type: object + name: + description: Name of the container specified as a DNS_LABEL. + Each container in a pod must have a unique name (DNS_LABEL). + type: string + ports: + description: List of ports to expose from the container. + Exposing a port here gives the system additional information + about the network connections a container uses, but is + primarily informational. Not specifying a port here DOES + NOT prevent that port from being exposed. Any port which + is listening on the default "0.0.0.0" address inside a + container will be accessible from the network. + items: + description: ContainerPort represents a network port in + a single container. + properties: + containerPort: + description: Number of port to expose on the pod's + IP address. This must be a valid port number, 0 + < x < 65536. + format: int32 + type: integer + hostIP: + description: What host IP to bind the external port + to. + type: string + hostPort: + description: Number of port to expose on the host. + If specified, this must be a valid port number, + 0 < x < 65536. If HostNetwork is specified, this + must match ContainerPort. Most containers do not + need this. format: int32 type: integer + name: + description: If specified, this must be an IANA_SVC_NAME + and unique within the pod. Each named port in a + pod must have a unique name. Name for the port that + can be referred to by services. + type: string + protocol: + default: TCP + description: Protocol for port. Must be UDP, TCP, + or SCTP. Defaults to "TCP". + type: string + required: + - containerPort type: object - name: - description: Name of the container specified as a DNS_LABEL. - Each container in a pod must have a unique name (DNS_LABEL). - type: string - ports: - description: List of ports to expose from the container. - Exposing a port here gives the system additional information - about the network connections a container uses, but is - primarily informational. Not specifying a port here DOES - NOT prevent that port from being exposed. Any port which - is listening on the default "0.0.0.0" address inside a - container will be accessible from the network. - items: - description: ContainerPort represents a network port in - a single container. + type: array + readinessProbe: + description: Periodic probe of container service readiness. + Container will be removed from service endpoints if the + probe fails. + properties: + exec: + description: One and only one of the following should + be specified. Exec specifies the action to take. properties: - containerPort: - description: Number of port to expose on the pod's - IP address. This must be a valid port number, 0 - < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port - to. + command: + description: Command is the command line to execute + inside the container, the working directory for + the command is root ('/') in the container's + filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions + ('|', etc) won't work. To use a shell, you need + to explicitly call out to that shell. Exit status + of 0 is treated as live/healthy and non-zero is + unhealthy. + items: + type: string + type: array + type: object + failureThreshold: + description: Minimum consecutive failures for the probe + to be considered failed after having succeeded. Defaults + to 3. Minimum value is 1. + format: int32 + type: integer + httpGet: + description: HTTPGet specifies the http request to perform. + properties: + host: + description: Host name to connect to, defaults to + the pod IP. You probably want to set "Host" in + httpHeaders instead. type: string - hostPort: - description: Number of port to expose on the host. - If specified, this must be a valid port number, - 0 < x < 65536. If HostNetwork is specified, this - must match ContainerPort. Most containers do not - need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME - and unique within the pod. Each named port in a - pod must have a unique name. Name for the port that - can be referred to by services. + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom header + to be used in HTTP probes + properties: + name: + description: The header field name + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + path: + description: Path to access on the HTTP server. type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, - or SCTP. Defaults to "TCP". + port: + anyOf: + - type: integer + - type: string + description: Name or number of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: Scheme to use for connecting to the + host. Defaults to HTTP. type: string required: - - containerPort + - port type: object - type: array - readinessProbe: - description: Periodic probe of container service readiness. - Container will be removed from service endpoints if the - probe fails. - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container + initialDelaySeconds: + description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum - value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving + format: int32 + type: integer + periodSeconds: + description: How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: Minimum consecutive successes for the probe + to be considered successful after having failed. Defaults + to 1. Must be 1 for liveness and startup. Minimum + value is 1. + format: int32 + type: integer + tcpSocket: + description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, + properties: + host: + description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe + type: string + port: + anyOf: + - type: integer + - type: string + description: Number or name of the port to access + on the container. Number must be in the range + 1 to 65535. Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + timeoutSeconds: + description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. + format: int32 + type: integer + type: object + resources: + description: 'Compute Resources required by this container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. + type: object + type: object + securityContext: + description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether + properties: + allowPrivilegeEscalation: + description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running - containers. Defaults to the default set of capabilities - granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes - in privileged containers are essentially equivalent - to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount - to use for the containers. The default is DefaultProcMount - which uses the container runtime defaults for readonly - paths and masked paths. This requires the ProcMountType - feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only - root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container - process. Uses runtime default if unset. May also be - set in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as - a non-root user. If true, the Kubelet will validate - the image at runtime to ensure that it does not run - as UID 0 (root) and fail to start the container if - it does. If unset or false, no such validation will - be performed. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container - process. Defaults to user specified in image metadata - if unspecified. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the - container. If unspecified, the container runtime will - allocate a random SELinux context for each container. May - also be set in PodSecurityContext. If set in both - SecurityContext and PodSecurityContext, the value - specified in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label that applies - to the container. - type: string - role: - description: Role is a SELinux role label that applies - to the container. - type: string - type: - description: Type is a SELinux type label that applies - to the container. - type: string - user: - description: User is a SELinux user label that applies - to the container. + type: boolean + capabilities: + description: The capabilities to add/drop when running + containers. Defaults to the default set of capabilities + granted by the container runtime. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type type: string - type: object - seccompProfile: - description: The seccomp options to use by this container. - If seccomp options are provided at both the pod & - container level, the container options override the - pod options. - properties: - localhostProfile: - description: localhostProfile indicates a profile - defined in a file on the node should be used. - The profile must be preconfigured on the node - to work. Must be a descending path, relative to - the kubelet's configured seccomp profile location. - Must only be set if type is "Localhost". + type: array + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type type: string - type: - description: "type indicates which kind of seccomp + type: array + type: object + privileged: + description: Run container in privileged mode. Processes + in privileged containers are essentially equivalent + to root on the host. Defaults to false. + type: boolean + procMount: + description: procMount denotes the type of proc mount + to use for the containers. The default is DefaultProcMount + which uses the container runtime defaults for readonly + paths and masked paths. This requires the ProcMountType + feature flag to be enabled. + type: string + readOnlyRootFilesystem: + description: Whether this container has a read-only + root filesystem. Default is false. + type: boolean + runAsGroup: + description: The GID to run the entrypoint of the container + process. Uses runtime default if unset. May also be + set in PodSecurityContext. If set in both SecurityContext + and PodSecurityContext, the value specified in SecurityContext + takes precedence. + format: int64 + type: integer + runAsNonRoot: + description: Indicates that the container must run as + a non-root user. If true, the Kubelet will validate + the image at runtime to ensure that it does not run + as UID 0 (root) and fail to start the container if + it does. If unset or false, no such validation will + be performed. May also be set in PodSecurityContext. If + set in both SecurityContext and PodSecurityContext, + the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container + process. Defaults to user specified in image metadata + if unspecified. May also be set in PodSecurityContext. If + set in both SecurityContext and PodSecurityContext, + the value specified in SecurityContext takes precedence. + format: int64 + type: integer + seLinuxOptions: + description: The SELinux context to be applied to the + container. If unspecified, the container runtime will + allocate a random SELinux context for each container. May + also be set in PodSecurityContext. If set in both + SecurityContext and PodSecurityContext, the value + specified in SecurityContext takes precedence. + properties: + level: + description: Level is SELinux level label that applies + to the container. + type: string + role: + description: Role is a SELinux role label that applies + to the container. + type: string + type: + description: Type is a SELinux type label that applies + to the container. + type: string + user: + description: User is a SELinux user label that applies + to the container. + type: string + type: object + seccompProfile: + description: The seccomp options to use by this container. + If seccomp options are provided at both the pod & + container level, the container options override the + pod options. + properties: + localhostProfile: + description: localhostProfile indicates a profile + defined in a file on the node should be used. + The profile must be preconfigured on the node + to work. Must be a descending path, relative to + the kubelet's configured seccomp profile location. + Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." - type: string - required: - - type - type: object - windowsOptions: - description: The Windows specific settings applied to - all containers. If unspecified, the options from the - PodSecurityContext will be used. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA - admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential spec - named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name - of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the - entrypoint of the container process. Defaults - to the user specified in image metadata if unspecified. - May also be set in PodSecurityContext. If set - in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - volumeMounts: - description: Pod volumes to mount into the container's filesystem. - items: - description: VolumeMount describes a mounting of a Volume - within a container. - properties: - mountPath: - description: Path within the container at which the - volume should be mounted. Must not contain ':'. type: string - mountPropagation: - description: mountPropagation determines how mounts - are propagated from the host to container and the - other way around. When not set, MountPropagationNone - is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. + required: + - type + type: object + windowsOptions: + description: The Windows specific settings applied to + all containers. If unspecified, the options from the + PodSecurityContext will be used. If set in both SecurityContext + and PodSecurityContext, the value specified in SecurityContext + takes precedence. + properties: + gmsaCredentialSpec: + description: GMSACredentialSpec is where the GMSA + admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA credential spec + named by the GMSACredentialSpecName field. type: string - readOnly: - description: Mounted read-only if true, read-write - otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the - container's volume should be mounted. Defaults to - "" (volume's root). + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name + of the GMSA credential spec to use. type: string - subPathExpr: - description: Expanded path within the volume from - which the container's volume should be mounted. - Behaves similarly to SubPath but environment variable - references $(VAR_NAME) are expanded using the container's - environment. Defaults to "" (volume's root). SubPathExpr - and SubPath are mutually exclusive. + runAsUserName: + description: The UserName in Windows to run the + entrypoint of the container process. Defaults + to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set + in both SecurityContext and PodSecurityContext, + the value specified in SecurityContext takes precedence. type: string - required: - - mountPath - - name type: object - type: array - workingDir: - description: Container's working directory. If not specified, - the container runtime's default will be used, which might - be configured in the container image. - type: string - required: - - image - - imagePullPolicy - - name - - resources - type: object - type: array - disableCSRFProtection: - description: DisableCSRFProtection allows you to toggle CSRF Protection - on Jenkins - type: boolean - imagePullSecrets: - description: 'ImagePullSecrets is an optional list of references + type: object + volumeMounts: + description: Pod volumes to mount into the container's filesystem. + items: + description: VolumeMount describes a mounting of a Volume + within a container. + properties: + mountPath: + description: Path within the container at which the + volume should be mounted. Must not contain ':'. + type: string + mountPropagation: + description: mountPropagation determines how mounts + are propagated from the host to container and the + other way around. When not set, MountPropagationNone + is used. This field is beta in 1.10. + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: Mounted read-only if true, read-write + otherwise (false or unspecified). Defaults to false. + type: boolean + subPath: + description: Path within the volume from which the + container's volume should be mounted. Defaults to + "" (volume's root). + type: string + subPathExpr: + description: Expanded path within the volume from + which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable + references $(VAR_NAME) are expanded using the container's + environment. Defaults to "" (volume's root). SubPathExpr + and SubPath are mutually exclusive. + type: string + required: + - mountPath + - name + type: object + type: array + workingDir: + description: Container's working directory. If not specified, + the container runtime's default will be used, which might + be configured in the container image. + type: string + required: + - image + - imagePullPolicy + - name + - resources + type: object + type: array + disableCSRFProtection: + description: DisableCSRFProtection allows you to toggle CSRF Protection + on Jenkins + type: boolean + imagePullSecrets: + description: 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod' - items: - description: LocalObjectReference contains enough information - to let you locate the referenced object inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + items: + description: LocalObjectReference contains enough information + to let you locate the referenced object inside the same namespace. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - type: array - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to + type: string + type: object + type: array + labels: + additionalProperties: + type: string + description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' - type: object - nodeSelector: - additionalProperties: - type: string - description: 'NodeSelector is a selector which must be true for + type: object + nodeSelector: + additionalProperties: + type: string + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + plugins: + description: Plugins contains plugins required by user + items: + description: Plugin defines Jenkins plugin. + properties: + downloadURL: + description: DownloadURL is the custom url from where plugin + has to be downloaded. + type: string + name: + description: Name is the name of Jenkins plugin + type: string + version: + description: Version is the version of Jenkins plugin + type: string + required: + - name + - version type: object - plugins: - description: Plugins contains plugins required by user - items: - description: Plugin defines Jenkins plugin. - properties: - downloadURL: - description: DownloadURL is the custom url from where plugin - has to be downloaded. - type: string - name: - description: Name is the name of Jenkins plugin - type: string - version: - description: Version is the version of Jenkins plugin - type: string - required: - - name - - version - type: object - type: array - priorityClassName: - description: PriorityClassName for Jenkins master pod - type: string - securityContext: - description: 'SecurityContext that applies to all the containers + type: array + priorityClassName: + description: PriorityClassName for Jenkins master pod + type: string + securityContext: + description: 'SecurityContext that applies to all the containers of the Jenkins Master. As per kubernetes specification, it can be overridden for each container individually. Defaults to: runAsUser: 1000 fsGroup: 1000' - properties: - fsGroup: - description: "A special supplemental group that applies to + properties: + fsGroup: + description: "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n 1. The owning GID will be the FSGroup 2. The setgid @@ -1174,358 +1179,358 @@ spec: by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n If unset, the Kubelet will not modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior of changing - ownership and permission of the volume before being exposed - inside Pod. This field will only apply to volume types which - support fsGroup based ownership(and permissions). It will - have no effect on ephemeral volume types such as: secret, - configmaps and emptydir. Valid values are "OnRootMismatch" - and "Always". If not specified, "Always" is used.' - type: string - runAsGroup: - description: The GID to run the entrypoint of the container - process. Uses runtime default if unset. May also be set - in SecurityContext. If set in both SecurityContext and - PodSecurityContext, the value specified in SecurityContext - takes precedence for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root - user. If true, the Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 (root) and fail - to start the container if it does. If unset or false, no - such validation will be performed. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container - process. Defaults to user specified in image metadata if - unspecified. May also be set in SecurityContext. If set - in both SecurityContext and PodSecurityContext, the value - specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to all containers. - If unspecified, the container runtime will allocate a random - SELinux context for each container. May also be set in - SecurityContext. If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence - for that container. - properties: - level: - description: Level is SELinux level label that applies - to the container. - type: string - role: - description: Role is a SELinux role label that applies - to the container. - type: string - type: - description: Type is a SELinux type label that applies - to the container. - type: string - user: - description: User is a SELinux user label that applies - to the container. - type: string - type: object - seccompProfile: - description: The seccomp options to use by the containers - in this pod. - properties: - localhostProfile: - description: localhostProfile indicates a profile defined - in a file on the node should be used. The profile must - be preconfigured on the node to work. Must be a descending - path, relative to the kubelet's configured seccomp profile - location. Must only be set if type is "Localhost". - type: string - type: - description: "type indicates which kind of seccomp profile + format: int64 + type: integer + fsGroupChangePolicy: + description: 'fsGroupChangePolicy defines behavior of changing + ownership and permission of the volume before being exposed + inside Pod. This field will only apply to volume types which + support fsGroup based ownership(and permissions). It will + have no effect on ephemeral volume types such as: secret, + configmaps and emptydir. Valid values are "OnRootMismatch" + and "Always". If not specified, "Always" is used.' + type: string + runAsGroup: + description: The GID to run the entrypoint of the container + process. Uses runtime default if unset. May also be set + in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext + takes precedence for that container. + format: int64 + type: integer + runAsNonRoot: + description: Indicates that the container must run as a non-root + user. If true, the Kubelet will validate the image at runtime + to ensure that it does not run as UID 0 (root) and fail + to start the container if it does. If unset or false, no + such validation will be performed. May also be set in SecurityContext. If + set in both SecurityContext and PodSecurityContext, the + value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: The UID to run the entrypoint of the container + process. Defaults to user specified in image metadata if + unspecified. May also be set in SecurityContext. If set + in both SecurityContext and PodSecurityContext, the value + specified in SecurityContext takes precedence for that container. + format: int64 + type: integer + seLinuxOptions: + description: The SELinux context to be applied to all containers. + If unspecified, the container runtime will allocate a random + SELinux context for each container. May also be set in + SecurityContext. If set in both SecurityContext and PodSecurityContext, + the value specified in SecurityContext takes precedence + for that container. + properties: + level: + description: Level is SELinux level label that applies + to the container. + type: string + role: + description: Role is a SELinux role label that applies + to the container. + type: string + type: + description: Type is a SELinux type label that applies + to the container. + type: string + user: + description: User is a SELinux user label that applies + to the container. + type: string + type: object + seccompProfile: + description: The seccomp options to use by the containers + in this pod. + properties: + localhostProfile: + description: localhostProfile indicates a profile defined + in a file on the node should be used. The profile must + be preconfigured on the node to work. Must be a descending + path, relative to the kubelet's configured seccomp profile + location. Must only be set if type is "Localhost". + type: string + type: + description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." - type: string - required: - - type - type: object - supplementalGroups: - description: A list of groups applied to the first process - run in each container, in addition to the container's primary - GID. If unspecified, no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls used - for the pod. Pods with unsupported sysctls (by the container - runtime) might fail to launch. - items: - description: Sysctl defines a kernel parameter to be set - properties: - name: - description: Name of a property to set - type: string - value: - description: Value of a property to set - type: string - required: - - name - - value - type: object - type: array - windowsOptions: - description: The Windows specific settings applied to all - containers. If unspecified, the options within a container's - SecurityContext will be used. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. + type: string + required: + - type + type: object + supplementalGroups: + description: A list of groups applied to the first process + run in each container, in addition to the container's primary + GID. If unspecified, no groups will be added to any container. + items: + format: int64 + type: integer + type: array + sysctls: + description: Sysctls hold a list of namespaced sysctls used + for the pod. Pods with unsupported sysctls (by the container + runtime) might fail to launch. + items: + description: Sysctl defines a kernel parameter to be set properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission - webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential spec named - by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the - GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint - of the container process. Defaults to the user specified - in image metadata if unspecified. May also be set in - PodSecurityContext. If set in both SecurityContext and - PodSecurityContext, the value specified in SecurityContext - takes precedence. + name: + description: Name of a property to set type: string + value: + description: Value of a property to set + type: string + required: + - name + - value type: object - type: object - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to tolerates - any taint that matches the triple using - the matching operator . + type: array + windowsOptions: + description: The Windows specific settings applied to all + containers. If unspecified, the options within a container's + SecurityContext will be used. If set in both SecurityContext + and PodSecurityContext, the value specified in SecurityContext + takes precedence. properties: - effect: - description: Effect indicates the taint effect to match. - Empty means match all taint effects. When specified, allowed - values are NoSchedule, PreferNoSchedule and NoExecute. + gmsaCredentialSpec: + description: GMSACredentialSpec is where the GMSA admission + webhook (https://github.com/kubernetes-sigs/windows-gmsa) + inlines the contents of the GMSA credential spec named + by the GMSACredentialSpecName field. type: string - key: - description: Key is the taint key that the toleration applies - to. Empty means match all taint keys. If the key is empty, - operator must be Exists; this combination means to match - all values and all keys. + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name of the + GMSA credential spec to use. type: string - operator: - description: Operator represents a key's relationship to - the value. Valid operators are Exists and Equal. Defaults - to Equal. Exists is equivalent to wildcard for value, - so that a pod can tolerate all taints of a particular - category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of - time the toleration (which must be of effect NoExecute, - otherwise this field is ignored) tolerates the taint. - By default, it is not set, which means tolerate the taint - forever (do not evict). Zero and negative values will - be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration matches - to. If the operator is Exists, the value should be empty, - otherwise just a regular string. + runAsUserName: + description: The UserName in Windows to run the entrypoint + of the container process. Defaults to the user specified + in image metadata if unspecified. May also be set in + PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext + takes precedence. type: string type: object - type: array - volumes: - description: 'List of volumes that can be mounted by containers + type: object + tolerations: + description: If specified, the pod's tolerations. + items: + description: The pod this Toleration is attached to tolerates + any taint that matches the triple using + the matching operator . + properties: + effect: + description: Effect indicates the taint effect to match. + Empty means match all taint effects. When specified, allowed + values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies + to. Empty means match all taint keys. If the key is empty, + operator must be Exists; this combination means to match + all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to + the value. Valid operators are Exists and Equal. Defaults + to Equal. Exists is equivalent to wildcard for value, + so that a pod can tolerate all taints of a particular + category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of + time the toleration (which must be of effect NoExecute, + otherwise this field is ignored) tolerates the taint. + By default, it is not set, which means tolerate the taint + forever (do not evict). Zero and negative values will + be treated as 0 (evict immediately) by the system. + format: int64 + type: integer + value: + description: Value is the taint value the toleration matches + to. If the operator is Exists, the value should be empty, + otherwise just a regular string. + type: string + type: object + type: array + volumes: + description: 'List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes' - items: - description: Volume represents a named volume in a pod that - may be accessed by any container in the pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents an AWS Disk + items: + description: Volume represents a named volume in a pod that + may be accessed by any container in the pod. + properties: + awsElasticBlockStore: + description: 'AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume that you + properties: + fsType: + description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want + type: string + partition: + description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and set the ReadOnly + format: int32 + type: integer + readOnly: + description: 'Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent disk resource + type: boolean + volumeID: + description: 'Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data Disk mount - on the host and bind mount to the pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read Only, Read + type: string + required: + - volumeID + type: object + azureDisk: + description: AzureDisk represents an Azure Data Disk mount + on the host and bind mount to the pod. + properties: + cachingMode: + description: 'Host Caching mode: None, Read Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in the blob storage - type: string - diskURI: - description: The URI the data disk in the blob storage - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if - unspecified. - type: string - kind: - description: 'Expected values Shared: multiple blob + type: string + diskName: + description: The Name of the data disk in the blob storage + type: string + diskURI: + description: The URI the data disk in the blob storage + type: string + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". Implicitly inferred to be "ext4" if + unspecified. + type: string + kind: + description: 'Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly - here will force the ReadOnly setting in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File Service - mount on the host and bind mount to the pod. - properties: - readOnly: - description: Defaults to false (read/write). ReadOnly - here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains Azure - Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount on the host - that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection of + type: string + readOnly: + description: Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in VolumeMounts. + type: boolean + required: + - diskName + - diskURI + type: object + azureFile: + description: AzureFile represents an Azure File Service + mount on the host and bind mount to the pod. + properties: + readOnly: + description: Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in VolumeMounts. + type: boolean + secretName: + description: the name of secret that contains Azure + Storage Account Name and Key + type: string + shareName: + description: Share Name + type: string + required: + - secretName + - shareName + type: object + cephfs: + description: CephFS represents a Ceph FS mount on the host + that shares a pod's lifetime + properties: + monitors: + description: 'Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted root, rather - than the full Ceph tree, default is /' + items: type: string - readOnly: - description: 'Optional: Defaults to false (read/write). + type: array + path: + description: 'Optional: Used as the mounted root, rather + than the full Ceph tree, default is /' + type: string + readOnly: + description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the path to key + type: boolean + secretFile: + description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference to the + type: string + secretRef: + description: 'Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados user name, + type: string + type: object + user: + description: 'Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume attached + type: string + required: + - monitors + type: object + cinder: + description: 'Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem + properties: + fsType: + description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). + type: string + readOnly: + description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret object containing + type: boolean + secretRef: + description: 'Optional: points to a secret object containing parameters used to connect to OpenStack.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the volume + type: string + type: object + volumeID: + description: 'volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap that should - populate this volume - properties: - defaultMode: - description: 'Optional: mode bits used to set permissions + type: string + required: + - volumeID + type: object + configMap: + description: ConfigMap represents a configMap that should + populate this volume + properties: + defaultMode: + description: 'Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, @@ -1534,28 +1539,28 @@ spec: by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer + format: int32 + type: integer + items: + description: If unspecified, each key-value pair in + the Data field of the referenced ConfigMap will be + projected into the volume as a file whose name is + the key and content is the value. If specified, the + listed keys will be projected into the specified paths, + and unlisted keys will not be present. If a key is + specified which is not present in the ConfigMap, the + volume setup will error unless it is marked optional. + Paths must be relative and may not contain the '..' + path or start with '..'. items: - description: If unspecified, each key-value pair in - the Data field of the referenced ConfigMap will be - projected into the volume as a file whose name is - the key and content is the value. If specified, the - listed keys will be projected into the specified paths, - and unlisted keys will not be present. If a key is - specified which is not present in the ConfigMap, the - volume setup will error unless it is marked optional. - Paths must be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path within a - volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used to set + description: Maps a string key to a path within a + volume. + properties: + key: + description: The key to project. + type: string + mode: + description: 'Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal @@ -1565,79 +1570,79 @@ spec: other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to - map the key to. May not be an absolute path. - May not contain the path element '..'. May not - start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + format: int32 + type: integer + path: + description: The relative path of the file to + map the key to. May not be an absolute path. + May not contain the path element '..'. May not + start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys - must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) represents - ephemeral storage that is handled by certain external - CSI drivers (Beta feature). - properties: - driver: - description: Driver is the name of the CSI driver that - handles this volume. Consult with your admin for the - correct name as registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. "ext4", "xfs", - "ntfs". If not provided, the empty value is passed - to the associated CSI driver which will determine - the default filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference to - the secret object containing sensitive information - to pass to the CSI driver to complete the CSI NodePublishVolume - and NodeUnpublishVolume calls. This field is optional, - and may be empty if no secret is required. If the - secret object contains more than one secret, all secret - references are passed. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + optional: + description: Specify whether the ConfigMap or its keys + must be defined + type: boolean + type: object + csi: + description: CSI (Container Storage Interface) represents + ephemeral storage that is handled by certain external + CSI drivers (Beta feature). + properties: + driver: + description: Driver is the name of the CSI driver that + handles this volume. Consult with your admin for the + correct name as registered in the cluster. + type: string + fsType: + description: Filesystem type to mount. Ex. "ext4", "xfs", + "ntfs". If not provided, the empty value is passed + to the associated CSI driver which will determine + the default filesystem to apply. + type: string + nodePublishSecretRef: + description: NodePublishSecretRef is a reference to + the secret object containing sensitive information + to pass to the CSI driver to complete the CSI NodePublishVolume + and NodeUnpublishVolume calls. This field is optional, + and may be empty if no secret is required. If the + secret object contains more than one secret, all secret + references are passed. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration for - the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: type: string - description: VolumeAttributes stores driver-specific - properties that are passed to the CSI driver. Consult - your driver's documentation for supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API about the - pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created + type: object + readOnly: + description: Specifies a read-only configuration for + the volume. Defaults to false (read/write). + type: boolean + volumeAttributes: + additionalProperties: + type: string + description: VolumeAttributes stores driver-specific + properties that are passed to the CSI driver. Consult + your driver's documentation for supported values. + type: object + required: + - driver + type: object + downwardAPI: + description: DownwardAPI represents downward API about the + pod that should populate this volume + properties: + defaultMode: + description: 'Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal @@ -1648,33 +1653,33 @@ spec: conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer + format: int32 + type: integer + items: + description: Items is a list of downward API volume + file items: - description: Items is a list of downward API volume - file - items: - description: DownwardAPIVolumeFile represents information - to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the + description: DownwardAPIVolumeFile represents information + to create the file containing the pod field + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath - is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in - the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits used to set + properties: + apiVersion: + description: Version of the schema the FieldPath + is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in + the specified API version. + type: string + required: + - fieldPath + type: object + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal @@ -1684,70 +1689,70 @@ spec: other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative + format: int32 + type: integer + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required for + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of - the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary directory + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format of + the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + required: + - path + type: object + type: array + type: object + emptyDir: + description: 'EmptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium should back + properties: + medium: + description: 'What type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required + type: string + sizeLimit: + anyOf: + - type: integer + - type: string + description: 'Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - ephemeral: - description: "Ephemeral represents a volume that is handled + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + ephemeral: + description: "Ephemeral represents a volume that is handled by a cluster storage driver (Alpha feature). The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the @@ -1766,13 +1771,13 @@ spec: of the driver for more information. \n A pod can use both types of ephemeral volumes and persistent volumes at the same time." - properties: - readOnly: - description: Specifies a read-only configuration for - the volume. Defaults to false (read/write). - type: boolean - volumeClaimTemplate: - description: "Will be used to create a stand-alone PVC + properties: + readOnly: + description: Specifies a read-only configuration for + the volume. Defaults to false (read/write). + type: boolean + volumeClaimTemplate: + description: "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name @@ -1792,29 +1797,29 @@ spec: \n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \n Required, must not be nil." - properties: - metadata: - description: May contain labels and annotations - that will be copied into the PVC when creating - it. No other fields are allowed and will be rejected - during validation. - type: object - spec: - description: The specification for the PersistentVolumeClaim. - The entire content is copied unchanged into the - PVC that gets created from this template. The - same fields as in a PersistentVolumeClaim are - also valid here. - properties: - accessModes: - description: 'AccessModes contains the desired + properties: + metadata: + description: May contain labels and annotations + that will be copied into the PVC when creating + it. No other fields are allowed and will be rejected + during validation. + type: object + spec: + description: The specification for the PersistentVolumeClaim. + The entire content is copied unchanged into the + PVC that gets created from this template. The + same fields as in a PersistentVolumeClaim are + also valid here. + properties: + accessModes: + description: 'AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify + items: + type: string + type: array + dataSource: + description: 'This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * @@ -1826,297 +1831,297 @@ spec: controller can support the specified data source, it will create a new volume based on the contents of the specified data source.' - properties: - apiGroup: - description: APIGroup is the group for the - resource being referenced. If APIGroup - is not specified, the specified Kind must - be in the core API group. For any other - third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource - being referenced - type: string - name: - description: Name is the name of resource - being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum + properties: + apiGroup: + description: APIGroup is the group for the + resource being referenced. If APIGroup + is not specified, the specified Kind must + be in the core API group. For any other + third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource + being referenced + type: string + name: + description: Name is the name of resource + being referenced + type: string + required: + - kind + - name + type: object + resources: + description: 'Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider - for binding. - properties: - matchExpressions: - description: matchExpressions is a list - of label selector requirements. The requirements - are ANDed. - items: - description: A label selector requirement - is a selector that contains values, - a key, and an operator that relates - the key and values. - properties: - key: - description: key is the label key - that the selector applies to. - type: string - operator: - description: operator represents a - key's relationship to a set of values. - Valid operators are In, NotIn, Exists - and DoesNotExist. + type: object + type: object + selector: + description: A label query over volumes to consider + for binding. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The requirements + are ANDed. + items: + description: A label selector requirement + is a selector that contains values, + a key, and an operator that relates + the key and values. + properties: + key: + description: key is the label key + that the selector applies to. + type: string + operator: + description: operator represents a + key's relationship to a set of values. + Valid operators are In, NotIn, Exists + and DoesNotExist. + type: string + values: + description: values is an array of + string values. If the operator is + In or NotIn, the values array must + be non-empty. If the operator is + Exists or DoesNotExist, the values + array must be empty. This array + is replaced during a strategic merge + patch. + items: type: string - values: - description: values is an array of - string values. If the operator is - In or NotIn, the values array must - be non-empty. If the operator is - Exists or DoesNotExist, the values - array must be empty. This array - is replaced during a strategic merge - patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator - is "In", and the values array contains - only "value". The requirements are ANDed. + type: array + required: + - key + - operator type: object - type: object - storageClassName: - description: 'Name of the StorageClass required + type: array + matchLabels: + additionalProperties: + type: string + description: matchLabels is a map of {key,value} + pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, + whose key field is "key", the operator + is "In", and the values array contains + only "value". The requirements are ANDed. + type: object + type: object + storageClassName: + description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of - volume is required by the claim. Value of - Filesystem is implied when not included in - claim spec. - type: string - volumeName: - description: VolumeName is the binding reference - to the PersistentVolume backing this claim. - type: string - type: object - required: - - spec - type: object - type: object - fc: - description: FC represents a Fibre Channel resource that - is attached to a kubelet's host machine and then exposed - to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem + type: string + volumeMode: + description: volumeMode defines what type of + volume is required by the claim. Value of + Filesystem is implied when not included in + claim spec. + type: string + volumeName: + description: VolumeName is the binding reference + to the PersistentVolume backing this claim. + type: string + type: object + required: + - spec + type: object + type: object + fc: + description: FC represents a Fibre Channel resource that + is attached to a kubelet's host machine and then exposed + to the pod. + properties: + fsType: + description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false (read/write). + type: string + lun: + description: 'Optional: FC target lun number' + format: int32 + type: integer + readOnly: + description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide identifiers + type: boolean + targetWWNs: + description: 'Optional: FC target worldwide names (WWNs)' + items: + type: string + type: array + wwids: + description: 'Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume resource - that is provisioned/attached using an exec based plugin. - properties: - driver: - description: Driver is the name of the driver to use - for this volume. + items: type: string - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". The default filesystem depends on FlexVolume - script. + type: array + type: object + flexVolume: + description: FlexVolume represents a generic volume resource + that is provisioned/attached using an exec based plugin. + properties: + driver: + description: Driver is the name of the driver to use + for this volume. + type: string + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". The default filesystem depends on FlexVolume + script. + type: string + options: + additionalProperties: type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options if any.' - type: object - readOnly: - description: 'Optional: Defaults to false (read/write). + description: 'Optional: Extra command options if any.' + type: object + readOnly: + description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference to the + type: boolean + secretRef: + description: 'Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume attached - to a kubelet's host machine. This depends on the Flocker - control service being running - properties: - datasetName: - description: Name of the dataset stored as metadata - -> name on the dataset for Flocker should be considered - as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is unique identifier - of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE Disk resource + type: string + type: object + required: + - driver + type: object + flocker: + description: Flocker represents a Flocker volume attached + to a kubelet's host machine. This depends on the Flocker + control service being running + properties: + datasetName: + description: Name of the dataset stored as metadata + -> name on the dataset for Flocker should be considered + as deprecated + type: string + datasetUUID: + description: UUID of the dataset. This is unique identifier + of a Flocker dataset + type: string + type: object + gcePersistentDisk: + description: 'GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume that you + properties: + fsType: + description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want + type: string + partition: + description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource in GCE. + format: int32 + type: integer + pdName: + description: 'Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly + type: string + readOnly: + description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository at a particular + type: boolean + required: + - pdName + type: object + gitRepo: + description: 'GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not contain - or start with '..'. If '.' is supplied, the volume - directory will be the git repository. Otherwise, - if specified, the volume will contain the git repository - in the subdirectory with the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs mount on + properties: + directory: + description: Target directory name. Must not contain + or start with '..'. If '.' is supplied, the volume + directory will be the git repository. Otherwise, + if specified, the volume will contain the git repository + in the subdirectory with the given name. + type: string + repository: + description: Repository URL + type: string + revision: + description: Commit hash for the specified revision. + type: string + required: + - repository + type: object + glusterfs: + description: 'Glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint name that + properties: + endpoints: + description: 'EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume path. More + type: string + path: + description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the Glusterfs + type: string + readOnly: + description: 'ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing file or + type: boolean + required: + - endpoints + - path + type: object + hostPath: + description: 'HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the @@ -2125,216 +2130,216 @@ spec: --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the host. If + properties: + path: + description: 'Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults to "" + type: string + type: + description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource that + type: string + required: + - path + type: object + iscsi: + description: 'ISCSI represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume that you + properties: + chapAuthDiscovery: + description: whether support iSCSI Discovery CHAP authentication + type: boolean + chapAuthSession: + description: whether support iSCSI Session CHAP authentication + type: boolean + fsType: + description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine' + type: string + initiatorName: + description: Custom iSCSI Initiator Name. If initiatorName + is specified with iscsiInterface simultaneously, new + iSCSI interface : will + be created for the connection. + type: string + iqn: + description: Target iSCSI Qualified Name. + type: string + iscsiInterface: + description: iSCSI Interface Name that uses an iSCSI + transport. Defaults to 'default' (tcp). + type: string + lun: + description: iSCSI Target Lun number. + format: int32 + type: integer + portals: + description: iSCSI Target Portal List. The portal is + either an IP or ip_addr:port if the port is other + than default (typically TCP ports 860 and 3260). + items: type: string - initiatorName: - description: Custom iSCSI Initiator Name. If initiatorName - is specified with iscsiInterface simultaneously, new - iSCSI interface : will - be created for the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses an iSCSI - transport. Defaults to 'default' (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The portal is - either an IP or ip_addr:port if the port is other - than default (typically TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the ReadOnly setting - in VolumeMounts. Defaults to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target and initiator - authentication - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: array + readOnly: + description: ReadOnly here will force the ReadOnly setting + in VolumeMounts. Defaults to false. + type: boolean + secretRef: + description: CHAP Secret for iSCSI target and initiator + authentication + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal is either - an IP or ip_addr:port if the port is other than default - (typically TCP ports 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL and unique + type: string + type: object + targetPortal: + description: iSCSI Target Portal. The Portal is either + an IP or ip_addr:port if the port is other than default + (typically TCP ports 860 and 3260). + type: string + required: + - iqn + - lun + - targetPortal + type: object + name: + description: 'Volume''s name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the host that + type: string + nfs: + description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the NFS server. + properties: + path: + description: 'Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the NFS export + type: string + readOnly: + description: 'ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP address of + type: boolean + server: + description: 'Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource represents + type: string + required: + - path + - server + type: object + persistentVolumeClaim: + description: 'PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim + properties: + claimName: + description: 'ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting in VolumeMounts. - Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a PhotonController - persistent disk attached and mounted on kubelets host - machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if - unspecified. - type: string - pdID: - description: ID that identifies Photon Controller persistent - disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx volume - attached and mounted on kubelets host machine - properties: - fsType: - description: FSType represents the filesystem type to - mount Must be a filesystem type supported by the host - operating system. Ex. "ext4", "xfs". Implicitly inferred - to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly - here will force the ReadOnly setting in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies a Portworx - volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, configmaps, - and downward API - properties: - defaultMode: - description: Mode bits used to set permissions on created - files by default. Must be an octal value between 0000 - and 0777 or a decimal value between 0 and 511. YAML - accepts both octal and decimal values, JSON requires - decimal values for mode bits. Directories within the - path are not affected by this setting. This might - be in conflict with other options that affect the - file mode, like fsGroup, and the result can be other - mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected along - with other supported volume types - properties: - configMap: - description: information about the configMap data - to project - properties: - items: - description: If unspecified, each key-value - pair in the Data field of the referenced - ConfigMap will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the ConfigMap, the volume setup will - error unless it is marked optional. Paths - must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used + type: string + readOnly: + description: Will force the ReadOnly setting in VolumeMounts. + Default false. + type: boolean + required: + - claimName + type: object + photonPersistentDisk: + description: PhotonPersistentDisk represents a PhotonController + persistent disk attached and mounted on kubelets host + machine + properties: + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". Implicitly inferred to be "ext4" if + unspecified. + type: string + pdID: + description: ID that identifies Photon Controller persistent + disk + type: string + required: + - pdID + type: object + portworxVolume: + description: PortworxVolume represents a portworx volume + attached and mounted on kubelets host machine + properties: + fsType: + description: FSType represents the filesystem type to + mount Must be a filesystem type supported by the host + operating system. Ex. "ext4", "xfs". Implicitly inferred + to be "ext4" if unspecified. + type: string + readOnly: + description: Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in VolumeMounts. + type: boolean + volumeID: + description: VolumeID uniquely identifies a Portworx + volume + type: string + required: + - volumeID + type: object + projected: + description: Items for all in one resources secrets, configmaps, + and downward API + properties: + defaultMode: + description: Mode bits used to set permissions on created + files by default. Must be an octal value between 0000 + and 0777 or a decimal value between 0 and 511. YAML + accepts both octal and decimal values, JSON requires + decimal values for mode bits. Directories within the + path are not affected by this setting. This might + be in conflict with other options that affect the + file mode, like fsGroup, and the result can be other + mode bits set. + format: int32 + type: integer + sources: + description: list of volume projections + items: + description: Projection that may be projected along + with other supported volume types + properties: + configMap: + description: information about the configMap data + to project + properties: + items: + description: If unspecified, each key-value + pair in the Data field of the referenced + ConfigMap will be projected into the volume + as a file whose name is the key and content + is the value. If specified, the listed keys + will be projected into the specified paths, + and unlisted keys will not be present. If + a key is specified which is not present + in the ConfigMap, the volume setup will + error unless it is marked optional. Paths + must be relative and may not contain the + '..' path or start with '..'. + items: + description: Maps a string key to a path + within a volume. + properties: + key: + description: The key to project. + type: string + mode: + description: 'Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 @@ -2346,62 +2351,62 @@ spec: options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: + format: int32 + type: integer + path: + description: The relative path of the + file to map the key to. May not be + an absolute path. May not contain + the path element '..'. May not start + with the string '..'. + type: string + required: + - key + - path + type: object + type: array + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its keys must be defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI - data to project - properties: + type: string + optional: + description: Specify whether the ConfigMap + or its keys must be defined + type: boolean + type: object + downwardAPI: + description: information about the downwardAPI + data to project + properties: + items: + description: Items is a list of DownwardAPIVolume + file items: - description: Items is a list of DownwardAPIVolume - file - items: - description: DownwardAPIVolumeFile represents - information to create the file containing - the pod field - properties: - fieldRef: - description: 'Required: Selects a field + description: DownwardAPIVolumeFile represents + information to create the file containing + the pod field + properties: + fieldRef: + description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema - the FieldPath is written in terms - of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to - select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits used + properties: + apiVersion: + description: Version of the schema + the FieldPath is written in terms + of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to + select in the specified API version. + type: string + required: + - fieldPath + type: object + mode: + description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 @@ -2413,75 +2418,75 @@ spec: options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the + format: int32 + type: integer + path: + description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of + type: string + resourceFieldRef: + description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required + properties: + containerName: + description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output - format of the exposed resources, - defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output + format of the exposed resources, + defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret data - to project - properties: + type: string + required: + - resource + type: object + required: + - path + type: object + type: array + type: object + secret: + description: information about the secret data + to project + properties: + items: + description: If unspecified, each key-value + pair in the Data field of the referenced + Secret will be projected into the volume + as a file whose name is the key and content + is the value. If specified, the listed keys + will be projected into the specified paths, + and unlisted keys will not be present. If + a key is specified which is not present + in the Secret, the volume setup will error + unless it is marked optional. Paths must + be relative and may not contain the '..' + path or start with '..'. items: - description: If unspecified, each key-value - pair in the Data field of the referenced - Secret will be projected into the volume - as a file whose name is the key and content - is the value. If specified, the listed keys - will be projected into the specified paths, - and unlisted keys will not be present. If - a key is specified which is not present - in the Secret, the volume setup will error - unless it is marked optional. Paths must - be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path - within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used + description: Maps a string key to a path + within a volume. + properties: + key: + description: The key to project. + type: string + mode: + description: 'Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 @@ -2493,222 +2498,222 @@ spec: options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the - file to map the key to. May not be - an absolute path. May not contain - the path element '..'. May not start - with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: + format: int32 + type: integer + path: + description: The relative path of the + file to map the key to. May not be + an absolute path. May not contain + the path element '..'. May not start + with the string '..'. + type: string + required: + - key + - path + type: object + type: array + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken - data to project - properties: - audience: - description: Audience is the intended audience - of the token. A recipient of a token must - identify itself with an identifier specified - in the audience of the token, and otherwise - should reject the token. The audience defaults - to the identifier of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is the requested - duration of validity of the service account - token. As the token approaches expiration, - the kubelet volume plugin will proactively - rotate the service account token. The kubelet - will start trying to rotate the token if - the token is older than 80 percent of its - time to live or if the token is older than - 24 hours.Defaults to 1 hour and must be - at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative to - the mount point of the file to project the - token into. - type: string - required: - - path - type: object - type: object - type: array - type: object - quobyte: - description: Quobyte represents a Quobyte mount on the host - that shares a pod's lifetime - properties: - group: - description: Group to map volume access to Default is - no group - type: string - readOnly: - description: ReadOnly here will force the Quobyte volume - to be mounted with read-only permissions. Defaults - to false. - type: boolean - registry: - description: Registry represents a single or multiple - Quobyte Registry services specified as a string as - host:port pair (multiple entries are separated with - commas) which acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte volume - in the Backend Used with dynamically provisioned Quobyte - volumes, value is set by the plugin - type: string - user: - description: User to map volume access to Defaults to - serivceaccount user - type: string - volume: - description: Volume is a string that references an already - created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device mount + type: string + optional: + description: Specify whether the Secret or + its key must be defined + type: boolean + type: object + serviceAccountToken: + description: information about the serviceAccountToken + data to project + properties: + audience: + description: Audience is the intended audience + of the token. A recipient of a token must + identify itself with an identifier specified + in the audience of the token, and otherwise + should reject the token. The audience defaults + to the identifier of the apiserver. + type: string + expirationSeconds: + description: ExpirationSeconds is the requested + duration of validity of the service account + token. As the token approaches expiration, + the kubelet volume plugin will proactively + rotate the service account token. The kubelet + will start trying to rotate the token if + the token is older than 80 percent of its + time to live or if the token is older than + 24 hours.Defaults to 1 hour and must be + at least 10 minutes. + format: int64 + type: integer + path: + description: Path is the path relative to + the mount point of the file to project the + token into. + type: string + required: + - path + type: object + type: object + type: array + type: object + quobyte: + description: Quobyte represents a Quobyte mount on the host + that shares a pod's lifetime + properties: + group: + description: Group to map volume access to Default is + no group + type: string + readOnly: + description: ReadOnly here will force the Quobyte volume + to be mounted with read-only permissions. Defaults + to false. + type: boolean + registry: + description: Registry represents a single or multiple + Quobyte Registry services specified as a string as + host:port pair (multiple entries are separated with + commas) which acts as the central registry for volumes + type: string + tenant: + description: Tenant owning the given Quobyte volume + in the Backend Used with dynamically provisioned Quobyte + volumes, value is set by the plugin + type: string + user: + description: User to map volume access to Defaults to + serivceaccount user + type: string + volume: + description: Volume is a string that references an already + created Quobyte volume by name. + type: string + required: + - registry + - volume + type: object + rbd: + description: 'RBD represents a Rados Block Device mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume that you + properties: + fsType: + description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - image: - description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring for RBDUser. + type: string + image: + description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + type: string + keyring: + description: 'Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. More info: + type: string + monitors: + description: 'A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default is rbd. More - info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + items: type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly + type: array + pool: + description: 'The rados pool name. Default is rbd. More + info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' + type: string + readOnly: + description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication + type: boolean + secretRef: + description: 'SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default is admin. + type: string + type: object + user: + description: 'The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent volume - attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection Domain - for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly - here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret for - ScaleIO user and other sensitive information. If this - is not provided, Login operation will fail. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + required: + - image + - monitors + type: object + scaleIO: + description: ScaleIO represents a ScaleIO persistent volume + attached and mounted on Kubernetes nodes. + properties: + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". Default is "xfs". + type: string + gateway: + description: The host address of the ScaleIO API Gateway. + type: string + protectionDomain: + description: The name of the ScaleIO Protection Domain + for the configured storage. + type: string + readOnly: + description: Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: SecretRef references to the secret for + ScaleIO user and other sensitive information. If this + is not provided, Login operation will fail. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication - with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage for a volume - should be ThickProvisioned or ThinProvisioned. Default - is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated with - the protection domain. - type: string - system: - description: The name of the storage system as configured - in ScaleIO. - type: string - volumeName: - description: The name of a volume already created in - the ScaleIO system that is associated with this volume - source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that should populate + type: string + type: object + sslEnabled: + description: Flag to enable/disable SSL communication + with Gateway, default false + type: boolean + storageMode: + description: Indicates whether the storage for a volume + should be ThickProvisioned or ThinProvisioned. Default + is ThinProvisioned. + type: string + storagePool: + description: The ScaleIO Storage Pool associated with + the protection domain. + type: string + system: + description: The name of the storage system as configured + in ScaleIO. + type: string + volumeName: + description: The name of a volume already created in + the ScaleIO system that is associated with this volume + source. + type: string + required: + - gateway + - secretRef + - system + type: object + secret: + description: 'Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits used to set permissions + properties: + defaultMode: + description: 'Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, @@ -2717,509 +2722,509 @@ spec: by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer + format: int32 + type: integer + items: + description: If unspecified, each key-value pair in + the Data field of the referenced Secret will be projected + into the volume as a file whose name is the key and + content is the value. If specified, the listed keys + will be projected into the specified paths, and unlisted + keys will not be present. If a key is specified which + is not present in the Secret, the volume setup will + error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start + with '..'. items: - description: If unspecified, each key-value pair in - the Data field of the referenced Secret will be projected - into the volume as a file whose name is the key and - content is the value. If specified, the listed keys - will be projected into the specified paths, and unlisted - keys will not be present. If a key is specified which - is not present in the Secret, the volume setup will - error unless it is marked optional. Paths must be - relative and may not contain the '..' path or start - with '..'. - items: - description: Maps a string key to a path within a - volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits used to set - permissions on this file. Must be an octal value - between 0000 and 0777 or a decimal value between - 0 and 511. YAML accepts both octal and decimal - values, JSON requires decimal values for mode - bits. If not specified, the volume defaultMode - will be used. This might be in conflict with - other options that affect the file mode, like - fsGroup, and the result can be other mode bits - set.' - format: int32 - type: integer - path: - description: The relative path of the file to - map the key to. May not be an absolute path. - May not contain the path element '..'. May not - start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or its keys - must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s namespace - to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS volume attached - and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if - unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly - here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret to use for - obtaining the StorageOS API credentials. If not specified, - default values will be attempted. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable name of - the StorageOS volume. Volume names are only unique - within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the scope of - the volume within StorageOS. If no namespace is specified - then the Pod's namespace will be used. This allows - the Kubernetes name scoping to be mirrored within - StorageOS for tighter integration. Set VolumeName - to any name to override the default behaviour. Set - to "default" if you are not using namespaces within - StorageOS. Namespaces that do not pre-exist within - StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere volume attached - and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if - unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management (SPBM) - profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management (SPBM) - profile name. - type: string - volumePath: - description: Path that identifies vSphere volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - required: - - disableCSRFProtection - type: object - notifications: - description: Notifications defines list of a services which are used - to inform about Jenkins status Can be used to integrate chat services - like Slack, Microsoft Teams or Mailgun - items: - description: Notification is a service configuration used to send - notifications about Jenkins status. - properties: - level: - description: NotificationLevel defines the level of a Notification. - type: string - mailgun: - description: Mailgun is handler for Mailgun email service notification - channel. - properties: - apiKeySecretKeySelector: - description: SecretKeySelector selects a key of a Secret. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - secret: - description: The name of the secret in the pod's namespace - to select from. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - required: - - key - - secret - type: object - domain: - type: string - from: - type: string - recipient: - type: string - required: - - apiKeySecretKeySelector - - domain - - from - - recipient - type: object - name: - type: string - slack: - description: Slack is handler for Slack notification channel. - properties: - webHookURLSecretKeySelector: - description: The web hook URL to Slack App - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - secret: - description: The name of the secret in the pod's namespace - to select from. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - type: object - required: - - key - - secret - type: object - required: - - webHookURLSecretKeySelector - type: object - smtp: - description: SMTP is handler for sending emails via this protocol. - properties: - from: - type: string - passwordSecretKeySelector: - description: SecretKeySelector selects a key of a Secret. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - secret: - description: The name of the secret in the pod's namespace - to select from. + description: Maps a string key to a path within a + volume. properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' + key: + description: The key to project. type: string - type: object - required: - - key - - secret - type: object - port: - type: integer - server: - type: string - tlsInsecureSkipVerify: - type: boolean - to: - type: string - usernameSecretKeySelector: - description: SecretKeySelector selects a key of a Secret. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - secret: - description: The name of the secret in the pod's namespace - to select from. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' + mode: + description: 'Optional: mode bits used to set + permissions on this file. Must be an octal value + between 0000 and 0777 or a decimal value between + 0 and 511. YAML accepts both octal and decimal + values, JSON requires decimal values for mode + bits. If not specified, the volume defaultMode + will be used. This might be in conflict with + other options that affect the file mode, like + fsGroup, and the result can be other mode bits + set.' + format: int32 + type: integer + path: + description: The relative path of the file to + map the key to. May not be an absolute path. + May not contain the path element '..'. May not + start with the string '..'. type: string + required: + - key + - path type: object - required: - - key - - secret - type: object - required: - - from - - passwordSecretKeySelector - - port - - server - - to - - usernameSecretKeySelector - type: object - teams: - description: MicrosoftTeams is handler for Microsoft MicrosoftTeams - notification channel. - properties: - webHookURLSecretKeySelector: - description: The web hook URL to MicrosoftTeams App - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - secret: - description: The name of the secret in the pod's namespace - to select from. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: array + optional: + description: Specify whether the Secret or its keys + must be defined + type: boolean + secretName: + description: 'Name of the secret in the pod''s namespace + to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' + type: string + type: object + storageos: + description: StorageOS represents a StorageOS volume attached + and mounted on Kubernetes nodes. + properties: + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". Implicitly inferred to be "ext4" if + unspecified. + type: string + readOnly: + description: Defaults to false (read/write). ReadOnly + here will force the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: SecretRef specifies the secret to use for + obtaining the StorageOS API credentials. If not specified, + default values will be attempted. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - required: - - key - - secret - type: object - required: - - webHookURLSecretKeySelector - type: object - verbose: - type: boolean - required: - - level + type: string + type: object + volumeName: + description: VolumeName is the human-readable name of + the StorageOS volume. Volume names are only unique + within a namespace. + type: string + volumeNamespace: + description: VolumeNamespace specifies the scope of + the volume within StorageOS. If no namespace is specified + then the Pod's namespace will be used. This allows + the Kubernetes name scoping to be mirrored within + StorageOS for tighter integration. Set VolumeName + to any name to override the default behaviour. Set + to "default" if you are not using namespaces within + StorageOS. Namespaces that do not pre-exist within + StorageOS will be created. + type: string + type: object + vsphereVolume: + description: VsphereVolume represents a vSphere volume attached + and mounted on kubelets host machine + properties: + fsType: + description: Filesystem type to mount. Must be a filesystem + type supported by the host operating system. Ex. "ext4", + "xfs", "ntfs". Implicitly inferred to be "ext4" if + unspecified. + type: string + storagePolicyID: + description: Storage Policy Based Management (SPBM) + profile ID associated with the StoragePolicyName. + type: string + storagePolicyName: + description: Storage Policy Based Management (SPBM) + profile name. + type: string + volumePath: + description: Path that identifies vSphere volume vmdk + type: string + required: + - volumePath + type: object + required: - name - - verbose - type: object - type: array - restore: - description: 'Backup defines configuration of Jenkins backup restore - More info: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configure-backup-and-restore/' + type: object + type: array + required: + - disableCSRFProtection + type: object + notifications: + description: Notifications defines list of a services which are used + to inform about Jenkins status Can be used to integrate chat services + like Slack, Microsoft Teams or Mailgun + items: + description: Notification is a service configuration used to send + notifications about Jenkins status. properties: - action: - description: Action defines action which performs restore backup - in restore container sidecar + level: + description: NotificationLevel defines the level of a Notification. + type: string + mailgun: + description: Mailgun is handler for Mailgun email service notification + channel. properties: - exec: - description: Exec specifies the action to take. + apiKeySecretKeySelector: + description: SecretKeySelector selects a key of a Secret. properties: - command: - description: Command is the command line to execute inside - the container, the working directory for the command is - root ('/') in the container's filesystem. The command - is simply exec'd, it is not run inside a shell, so traditional - shell instructions ('|', etc) won't work. To use a shell, - you need to explicitly call out to that shell. Exit - status of 0 is treated as live/healthy and non-zero - is unhealthy. - items: - type: string - type: array + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + secret: + description: The name of the secret in the pod's namespace + to select from. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, + uid?' + type: string + type: object + required: + - key + - secret type: object + domain: + type: string + from: + type: string + recipient: + type: string + required: + - apiKeySecretKeySelector + - domain + - from + - recipient type: object - containerName: - description: ContainerName is the container name responsible for - restore backup operation + name: type: string - getLatestAction: - description: GetLatestAction defines action which returns the - latest backup number. If there is no backup "-1" should be returned. + slack: + description: Slack is handler for Slack notification channel. properties: - exec: - description: Exec specifies the action to take. + webHookURLSecretKeySelector: + description: The web hook URL to Slack App properties: - command: - description: Command is the command line to execute inside - the container, the working directory for the command is - root ('/') in the container's filesystem. The command - is simply exec'd, it is not run inside a shell, so traditional - shell instructions ('|', etc) won't work. To use a shell, - you need to explicitly call out to that shell. Exit - status of 0 is treated as live/healthy and non-zero - is unhealthy. - items: - type: string - type: array + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + secret: + description: The name of the secret in the pod's namespace + to select from. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, + uid?' + type: string + type: object + required: + - key + - secret + type: object + required: + - webHookURLSecretKeySelector + type: object + smtp: + description: SMTP is handler for sending emails via this protocol. + properties: + from: + type: string + passwordSecretKeySelector: + description: SecretKeySelector selects a key of a Secret. + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + secret: + description: The name of the secret in the pod's namespace + to select from. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, + uid?' + type: string + type: object + required: + - key + - secret + type: object + port: + type: integer + server: + type: string + tlsInsecureSkipVerify: + type: boolean + to: + type: string + usernameSecretKeySelector: + description: SecretKeySelector selects a key of a Secret. + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + secret: + description: The name of the secret in the pod's namespace + to select from. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, + uid?' + type: string + type: object + required: + - key + - secret + type: object + required: + - from + - passwordSecretKeySelector + - port + - server + - to + - usernameSecretKeySelector + type: object + teams: + description: MicrosoftTeams is handler for Microsoft MicrosoftTeams + notification channel. + properties: + webHookURLSecretKeySelector: + description: The web hook URL to MicrosoftTeams App + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + secret: + description: The name of the secret in the pod's namespace + to select from. + properties: + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Add other useful fields. apiVersion, kind, + uid?' + type: string + type: object + required: + - key + - secret type: object + required: + - webHookURLSecretKeySelector type: object - recoveryOnce: - description: RecoveryOnce if want to restore specific backup set - this field and then Jenkins will be restarted and desired backup - will be restored - format: int64 - type: integer + verbose: + type: boolean required: - - action - - containerName + - level + - name + - verbose type: object - roles: - description: Roles defines list of extra RBAC roles for the Jenkins - Master pod service account - items: - description: RoleRef contains information that points to the role - being used + type: array + restore: + description: 'Backup defines configuration of Jenkins backup restore + More info: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configure-backup-and-restore/' + properties: + action: + description: Action defines action which performs restore backup + in restore container sidecar properties: - apiGroup: - description: APIGroup is the group for the resource being referenced - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - apiGroup - - kind - - name + exec: + description: Exec specifies the action to take. + properties: + command: + description: Command is the command line to execute inside + the container, the working directory for the command is + root ('/') in the container's filesystem. The command + is simply exec'd, it is not run inside a shell, so traditional + shell instructions ('|', etc) won't work. To use a shell, + you need to explicitly call out to that shell. Exit + status of 0 is treated as live/healthy and non-zero + is unhealthy. + items: + type: string + type: array + type: object type: object - type: array - seedJobs: - description: 'SeedJobs defines list of Jenkins Seed Job configurations - More info: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configuration#configure-seed-jobs-and-pipelines' - items: - description: 'SeedJob defines configuration for seed job More info: - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configuration/#configure-seed-jobs-and-pipelines.' + containerName: + description: ContainerName is the container name responsible for + restore backup operation + type: string + getLatestAction: + description: GetLatestAction defines action which returns the + latest backup number. If there is no backup "-1" should be returned. properties: - additionalClasspath: - description: AdditionalClasspath is setting for Job DSL API - plugin to set Additional Classpath - type: string - bitbucketPushTrigger: - description: BitbucketPushTrigger is used for Bitbucket web - hooks - type: boolean - buildPeriodically: - description: BuildPeriodically is setting for scheduled trigger - type: string - credentialID: - description: CredentialID is the Kubernetes secret name which - stores repository access credentials - type: string - credentialType: - description: JenkinsCredentialType is the https://jenkinsci.github.io/kubernetes-credentials-provider-plugin/ - credential type - type: string - description: - description: Description is the description of the seed job - type: string - failOnMissingPlugin: - description: FailOnMissingPlugin is setting for Job DSL API - plugin that fails job if required plugin is missing - type: boolean - githubPushTrigger: - description: GitHubPushTrigger is used for GitHub web hooks - type: boolean - id: - description: ID is the unique seed job name - type: string - ignoreMissingFiles: - description: IgnoreMissingFiles is setting for Job DSL API plugin - to ignore files that miss - type: boolean - pollSCM: - description: PollSCM is setting for polling changes in SCM - type: string - repositoryBranch: - description: RepositoryBranch is the repository branch where - are seed job definitions - type: string - repositoryUrl: - description: RepositoryURL is the repository access URL. Can - be SSH or HTTPS. - type: string - targets: - description: Targets is the repository path where are seed job - definitions - type: string - unstableOnDeprecation: - description: UnstableOnDeprecation is setting for Job DSL API - plugin that sets build status as unstable if build using deprecated - features - type: boolean + exec: + description: Exec specifies the action to take. + properties: + command: + description: Command is the command line to execute inside + the container, the working directory for the command is + root ('/') in the container's filesystem. The command + is simply exec'd, it is not run inside a shell, so traditional + shell instructions ('|', etc) won't work. To use a shell, + you need to explicitly call out to that shell. Exit + status of 0 is treated as live/healthy and non-zero + is unhealthy. + items: + type: string + type: array + type: object type: object - type: array - service: - description: 'Service is Kubernetes service of Jenkins master HTTP - pod Defaults to : port: 8080 type: ClusterIP' + recoveryOnce: + description: RecoveryOnce if want to restore specific backup set + this field and then Jenkins will be restarted and desired backup + will be restored + format: int64 + type: integer + required: + - action + - containerName + type: object + roles: + description: Roles defines list of extra RBAC roles for the Jenkins + Master pod service account + items: + description: RoleRef contains information that points to the role + being used properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored + apiGroup: + description: APIGroup is the group for the resource being referenced + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - apiGroup + - kind + - name + type: object + type: array + seedJobs: + description: 'SeedJobs defines list of Jenkins Seed Job configurations + More info: https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configuration#configure-seed-jobs-and-pipelines' + items: + description: 'SeedJob defines configuration for seed job More info: + https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/configuration/#configure-seed-jobs-and-pipelines.' + properties: + additionalClasspath: + description: AdditionalClasspath is setting for Job DSL API + plugin to set Additional Classpath + type: string + bitbucketPushTrigger: + description: BitbucketPushTrigger is used for Bitbucket web + hooks + type: boolean + buildPeriodically: + description: BuildPeriodically is setting for scheduled trigger + type: string + credentialID: + description: CredentialID is the Kubernetes secret name which + stores repository access credentials + type: string + credentialType: + description: JenkinsCredentialType is the https://jenkinsci.github.io/kubernetes-credentials-provider-plugin/ + credential type + type: string + description: + description: Description is the description of the seed job + type: string + failOnMissingPlugin: + description: FailOnMissingPlugin is setting for Job DSL API + plugin that fails job if required plugin is missing + type: boolean + githubPushTrigger: + description: GitHubPushTrigger is used for GitHub web hooks + type: boolean + id: + description: ID is the unique seed job name + type: string + ignoreMissingFiles: + description: IgnoreMissingFiles is setting for Job DSL API plugin + to ignore files that miss + type: boolean + pollSCM: + description: PollSCM is setting for polling changes in SCM + type: string + repositoryBranch: + description: RepositoryBranch is the repository branch where + are seed job definitions + type: string + repositoryUrl: + description: RepositoryURL is the repository access URL. Can + be SSH or HTTPS. + type: string + targets: + description: Targets is the repository path where are seed job + definitions + type: string + unstableOnDeprecation: + description: UnstableOnDeprecation is setting for Job DSL API + plugin that sets build status as unstable if build using deprecated + features + type: boolean + type: object + type: array + service: + description: 'Service is Kubernetes service of Jenkins master HTTP + pod Defaults to : port: 8080 type: ClusterIP' + properties: + annotations: + additionalProperties: + type: string + description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Route service traffic to pods with label keys and + type: object + labels: + additionalProperties: + type: string + description: 'Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/' - type: object - loadBalancerIP: - description: 'Only applies to Service Type: LoadBalancer LoadBalancer + type: object + loadBalancerIP: + description: 'Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.' - type: string - loadBalancerSourceRanges: - description: 'If specified and supported by the platform, this + type: string + loadBalancerSourceRanges: + description: 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/administer-cluster/securing-a-cluster/#restricting-cloud-metadata-api-access' - items: - type: string - type: array - nodePort: - description: 'The port on each node on which this service is exposed + items: + type: string + type: array + nodePort: + description: 'The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport' - format: int32 - type: integer - port: - description: 'The port that are exposed by this service. More + format: int32 + type: integer + port: + description: 'The port that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies' - format: int32 - type: integer - type: - description: 'Type determines how the Service is exposed. Defaults + format: int32 + type: integer + type: + description: 'Type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing @@ -3232,75 +3237,75 @@ spec: builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types' + type: string + type: object + serviceAccount: + description: ServiceAccount defines Jenkins master service account + attributes + properties: + annotations: + additionalProperties: type: string - type: object - serviceAccount: - description: ServiceAccount defines Jenkins master service account - attributes - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored + description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - type: object - slaveService: - description: 'Service is Kubernetes service of Jenkins slave pods + type: object + type: object + slaveService: + description: 'Service is Kubernetes service of Jenkins slave pods Defaults to : port: 50000 type: ClusterIP' - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored + properties: + annotations: + additionalProperties: + type: string + description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Route service traffic to pods with label keys and + type: object + labels: + additionalProperties: + type: string + description: 'Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/' - type: object - loadBalancerIP: - description: 'Only applies to Service Type: LoadBalancer LoadBalancer + type: object + loadBalancerIP: + description: 'Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.' - type: string - loadBalancerSourceRanges: - description: 'If specified and supported by the platform, this + type: string + loadBalancerSourceRanges: + description: 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/administer-cluster/securing-a-cluster/#restricting-cloud-metadata-api-access' - items: - type: string - type: array - nodePort: - description: 'The port on each node on which this service is exposed + items: + type: string + type: array + nodePort: + description: 'The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport' - format: int32 - type: integer - port: - description: 'The port that are exposed by this service. More + format: int32 + type: integer + port: + description: 'The port that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies' - format: int32 - type: integer - type: - description: 'Type determines how the Service is exposed. Defaults + format: int32 + type: integer + type: + description: 'Type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing @@ -3313,96 +3318,96 @@ spec: builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types' + type: string + type: object + required: + - jenkinsAPISettings + - master + type: object + status: + description: Status defines the observed state of Jenkins + properties: + appliedGroovyScripts: + description: AppliedGroovyScripts is a list with all applied groovy + scripts in Jenkins by the operator + items: + description: AppliedGroovyScript is the applied groovy script in + Jenkins by the operator. + properties: + configurationType: + description: ConfigurationType is the name of the configuration + type(base-groovy, user-groovy, user-casc) + type: string + hash: + description: Hash is the hash of the groovy script and secrets + which it uses + type: string + name: + description: Name is the name of the groovy script type: string + source: + description: Source is the name of source where is located groovy + script + type: string + required: + - configurationType + - hash + - name + - source type: object - required: - - jenkinsAPISettings - - master - type: object - status: - description: Status defines the observed state of Jenkins - properties: - appliedGroovyScripts: - description: AppliedGroovyScripts is a list with all applied groovy - scripts in Jenkins by the operator - items: - description: AppliedGroovyScript is the applied groovy script in - Jenkins by the operator. - properties: - configurationType: - description: ConfigurationType is the name of the configuration - type(base-groovy, user-groovy, user-casc) - type: string - hash: - description: Hash is the hash of the groovy script and secrets - which it uses - type: string - name: - description: Name is the name of the groovy script - type: string - source: - description: Source is the name of source where is located groovy - script - type: string - required: - - configurationType - - hash - - name - - source - type: object - type: array - backupDoneBeforePodDeletion: - description: BackupDoneBeforePodDeletion tells if backup before pod - deletion has been made - type: boolean - baseConfigurationCompletedTime: - description: BaseConfigurationCompletedTime is a time when Jenkins - base configuration phase has been completed - format: date-time - type: string - createdSeedJobs: - description: CreatedSeedJobs contains list of seed job id already - created in Jenkins - items: - type: string - type: array - lastBackup: - description: LastBackup is the latest backup number - format: int64 - type: integer - operatorVersion: - description: OperatorVersion is the operator version which manages - this CR - type: string - pendingBackup: - description: PendingBackup is the pending backup number - format: int64 - type: integer - provisionStartTime: - description: ProvisionStartTime is a time when Jenkins master pod - has been created - format: date-time - type: string - restoredBackup: - description: RestoredBackup is the restored backup number after Jenkins - master pod restart - format: int64 - type: integer - userAndPasswordHash: - description: UserAndPasswordHash is a SHA256 hash made from user and - password - type: string - userConfigurationCompletedTime: - description: UserConfigurationCompletedTime is a time when Jenkins - user configuration phase has been completed - format: date-time + type: array + backupDoneBeforePodDeletion: + description: BackupDoneBeforePodDeletion tells if backup before pod + deletion has been made + type: boolean + baseConfigurationCompletedTime: + description: BaseConfigurationCompletedTime is a time when Jenkins + base configuration phase has been completed + format: date-time + type: string + createdSeedJobs: + description: CreatedSeedJobs contains list of seed job id already + created in Jenkins + items: type: string - type: object - type: object - served: true - storage: true - subresources: - status: {} + type: array + lastBackup: + description: LastBackup is the latest backup number + format: int64 + type: integer + operatorVersion: + description: OperatorVersion is the operator version which manages + this CR + type: string + pendingBackup: + description: PendingBackup is the pending backup number + format: int64 + type: integer + provisionStartTime: + description: ProvisionStartTime is a time when Jenkins master pod + has been created + format: date-time + type: string + restoredBackup: + description: RestoredBackup is the restored backup number after Jenkins + master pod restart + format: int64 + type: integer + userAndPasswordHash: + description: UserAndPasswordHash is a SHA256 hash made from user and + password + type: string + userConfigurationCompletedTime: + description: UserConfigurationCompletedTime is a time when Jenkins + user configuration phase has been completed + format: date-time + type: string + type: object + type: object + served: true + storage: true + subresources: + status: {} status: acceptedNames: kind: "" diff --git a/chart/jenkins-operator/templates/cert-manager.yaml b/chart/jenkins-operator/templates/cert-manager.yaml new file mode 100644 index 000000000..a6baa08e4 --- /dev/null +++ b/chart/jenkins-operator/templates/cert-manager.yaml @@ -0,0 +1,26 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: webhook-certificate + namespace: {{ .Release.Namespace }} +spec: + duration: 2160h + renewBefore: 360h + secretName: webhook-server-cert + dnsNames: + - webhook-service.{{ .Release.Namespace }}.svc + - webhook-service.{{ .Release.Namespace }}.svc.cluster.local + issuerRef: + kind: Issuer + name: selfsigned + +--- +apiVersion: cert-manager.io/v1 +kind: Issuer +metadata: + name: selfsigned + namespace: {{ .Release.Namespace }} +spec: + selfSigned: {} + +--- diff --git a/chart/jenkins-operator/templates/operator.yaml b/chart/jenkins-operator/templates/operator.yaml index c00c2b390..9d1026ca5 100644 --- a/chart/jenkins-operator/templates/operator.yaml +++ b/chart/jenkins-operator/templates/operator.yaml @@ -32,6 +32,10 @@ spec: command: - /manager args: [] + volumeMounts: + - mountPath: /tmp/k8s-webhook-server/serving-certs + name: cert + readOnly: true env: - name: WATCH_NAMESPACE value: {{ .Values.jenkins.namespace }} @@ -55,3 +59,9 @@ spec: tolerations: {{- toYaml . | nindent 8 }} {{- end }} + volumes: + - name: cert + secret: + defaultMode: 420 + secretName: webhook-server-cert + terminationGracePeriodSeconds: 10 \ No newline at end of file diff --git a/chart/jenkins-operator/templates/webhook.yaml b/chart/jenkins-operator/templates/webhook.yaml new file mode 100644 index 000000000..69b396e31 --- /dev/null +++ b/chart/jenkins-operator/templates/webhook.yaml @@ -0,0 +1,43 @@ +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingWebhookConfiguration +metadata: + name: validating-webhook-configuration + annotations: + cert-manager.io/inject-ca-from: {{ .Release.Namespace }}/webhook-certificate +webhooks: +- admissionReviewVersions: + - v1 + - v1beta1 + clientConfig: + service: + name: webhook-service + namespace: {{ .Release.Namespace }} + path: /validate-jenkins-io-v1alpha2-jenkins + failurePolicy: Fail + name: vjenkins.kb.io + rules: + - apiGroups: + - jenkins.io + apiVersions: + - v1alpha2 + operations: + - CREATE + - UPDATE + resources: + - jenkins + sideEffects: None + +--- +apiVersion: v1 +kind: Service +metadata: + name: webhook-service + namespace: {{ .Release.Namespace }} +spec: + ports: + - port: 443 + targetPort: 9443 + selector: + app.kubernetes.io/name: {{ include "jenkins-operator.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} +--- diff --git a/go.mod b/go.mod index e85781252..04c2fbcc8 100644 --- a/go.mod +++ b/go.mod @@ -27,4 +27,6 @@ require ( k8s.io/client-go v0.20.2 k8s.io/utils v0.0.0-20201110183641-67b214c5f920 sigs.k8s.io/controller-runtime v0.7.0 + golang.org/x/mod v0.4.2 + ) diff --git a/go.sum b/go.sum index 7fd5ec555..a1c223295 100644 --- a/go.sum +++ b/go.sum @@ -572,6 +572,8 @@ golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzB golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0 h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= From db0978c4d481f0d737e996e5a9b1a29b8b2e6e6b Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Fri, 16 Jul 2021 11:45:43 +0200 Subject: [PATCH 03/26] Configure bot for labelling new issues as needing triage (#597) --- .devbots/needs-triage.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .devbots/needs-triage.yml diff --git a/.devbots/needs-triage.yml b/.devbots/needs-triage.yml new file mode 100644 index 000000000..d71c67825 --- /dev/null +++ b/.devbots/needs-triage.yml @@ -0,0 +1,4 @@ +# Configuration for devbots-needs-triage - https://devbots.xyz/documentation/needs-triage/ + +enabled: true +label: "needs triage" \ No newline at end of file From 800c1a7d5de1b45df68886e2d3588e41dd6c6d8e Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Mon, 19 Jul 2021 16:04:45 +0200 Subject: [PATCH 04/26] Configure bot for managing stale issues (#598) --- .github/stale.yml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..ea6a07f26 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,47 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 30 + +# Number of days of inactivity before a stale Issue or Pull Request is closed. +# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. +daysUntilClose: 60 + +# Issues with these labels will never be considered stale +exemptLabels: + - frozen + +# Set to true to ignore issues in a milestone (defaults to false) +exemptMilestones: true + +# Label to use when marking an issue as stale +staleLabel: stale + +issues: + # Comment to post when marking an issue as stale. Set to `false` to disable + markComment: > + This issue has been automatically marked as stale because it has not had recent activity. + It will be closed if no further activity occurs. + If this issue is still affecting you, just comment with any updates and we'll keep it open. + Thank you for your contributions. + + # Comment to post when closing a stale issue. Set to `false` to disable + closeComment: > + Closing this issue after a prolonged period of inactivity. + If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you! + +pulls: + # Comment to post when marking a pull request as stale. + markComment: > + This pull request has been automatically marked as stale because it has not had recent activity. + It will be closed if no further activity occurs. + If this pull request is still relevant, just comment with any updates and we'll keep it open. + Thank you for your contributions. + + # Comment to post when closing a stale pull request. Set to `false` to disable + closeComment: > + Closing this pull request after a prolonged period of inactivity. + If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 From 35dfd47ec77df2b2f6b7034a89a14351494dc800 Mon Sep 17 00:00:00 2001 From: Piotr Ryba <55996264+prryb@users.noreply.github.com> Date: Tue, 20 Jul 2021 12:06:25 +0200 Subject: [PATCH 05/26] Docs: explanation what is backed up and why (#599) * Explanation what's backed up and why --- .../Getting Started/latest/configure-backup-and-restore.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md b/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md index d4df095ce..01d1ef725 100644 --- a/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md +++ b/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md @@ -7,6 +7,10 @@ description: > Prevent loss of job history --- +> Because of Jenkins Operator's architecture, the configuration of Jenkins should be done using ConfigurationAsCode +> or GroovyScripts and jobs should be defined as SeedJobs. It means that there is no point in backing up any job configuration +> up. Therefore, the backup script makes a copy of jobs history only. + Backup and restore is done by a container sidecar. ### PVC From 7ce9d1f0775d851136d5427929ba68073be4228d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Jul 2021 14:56:36 +0200 Subject: [PATCH 06/26] Auto-updated docs (#600) Co-authored-by: prryb --- .../latest/configure-backup-and-restore/index.html | 8 +++++++- docs/docs/getting-started/latest/index.xml | 6 ++++++ docs/docs/index.xml | 6 ++++++ website/package-lock.json | 12 ++++++------ 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html index 5896f09fa..cccbc3487 100644 --- a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html +++ b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html @@ -32,7 +32,7 @@ "> - + @@ -833,6 +833,12 @@

Configure backup and restore

Prevent loss of job history
+
+

Because of Jenkins Operator’s architecture, the configuration of Jenkins should be done using ConfigurationAsCode +or GroovyScripts and jobs should be defined as SeedJobs. It means that there is no point in backing up any job configuration +up. Therefore, the backup script makes a copy of jobs history only.

+
+

Backup and restore is done by a container sidecar.

PVC

diff --git a/docs/docs/getting-started/latest/index.xml b/docs/docs/getting-started/latest/index.xml index df8de64a8..1bac8f380 100644 --- a/docs/docs/getting-started/latest/index.xml +++ b/docs/docs/getting-started/latest/index.xml @@ -576,6 +576,12 @@ The secrets are loaded to <code>secrets</code> map.</p> +<blockquote> +<p>Because of Jenkins Operator&rsquo;s architecture, the configuration of Jenkins should be done using ConfigurationAsCode +or GroovyScripts and jobs should be defined as SeedJobs. It means that there is no point in backing up any job configuration +up. Therefore, the backup script makes a copy of jobs history only.</p> +</blockquote> + <p>Backup and restore is done by a container sidecar.</p> <h3 id="pvc">PVC</h3> diff --git a/docs/docs/index.xml b/docs/docs/index.xml index 6074c8400..cebbb46c4 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -3123,6 +3123,12 @@ spec: +<blockquote> +<p>Because of Jenkins Operator&rsquo;s architecture, the configuration of Jenkins should be done using ConfigurationAsCode +or GroovyScripts and jobs should be defined as SeedJobs. It means that there is no point in backing up any job configuration +up. Therefore, the backup script makes a copy of jobs history only.</p> +</blockquote> + <p>Backup and restore is done by a container sidecar.</p> <h3 id="pvc">PVC</h3> diff --git a/website/package-lock.json b/website/package-lock.json index 67bfa1796..57c68fa43 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -330,9 +330,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001237", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz", - "integrity": "sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw==", + "version": "1.0.30001245", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001245.tgz", + "integrity": "sha512-768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA==", "dev": true }, "chalk": { @@ -568,9 +568,9 @@ } }, "electron-to-chromium": { - "version": "1.3.752", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz", - "integrity": "sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A==", + "version": "1.3.780", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.780.tgz", + "integrity": "sha512-2KQ9OYm9WMUNpAPA/4aerURl3hwRc9tNlpsiEj3Y8Gf7LVf26NzyLIX2v0hSagQwrS9+cWab+28A2GPKDoVNRA==", "dev": true }, "end-of-stream": { From 463cad3b078c05b6c1ad76e693bd66947296bd81 Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Tue, 20 Jul 2021 14:58:04 +0200 Subject: [PATCH 07/26] Docs: clarification of description of get latest command in backup (#601) --- .../docs/Getting Started/latest/configure-backup-and-restore.md | 2 +- .../docs/Getting Started/v0.5.x/configure-backup-and-restore.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md b/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md index 01d1ef725..fbc5bcccd 100644 --- a/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md +++ b/website/content/en/docs/Getting Started/latest/configure-backup-and-restore.md @@ -81,7 +81,7 @@ spec: getLatestAction: exec: command: - - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion. If you don't omit it in CR, you can lose data + - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion; not having it in the CR may cause loss of data interval: 30 # how often make backup in seconds makeBackupBeforePodDeletion: true # make a backup before pod deletion restore: diff --git a/website/content/en/docs/Getting Started/v0.5.x/configure-backup-and-restore.md b/website/content/en/docs/Getting Started/v0.5.x/configure-backup-and-restore.md index 080338923..0a079cba3 100644 --- a/website/content/en/docs/Getting Started/v0.5.x/configure-backup-and-restore.md +++ b/website/content/en/docs/Getting Started/v0.5.x/configure-backup-and-restore.md @@ -85,6 +85,6 @@ spec: getLatestAction: exec: command: - - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion. If you don't omit it in CR, you can lose data + - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion; not having it in the CR may cause loss of data #recoveryOnce: # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored ``` From bd32624fe1553ba4f5c5f6f27685d4e0ea3722dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Jul 2021 09:54:59 +0200 Subject: [PATCH 08/26] Auto-updated docs (#602) Co-authored-by: Sig00rd --- .../latest/configure-backup-and-restore/index.html | 2 +- docs/docs/getting-started/latest/index.xml | 2 +- .../v0.5.x/configure-backup-and-restore/index.html | 2 +- docs/docs/getting-started/v0.5.x/index.xml | 2 +- docs/docs/index.xml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html index cccbc3487..533f99dcc 100644 --- a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html +++ b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html @@ -901,7 +901,7 @@

Configure Jenkins CR

getLatestAction: exec: command: - - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion. If you don't omit it in CR, you can lose data + - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion; not having it in the CR may cause loss of data interval: 30 # how often make backup in seconds makeBackupBeforePodDeletion: true # make a backup before pod deletion restore: diff --git a/docs/docs/getting-started/latest/index.xml b/docs/docs/getting-started/latest/index.xml index 1bac8f380..5d3564a08 100644 --- a/docs/docs/getting-started/latest/index.xml +++ b/docs/docs/getting-started/latest/index.xml @@ -644,7 +644,7 @@ up. Therefore, the backup script makes a copy of jobs history only.</p> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>getLatestAction<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>exec<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>command<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion. If you don&#39;t omit it in CR, you can lose data</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion; not having it in the CR may cause loss of data</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>interval<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#0000cf;font-weight:bold">30</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># how often make backup in seconds</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>makeBackupBeforePodDeletion<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">true</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># make a backup before pod deletion</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>restore<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> diff --git a/docs/docs/getting-started/v0.5.x/configure-backup-and-restore/index.html b/docs/docs/getting-started/v0.5.x/configure-backup-and-restore/index.html index 887b53324..e502cde5a 100644 --- a/docs/docs/getting-started/v0.5.x/configure-backup-and-restore/index.html +++ b/docs/docs/getting-started/v0.5.x/configure-backup-and-restore/index.html @@ -903,7 +903,7 @@

Configure Jenkins CR

getLatestAction: exec: command: - - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion. If you don't omit it in CR, you can lose data + - /home/user/bin/get-latest.sh # this command is invoked on "backup" container to get last backup number before pod deletion; not having it in the CR may cause loss of data #recoveryOnce: <backup_number> # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored diff --git a/docs/docs/getting-started/v0.5.x/index.xml b/docs/docs/getting-started/v0.5.x/index.xml index 1ede18bb8..93894a88c 100644 --- a/docs/docs/getting-started/v0.5.x/index.xml +++ b/docs/docs/getting-started/v0.5.x/index.xml @@ -634,7 +634,7 @@ The secrets are loaded to <code>secrets</code> map.</p> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>getLatestAction<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>exec<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>command<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion. If you don&#39;t omit it in CR, you can lose data</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion; not having it in the CR may cause loss of data</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic">#recoveryOnce: &lt;backup_number&gt; # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored</span></code></pre></div> diff --git a/docs/docs/index.xml b/docs/docs/index.xml index cebbb46c4..6024f26d8 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -3191,7 +3191,7 @@ up. Therefore, the backup script makes a copy of jobs history only.</p> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>getLatestAction<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>exec<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>command<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion. If you don&#39;t omit it in CR, you can lose data</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion; not having it in the CR may cause loss of data</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>interval<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#0000cf;font-weight:bold">30</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># how often make backup in seconds</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>makeBackupBeforePodDeletion<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">true</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># make a backup before pod deletion</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>restore<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> @@ -3285,7 +3285,7 @@ up. Therefore, the backup script makes a copy of jobs history only.</p> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>getLatestAction<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>exec<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>command<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion. If you don&#39;t omit it in CR, you can lose data</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>/home/user/bin/get-latest.sh<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic"># this command is invoked on &#34;backup&#34; container to get last backup number before pod deletion; not having it in the CR may cause loss of data</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#8f5902;font-style:italic">#recoveryOnce: &lt;backup_number&gt; # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored</span></code></pre></div> From 9d5c525ace0b68efeaf402e8d6e589b0cf72c0b8 Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Fri, 23 Jul 2021 10:29:04 +0200 Subject: [PATCH 09/26] Bump seedjobs agent image version to 4.9-1 (#604) --- pkg/configuration/user/seedjobs/seedjobs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/configuration/user/seedjobs/seedjobs.go b/pkg/configuration/user/seedjobs/seedjobs.go index cb9b3725f..3b4ac37f6 100644 --- a/pkg/configuration/user/seedjobs/seedjobs.go +++ b/pkg/configuration/user/seedjobs/seedjobs.go @@ -438,7 +438,7 @@ func agentDeployment(jenkins *v1alpha2.Jenkins, namespace string, agentName stri Containers: []corev1.Container{ { Name: "jnlp", - Image: "jenkins/inbound-agent:alpine", + Image: "jenkins/inbound-agent:4.9-1", Env: []corev1.EnvVar{ { Name: "JENKINS_TUNNEL", From 935b60b6d8ffa0b1dffcb5c3d0a36c0b329d5a62 Mon Sep 17 00:00:00 2001 From: Cosnita Radu Viorel Date: Thu, 29 Jul 2021 12:44:51 +0300 Subject: [PATCH 10/26] Add GitLFS pull after checkout behaviour to SeedJob GroovyScript Template (#483) Add GitLFS pull after checkout behaviour to support also repositories which are relying on Git LFS Close #482 --- pkg/configuration/user/seedjobs/seedjobs.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/configuration/user/seedjobs/seedjobs.go b/pkg/configuration/user/seedjobs/seedjobs.go index 3b4ac37f6..96d1df75b 100644 --- a/pkg/configuration/user/seedjobs/seedjobs.go +++ b/pkg/configuration/user/seedjobs/seedjobs.go @@ -80,6 +80,7 @@ import hudson.plugins.git.BranchSpec; import hudson.plugins.git.GitSCM; import hudson.plugins.git.SubmoduleConfig; import hudson.plugins.git.extensions.impl.CloneOption; +import hudson.plugins.git.extensions.impl.GitLFSPull; import javaposse.jobdsl.plugin.ExecuteDslScripts; import javaposse.jobdsl.plugin.LookupStrategy; import javaposse.jobdsl.plugin.RemovedJobAction; @@ -93,7 +94,10 @@ def jobDslSeedName = "{{ .ID }}-{{ .SeedJobSuffix }}"; def jobRef = jenkins.getItem(jobDslSeedName) def repoList = GitSCM.createRepoList("{{ .RepositoryURL }}", "{{ .CredentialID }}") -def gitExtensions = [new CloneOption(true, true, ";", 10)] +def gitExtensions = [ + new CloneOption(true, true, ";", 10), + new GitLFSPull() +] def scm = new GitSCM( repoList, newArrayList(new BranchSpec("{{ .RepositoryBranch }}")), From dfd25e822c7cddf3f59c9eb790bf24dd1900643e Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Mon, 2 Aug 2021 15:52:10 +0200 Subject: [PATCH 11/26] Docs: minor fixes (#608) * Link to project's DockerHub in README's section on nightly builds, add paragraph about nightly builds in installation docs * Fix repositoryURL in sample seedJob configuration with SSH auth * Slightly expand on #348 * Fix formatting in docs on Jenkins' customization, update plugin versions * Add notes on Jenkins home Volume in Helm chart values.yaml and docs (#589) --- README.md | 5 +++- chart/jenkins-operator/values.yaml | 2 ++ .../content/en/docs/Developer Guide/_index.md | 30 ++++++++++++++----- .../Getting Started/latest/configuration.md | 2 +- .../Getting Started/latest/customization.md | 19 ++++++------ .../content/en/docs/Installation/_index.md | 16 ++++++++-- 6 files changed, 53 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 5f9f3247d..45d5b74f1 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,15 @@ Selected content: ## Community We have a dedicated channel called `#jenkins-operator` on [virtuslab-oss.slack.com](https://virtuslab-oss.slack.com) -Fill out ([Invite form](https://forms.gle/X3X8qA1XMirdBuEH7)) and come say hi ! +Fill out ([Invite form](https://forms.gle/X3X8qA1XMirdBuEH7)) and come say hi! ## Snapshots between releases We are trying our best to resolve issues quickly, but they have to wait to be released. If you can't wait for an official docker image release and acknowledge the risk, you can use our unofficial images, which are built nightly. + +You can find the project's Docker Hub repository [here](https://hub.docker.com/r/virtuslab/jenkins-operator). + Look for the images with tag "{git-hash}", where {git-hash} is the hash of the master commit that interests you. ## Contribution diff --git a/chart/jenkins-operator/values.yaml b/chart/jenkins-operator/values.yaml index 2d0912442..1c92fb900 100644 --- a/chart/jenkins-operator/values.yaml +++ b/chart/jenkins-operator/values.yaml @@ -120,6 +120,8 @@ jenkins: claimName: jenkins-backup # volumeMounts are mounts for Jenkins pod + # Note that attempting to overwrite default mount settings for Jenkins home directory will result in Operator error + # See https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-jenkins-home-volume volumeMounts: [] # defines authorization strategy of the operator for the Jenkins API diff --git a/website/content/en/docs/Developer Guide/_index.md b/website/content/en/docs/Developer Guide/_index.md index b5c82a7ca..2753f3fbd 100644 --- a/website/content/en/docs/Developer Guide/_index.md +++ b/website/content/en/docs/Developer Guide/_index.md @@ -2,7 +2,7 @@ title: "Developer Guide" linkTitle: "Developer Guide" weight: 60 -date: 2021-06-10 +date: 2021-07-30 description: > Jenkins Operator for developers --- @@ -211,6 +211,16 @@ seed-job-agent-jenkins-example-758cc7cc5c-82hbl 1/1 Running 0 make run OPERATOR_EXTRA_ARGS="--debug" ``` +### Stop or delete minikube cluster +To stop Kubernetes cluster running locally on minikube: +```bash +minikube stop +``` +To delete the cluster altogether: +```bash +minikube delete +``` + ## Build and run with a remote Kubernetes cluster You can also run the controller locally and make it listen to a remote Kubernetes server. @@ -282,6 +292,18 @@ kubectl get secret jenkins-operator-credentials- -o 'jsonpath={.data.us kubectl get secret jenkins-operator-credentials- -o 'jsonpath={.data.password}' | base64 -d ``` + + + +## Self-learning + +* [Tutorial: Deep Dive into the Operator Framework for... Melvin Hillsman, Michael Hrivnak, & Matt Dorn +](https://www.youtube.com/watch?v=8_DaCcRMp5I) + +* [Operator Framework Training By OpenShift](https://www.katacoda.com/openshift/courses/operatorframework) + +* [Operator SDK Tutorial for Go](https://sdk.operatorframework.io/docs/building-operators/golang/tutorial/) + [dep_tool]:https://golang.github.io/dep/docs/installation.html [git_tool]:https://git-scm.com/downloads [go_tool]:https://golang.org/dl/ @@ -293,9 +315,3 @@ kubectl get secret jenkins-operator-credentials- -o 'jsonpath={.data.pa [virtualbox]:https://www.virtualbox.org/wiki/Downloads [install_dev_tools]:https://jenkinsci.github.io/kubernetes-operator/docs/developer-guide/tools/ -## Self-learning - -* [Tutorial: Deep Dive into the Operator Framework for... Melvin Hillsman, Michael Hrivnak, & Matt Dorn -](https://www.youtube.com/watch?v=8_DaCcRMp5I) - -* [Operator Framework Training By OpenShift](https://www.katacoda.com/openshift/courses/operatorframework) diff --git a/website/content/en/docs/Getting Started/latest/configuration.md b/website/content/en/docs/Getting Started/latest/configuration.md index f3c4b8a70..e543e5440 100644 --- a/website/content/en/docs/Getting Started/latest/configuration.md +++ b/website/content/en/docs/Getting Started/latest/configuration.md @@ -163,7 +163,7 @@ spec: targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: ssh://git@github.com:jenkinsci/kubernetes-operator.git + repositoryUrl: git@github.com:jenkinsci/kubernetes-operator.git ``` and create a Kubernetes Secret (name of secret should be the same from `credentialID` field): diff --git a/website/content/en/docs/Getting Started/latest/customization.md b/website/content/en/docs/Getting Started/latest/customization.md index 76b12e106..167c556ff 100644 --- a/website/content/en/docs/Getting Started/latest/customization.md +++ b/website/content/en/docs/Getting Started/latest/customization.md @@ -13,13 +13,14 @@ Plugin's configuration is applied as groovy scripts or the [configuration as cod Any plugin working for Jenkins can be installed by the Jenkins Operator. Pre-installed plugins: -* configuration-as-code v1.47 -* git v4.5.0 + +* configuration-as-code v1.51 +* git v4.7.2 * job-dsl v1.77 -* kubernetes-credentials-provider v0.15 -* kubernetes v1.29.0 +* kubernetes-credentials-provider v0.18-1 +* kubernetes v1.30.0 * workflow-aggregator v2.6 -* workflow-job v2.40 +* workflow-job v2.41 Rest of the plugins can be found in [plugins repository](https://plugins.jenkins.io/). @@ -51,19 +52,19 @@ spec: master: basePlugins: - name: kubernetes - version: "1.28.6" + version: "1.30.0" - name: workflow-job version: "2.40" - name: workflow-aggregator version: "2.6" - name: git - version: "4.5.0" + version: "4.7.2" - name: job-dsl version: "1.77" - name: configuration-as-code - version: "1.46" + version: "1.51" - name: kubernetes-credentials-provider - version: "0.15" + version: "0.18-1" ``` You can change their versions. diff --git a/website/content/en/docs/Installation/_index.md b/website/content/en/docs/Installation/_index.md index 6d4d8d279..fcd6ba282 100644 --- a/website/content/en/docs/Installation/_index.md +++ b/website/content/en/docs/Installation/_index.md @@ -2,24 +2,25 @@ title: "Installation" linkTitle: "Installation" weight: 1 -date: 2020-10-05 +date: 2021-07-30 description: > How to install Jenkins Operator --- {{% pageinfo %}} This document describes installation procedure for **Jenkins Operator**. -All container images can be found at [virtuslab/jenkins-operator](https://hub.docker.com/r/virtuslab/jenkins-operator) +All container images can be found at [virtuslab/jenkins-operator](https://hub.docker.com/r/virtuslab/jenkins-operator) Docker Hub repository. {{% /pageinfo %}} ## Requirements To run **Jenkins Operator**, you will need: + - access to a Kubernetes cluster version `1.17+` - `kubectl` version `1.17+` -Listed below are the two ways to deploy Jenkins Operator. For details on how to customize your Jenkins instance, refer to [Getting Started](/kubernetes-operator/docs/installation/) +Listed below are the two ways to deploy Jenkins Operator. For details on how to customize your Jenkins instance, refer to [Getting Started](/kubernetes-operator/docs/installation/). ## Deploy Jenkins Operator using YAML's @@ -877,3 +878,12 @@ Example:
+## Note on Operator's nightly built images +If you wish to use the newest, not yet released version of the Operator, you can use one of nightly built snapshot images, however the maintainers of this project cannot guarantee their stability. + +You can find nightly built images by heading to [virtuslab/jenkins-operator](https://hub.docker.com/r/virtuslab/jenkins-operator) Docker Hub repository and looking for images with tag in the form of "{git-hash}", {git-hash} being the hash of master branch commit that you want to use snapshot of. + +## Note on Jenkins home Volume +Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. One of the key points of this design is maintaining an immutable state of Jenkins. + +One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume as Jenkins home directory. It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, as attempting to do so will result in Operator error. \ No newline at end of file From 17dba087b8f0434faeff108d4b3b44e6dd5e53ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Aug 2021 16:22:29 +0200 Subject: [PATCH 12/26] Auto-updated docs (#610) Co-authored-by: Sig00rd --- docs/docs/developer-guide/index.html | 13 ++++++-- docs/docs/developer-guide/index.xml | 2 +- .../latest/configuration/index.html | 2 +- .../latest/customization/index.html | 29 +++++++++-------- docs/docs/getting-started/latest/index.html | 4 +-- docs/docs/getting-started/latest/index.xml | 29 +++++++++-------- docs/docs/getting-started/v0.5.x/index.html | 4 +-- docs/docs/index.html | 8 ++--- docs/docs/index.xml | 29 +++++++++-------- docs/docs/installation/index.html | 31 ++++++++++++++----- docs/docs/installation/index.xml | 2 +- docs/sitemap.xml | 12 +++---- website/package-lock.json | 12 +++---- 13 files changed, 106 insertions(+), 71 deletions(-) diff --git a/docs/docs/developer-guide/index.html b/docs/docs/developer-guide/index.html index e0da64c1d..36bfcc7dd 100644 --- a/docs/docs/developer-guide/index.html +++ b/docs/docs/developer-guide/index.html @@ -26,7 +26,7 @@ " /> - + @@ -765,6 +765,7 @@
  • Build and run with a minikube
  • Build and run with a remote Kubernetes cluster
  • Testing @@ -996,6 +997,12 @@

    Build and run with a minikube

    seed-job-agent-jenkins-example-758cc7cc5c-82hbl 1/1 Running 0 21m

    Debug Jenkins Operator

    make run OPERATOR_EXTRA_ARGS="--debug"
    +

    Stop or delete minikube cluster

    + +

    To stop Kubernetes cluster running locally on minikube:

    +
    minikube stop
    +

    To delete the cluster altogether:

    +
    minikube delete

    Build and run with a remote Kubernetes cluster

    You can also run the controller locally and make it listen to a remote Kubernetes server.

    @@ -1038,6 +1045,8 @@

    Self-learning

  • Operator Framework Training By OpenShift

  • + +
  • Operator SDK Tutorial for Go

  • @@ -1204,7 +1213,7 @@
    -
    Last modified June 10, 2021 +
    Last modified July 30, 2021
    diff --git a/docs/docs/developer-guide/index.xml b/docs/docs/developer-guide/index.xml index b74e891c4..e3f7f7e43 100644 --- a/docs/docs/developer-guide/index.xml +++ b/docs/docs/developer-guide/index.xml @@ -4,7 +4,7 @@ https://jenkinsci.github.io/kubernetes-operator/docs/developer-guide/ Recent Hugo news from gohugo.io Hugo -- gohugo.io - Thu, 10 Jun 2021 00:00:00 +0000 + Fri, 30 Jul 2021 00:00:00 +0000 https://jenkinsci.github.io/kubernetes-operator/img/hugo.png GoHugo.io diff --git a/docs/docs/getting-started/latest/configuration/index.html b/docs/docs/getting-started/latest/configuration/index.html index 76ca01853..7c32819ef 100644 --- a/docs/docs/getting-started/latest/configuration/index.html +++ b/docs/docs/getting-started/latest/configuration/index.html @@ -969,7 +969,7 @@

    Configure SSH authentication

    targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: ssh://git@github.com:jenkinsci/kubernetes-operator.git + repositoryUrl: git@github.com:jenkinsci/kubernetes-operator.git

    and create a Kubernetes Secret (name of secret should be the same from credentialID field):

    apiVersion: v1
     kind: Secret
    diff --git a/docs/docs/getting-started/latest/customization/index.html b/docs/docs/getting-started/latest/customization/index.html
    index fe753ac72..0c25e573e 100644
    --- a/docs/docs/getting-started/latest/customization/index.html
    +++ b/docs/docs/getting-started/latest/customization/index.html
    @@ -32,7 +32,7 @@
     ">
     
     
    -
    +
     
     
     
    @@ -840,14 +840,17 @@ 

    How to customize Jenkins

    Plugin’s configuration is applied as groovy scripts or the configuration as code plugin. Any plugin working for Jenkins can be installed by the Jenkins Operator.

    -

    Pre-installed plugins: -* configuration-as-code v1.47 -* git v4.5.0 -* job-dsl v1.77 -* kubernetes-credentials-provider v0.15 -* kubernetes v1.29.0 -* workflow-aggregator v2.6 -* workflow-job v2.40

    +

    Pre-installed plugins:

    + +
      +
    • configuration-as-code v1.51
    • +
    • git v4.7.2
    • +
    • job-dsl v1.77
    • +
    • kubernetes-credentials-provider v0.18-1
    • +
    • kubernetes v1.30.0
    • +
    • workflow-aggregator v2.6
    • +
    • workflow-job v2.41
    • +

    Rest of the plugins can be found in plugins repository.

    @@ -872,19 +875,19 @@

    Install plugins

    master: basePlugins: - name: kubernetes - version: "1.28.6" + version: "1.30.0" - name: workflow-job version: "2.40" - name: workflow-aggregator version: "2.6" - name: git - version: "4.5.0" + version: "4.7.2" - name: job-dsl version: "1.77" - name: configuration-as-code - version: "1.46" + version: "1.51" - name: kubernetes-credentials-provider - version: "0.15"
    + version: "0.18-1"

    You can change their versions.

    The Jenkins Operator will then automatically install plugins after the Jenkins master pod restart.

    diff --git a/docs/docs/getting-started/latest/index.html b/docs/docs/getting-started/latest/index.html index 1313be6dc..f4c052fe0 100644 --- a/docs/docs/getting-started/latest/index.html +++ b/docs/docs/getting-started/latest/index.html @@ -822,6 +822,8 @@

    First Steps


    + +
    Deploy Jenkins @@ -844,8 +846,6 @@
    - -
    Configuration diff --git a/docs/docs/getting-started/latest/index.xml b/docs/docs/getting-started/latest/index.xml index 5d3564a08..d6501db16 100644 --- a/docs/docs/getting-started/latest/index.xml +++ b/docs/docs/getting-started/latest/index.xml @@ -240,7 +240,7 @@ spec: targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: ssh://git@github.com:jenkinsci/kubernetes-operator.git</code></pre> + repositoryUrl: git@github.com:jenkinsci/kubernetes-operator.git</code></pre> <p>and create a Kubernetes Secret (name of secret should be the same from <code>credentialID</code> field):</p> <pre><code>apiVersion: v1 kind: Secret @@ -403,14 +403,17 @@ stringData: Plugin&rsquo;s configuration is applied as groovy scripts or the <a href="https://github.com/jenkinsci/configuration-as-code-plugin">configuration as code plugin</a>. Any plugin working for Jenkins can be installed by the Jenkins Operator.</p> -<p>Pre-installed plugins: -* configuration-as-code v1.47 -* git v4.5.0 -* job-dsl v1.77 -* kubernetes-credentials-provider v0.15 -* kubernetes v1.29.0 -* workflow-aggregator v2.6 -* workflow-job v2.40</p> +<p>Pre-installed plugins:</p> + +<ul> +<li>configuration-as-code v1.51</li> +<li>git v4.7.2</li> +<li>job-dsl v1.77</li> +<li>kubernetes-credentials-provider v0.18-1</li> +<li>kubernetes v1.30.0</li> +<li>workflow-aggregator v2.6</li> +<li>workflow-job v2.41</li> +</ul> <p>Rest of the plugins can be found in <a href="https://plugins.jenkins.io/">plugins repository</a>.</p> @@ -435,19 +438,19 @@ Any plugin working for Jenkins can be installed by the Jenkins Operator.</p&g </span><span style="color:#f8f8f8;text-decoration:underline"> </span>master<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>basePlugins<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>kubernetes<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.28.6&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.30.0&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>workflow-job<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;2.40&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>workflow-aggregator<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;2.6&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>git<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;4.5.0&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;4.7.2&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>job-dsl<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.77&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>configuration-as-code<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.46&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.51&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>kubernetes-credentials-provider<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;0.15&#34;</span></code></pre></div> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;0.18-1&#34;</span></code></pre></div> <p>You can change their versions.</p> <p>The <strong>Jenkins Operator</strong> will then automatically install plugins after the Jenkins master pod restart.</p> diff --git a/docs/docs/getting-started/v0.5.x/index.html b/docs/docs/getting-started/v0.5.x/index.html index 1d17315c5..bed9ab636 100644 --- a/docs/docs/getting-started/v0.5.x/index.html +++ b/docs/docs/getting-started/v0.5.x/index.html @@ -824,6 +824,8 @@

    First Steps

    + +
    Deploy Jenkins @@ -846,8 +848,6 @@
    - -
    Configuration diff --git a/docs/docs/index.html b/docs/docs/index.html index 001c8b57a..c8d69c8ed 100644 --- a/docs/docs/index.html +++ b/docs/docs/index.html @@ -789,10 +789,6 @@

    Documentation


    - - - -
    Installation @@ -832,6 +828,10 @@
    + + + + diff --git a/docs/docs/index.xml b/docs/docs/index.xml index 6024f26d8..77dc07336 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -651,7 +651,7 @@ spec: targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: ssh://git@github.com:jenkinsci/kubernetes-operator.git</code></pre> + repositoryUrl: git@github.com:jenkinsci/kubernetes-operator.git</code></pre> <p>and create a Kubernetes Secret (name of secret should be the same from <code>credentialID</code> field):</p> <pre><code>apiVersion: v1 kind: Secret @@ -2167,14 +2167,17 @@ stringData: Plugin&rsquo;s configuration is applied as groovy scripts or the <a href="https://github.com/jenkinsci/configuration-as-code-plugin">configuration as code plugin</a>. Any plugin working for Jenkins can be installed by the Jenkins Operator.</p> -<p>Pre-installed plugins: -* configuration-as-code v1.47 -* git v4.5.0 -* job-dsl v1.77 -* kubernetes-credentials-provider v0.15 -* kubernetes v1.29.0 -* workflow-aggregator v2.6 -* workflow-job v2.40</p> +<p>Pre-installed plugins:</p> + +<ul> +<li>configuration-as-code v1.51</li> +<li>git v4.7.2</li> +<li>job-dsl v1.77</li> +<li>kubernetes-credentials-provider v0.18-1</li> +<li>kubernetes v1.30.0</li> +<li>workflow-aggregator v2.6</li> +<li>workflow-job v2.41</li> +</ul> <p>Rest of the plugins can be found in <a href="https://plugins.jenkins.io/">plugins repository</a>.</p> @@ -2199,19 +2202,19 @@ Any plugin working for Jenkins can be installed by the Jenkins Operator.</p&g </span><span style="color:#f8f8f8;text-decoration:underline"> </span>master<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>basePlugins<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>kubernetes<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.28.6&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.30.0&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>workflow-job<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;2.40&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>workflow-aggregator<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;2.6&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>git<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;4.5.0&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;4.7.2&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>job-dsl<span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.77&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>configuration-as-code<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.46&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;1.51&#34;</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#f8f8f8;text-decoration:underline"> </span>-<span style="color:#f8f8f8;text-decoration:underline"> </span>name<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>kubernetes-credentials-provider<span style="color:#f8f8f8;text-decoration:underline"> -</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;0.15&#34;</span></code></pre></div> +</span><span style="color:#f8f8f8;text-decoration:underline"> </span>version<span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#4e9a06">&#34;0.18-1&#34;</span></code></pre></div> <p>You can change their versions.</p> <p>The <strong>Jenkins Operator</strong> will then automatically install plugins after the Jenkins master pod restart.</p> diff --git a/docs/docs/installation/index.html b/docs/docs/installation/index.html index eb6372364..4aa60183a 100644 --- a/docs/docs/installation/index.html +++ b/docs/docs/installation/index.html @@ -26,7 +26,7 @@ " /> - + @@ -766,6 +766,8 @@ +
  • Note on Operator’s nightly built images
  • +
  • Note on Jenkins home Volume
  • @@ -808,18 +810,21 @@

    Installation

    This document describes installation procedure for Jenkins Operator. -All container images can be found at virtuslab/jenkins-operator

    +All container images can be found at virtuslab/jenkins-operator Docker Hub repository.

    Requirements

    -

    To run Jenkins Operator, you will need: -- access to a Kubernetes cluster version 1.17+ -- kubectl version 1.17+

    +

    To run Jenkins Operator, you will need:

    -

    Listed below are the two ways to deploy Jenkins Operator. For details on how to customize your Jenkins instance, refer to Getting Started

    +
      +
    • access to a Kubernetes cluster version 1.17+
    • +
    • kubectl version 1.17+
    • +
    + +

    Listed below are the two ways to deploy Jenkins Operator. For details on how to customize your Jenkins instance, refer to Getting Started.

    Deploy Jenkins Operator using YAML’s

    @@ -1649,6 +1654,18 @@

    Configuring operator deployment

    +

    Note on Operator’s nightly built images

    + +

    If you wish to use the newest, not yet released version of the Operator, you can use one of nightly built snapshot images, however the maintainers of this project cannot guarantee their stability.

    + +

    You can find nightly built images by heading to virtuslab/jenkins-operator Docker Hub repository and looking for images with tag in the form of “{git-hash}”, {git-hash} being the hash of master branch commit that you want to use snapshot of.

    + +

    Note on Jenkins home Volume

    + +

    Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. One of the key points of this design is maintaining an immutable state of Jenkins.

    + +

    One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume as Jenkins home directory. It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, as attempting to do so will result in Operator error.

    +
    @@ -1805,7 +1822,7 @@

    Configuring operator deployment

    -
    Last modified October 5, 2020 +
    Last modified July 30, 2021
    diff --git a/docs/docs/installation/index.xml b/docs/docs/installation/index.xml index 9bc06edf8..37e38d051 100644 --- a/docs/docs/installation/index.xml +++ b/docs/docs/installation/index.xml @@ -4,7 +4,7 @@ https://jenkinsci.github.io/kubernetes-operator/docs/installation/ Recent Hugo news from gohugo.io Hugo -- gohugo.io - Mon, 05 Oct 2020 00:00:00 +0000 + Fri, 30 Jul 2021 00:00:00 +0000 https://jenkinsci.github.io/kubernetes-operator/img/hugo.png GoHugo.io diff --git a/docs/sitemap.xml b/docs/sitemap.xml index efa05ade3..b751f91fc 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -3,18 +3,18 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml"> - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/deploy-jenkins/ - 2021-01-25T00:00:00+00:00 + https://jenkinsci.github.io/kubernetes-operator/docs/installation/ + 2021-07-30T00:00:00+00:00 - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.5.x/deploy-jenkins/ + https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/deploy-jenkins/ 2021-01-25T00:00:00+00:00 - https://jenkinsci.github.io/kubernetes-operator/docs/installation/ - 2020-10-05T00:00:00+00:00 + https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.5.x/deploy-jenkins/ + 2021-01-25T00:00:00+00:00 @@ -369,7 +369,7 @@ https://jenkinsci.github.io/kubernetes-operator/docs/developer-guide/ - 2021-06-10T00:00:00+00:00 + 2021-07-30T00:00:00+00:00 diff --git a/website/package-lock.json b/website/package-lock.json index 57c68fa43..fabb2bfa4 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -330,9 +330,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001245", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001245.tgz", - "integrity": "sha512-768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA==", + "version": "1.0.30001248", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001248.tgz", + "integrity": "sha512-NwlQbJkxUFJ8nMErnGtT0QTM2TJ33xgz4KXJSMIrjXIbDVdaYueGyjOrLKRtJC+rTiWfi6j5cnZN1NBiSBJGNw==", "dev": true }, "chalk": { @@ -568,9 +568,9 @@ } }, "electron-to-chromium": { - "version": "1.3.780", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.780.tgz", - "integrity": "sha512-2KQ9OYm9WMUNpAPA/4aerURl3hwRc9tNlpsiEj3Y8Gf7LVf26NzyLIX2v0hSagQwrS9+cWab+28A2GPKDoVNRA==", + "version": "1.3.792", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.792.tgz", + "integrity": "sha512-RM2O2xrNarM7Cs+XF/OE2qX/aBROyOZqqgP+8FXMXSuWuUqCfUUzg7NytQrzZU3aSqk1Qq6zqnVkJsbfMkIatg==", "dev": true }, "end-of-stream": { From 37d0eac4e394d314bef2666aee850ed85b8312d8 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Wed, 4 Aug 2021 16:06:14 +0530 Subject: [PATCH 13/26] Reimplemented the validation logic with caching the security warnings - Reimplemented the validator interface - Updated manifests to allocate more resources --- Dockerfile | 2 +- api/v1alpha2/jenkins_webhook.go | 268 ++++++++++++------ .../samples/jenkins.io_v1alpha2_jenkins.yaml | 71 ++++- main.go | 3 + webhook/all_in_one_v1alpha2.yaml | 9 +- webhook/operator.yaml | 12 +- webhook/webhook.yaml | 2 +- 7 files changed, 274 insertions(+), 93 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff840ea45..caaced1d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ COPY internal/ internal/ COPY pkg/ pkg/ COPY version/ version/ COPY main.go main.go +RUN mkdir plugins/ # Build RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -ldflags "-w $CTIMEVAR" -o manager main.go @@ -29,5 +30,4 @@ FROM gcr.io/distroless/static:nonroot WORKDIR / COPY --from=builder /workspace/manager . USER 65532:65532 - ENTRYPOINT ["/manager"] diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 494fdb802..97af23c99 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -5,7 +5,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/lictenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -17,10 +17,13 @@ limitations under the License. package v1alpha2 import ( + "compress/gzip" "encoding/json" "errors" + "io" "io/ioutil" "net/http" + "os" "time" "github.com/jenkinsci/kubernetes-operator/pkg/plugins" @@ -32,8 +35,16 @@ import ( "sigs.k8s.io/controller-runtime/pkg/webhook" ) -// log is for logging in this package. -var jenkinslog = logf.Log.WithName("jenkins-resource") +var ( + jenkinslog = logf.Log.WithName("jenkins-resource") // log is for logging in this package. + isRetrieved bool = false // For checking whether the data file is downloaded and extracted or not +) + +const ( + hosturl string = "https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip" // Url for downloading the plugins file + compressedFile string = "/tmp/plugins.json.gzip" // location where the gzip file will be downloaded + pluginDataFile string = "/tmp/plugins.json" // location where the file will be extracted +) func (in *Jenkins) SetupWebhookWithManager(mgr ctrl.Manager) error { return ctrl.NewWebhookManagedBy(mgr). @@ -72,8 +83,13 @@ func (in *Jenkins) ValidateDelete() error { return nil } -type Warnings struct { - Warnings []Warning `json:"securityWarnings"` +type PluginsInfo struct { + Plugins []PluginInfo `json:"plugins"` +} + +type PluginInfo struct { + Name string `json:"name"` + SecurityWarnings []Warning `json:"securityWarnings"` } type Warning struct { @@ -83,109 +99,203 @@ type Warning struct { URL string `json:"url"` Active bool `json:"active"` } + type Version struct { FirstVersion string `json:"firstVersion"` LastVersion string `json:"lastVersion"` } -const APIURL string = "https://plugins.jenkins.io/api/plugin/" - -func MakeSemanticVersion(version string) string { - version = "v" + version - return semver.Canonical(version) +type PluginData struct { + Version string + Kind string } -func CompareVersions(firstVersion string, lastVersion string, pluginVersion string) bool { - firstSemVer := MakeSemanticVersion(firstVersion) - lastSemVer := MakeSemanticVersion(lastVersion) - pluginSemVer := MakeSemanticVersion(pluginVersion) - if semver.Compare(pluginSemVer, firstSemVer) == -1 || semver.Compare(pluginSemVer, lastSemVer) == 1 { - return false - } - return true -} +// Validates security warnings for both updating and creating a Jenkins CR +func Validate(r Jenkins) error { -func CheckSecurityWarnings(pluginName string, pluginVersion string) (bool, error) { - jenkinslog.Info("checking security warnings", "plugin: ", pluginName) - pluginURL := APIURL + pluginName - client := &http.Client{ - Timeout: time.Second * 30, - } - request, err := http.NewRequest("GET", pluginURL, nil) - if err != nil { - return false, err - } - request.Header.Add("Accept", "application/json") - request.Header.Add("Content-Type", "application/json") - response, err := client.Do(request) - if err != nil { - return false, err - } - defer response.Body.Close() - bodyBytes, err := ioutil.ReadAll(response.Body) + pluginset := make(map[string]PluginData) + var warningmsg string + basePlugins := plugins.BasePlugins() + temp, err := NewPluginsInfo() + AllPluginData := *temp if err != nil { - return false, err + return err } - securityWarnings := Warnings{} - jsonErr := json.Unmarshal(bodyBytes, &securityWarnings) - if jsonErr != nil { - return false, err + for _, plugin := range basePlugins { + // Only Update the map if the plugin is not present or a lower version is being used + if pluginData, ispresent := pluginset[plugin.Name]; !ispresent || semver.Compare(MakeSemanticVersion(plugin.Version), pluginData.Version) == 1 { + jenkinslog.Info("Validate", plugin.Name, plugin.Version) + pluginset[plugin.Name] = PluginData{Version: plugin.Version, Kind: "base"} + } } - jenkinslog.Info("Validate()", "warnings", securityWarnings) + for _, plugin := range r.Spec.Master.Plugins { + if pluginData, ispresent := pluginset[plugin.Name]; !ispresent || semver.Compare(MakeSemanticVersion(plugin.Version), pluginData.Version) == 1 { + jenkinslog.Info("Validate", plugin.Name, plugin.Version) + pluginset[plugin.Name] = PluginData{Version: plugin.Version, Kind: "user-defined"} + } + } - for _, warning := range securityWarnings.Warnings { - for _, version := range warning.Versions { - firstVersion := version.FirstVersion - lastVersion := version.LastVersion - if len(firstVersion) == 0 { - firstVersion = "0" // setting default value in case of empty string - } - if len(lastVersion) == 0 { - lastVersion = pluginVersion // setting default value in case of empty string + jenkinslog.Info("Checking through all the warnings") + for _, plugin := range AllPluginData.Plugins { + + if pluginData, ispresent := pluginset[plugin.Name]; ispresent { + jenkinslog.Info("Checking for plugin", "name", plugin.Name) + for _, warning := range plugin.SecurityWarnings { + for _, version := range warning.Versions { + firstVersion := version.FirstVersion + lastVersion := version.LastVersion + if len(firstVersion) == 0 { + firstVersion = "0" // setting default value in case of empty string + } + if len(lastVersion) == 0 { + lastVersion = pluginData.Version // setting default value in case of empty string + } + + if CompareVersions(firstVersion, lastVersion, pluginData.Version) { + jenkinslog.Info("security Vulnerabilities detected", "message", warning.Message, "Check security Advisory", warning.URL) + warningmsg += "Security Vulnerabilities detected in " + pluginData.Kind + " plugin " + plugin.Name + "\n" + + } + + } } - if CompareVersions(firstVersion, lastVersion, pluginVersion) { - jenkinslog.Info("security Vulnerabilities detected", "message", warning.Message, "Check security Advisory", warning.URL) - return true, nil - } } + } - return false, nil -} + if len(warningmsg) > 0 { + return errors.New(warningmsg) + } -func Validate(r Jenkins) error { - basePlugins := plugins.BasePlugins() - var warnings string = "" + return nil - for _, plugin := range basePlugins { - name := plugin.Name - version := plugin.Version - hasWarnings, err := CheckSecurityWarnings(name, version) - if err != nil { - return err - } - if hasWarnings { - warnings += "Security Vulnerabilities detected in base plugin:" + name +} + +// Returns an object containing information of all the plugins present in the security center +func NewPluginsInfo() (*PluginsInfo, error) { + var AllPluginData PluginsInfo + for i := 0; i < 28; i++ { + if isRetrieved { + break } + time.Sleep(1 * time.Second) + } + if !isRetrieved { + jenkinslog.Info("Plugins Data file hasn't been downloaded and extracted") + return &AllPluginData, errors.New("plugins data file not found") } - for _, plugin := range r.Spec.Master.Plugins { - name := plugin.Name - version := plugin.Version - hasWarnings, err := CheckSecurityWarnings(name, version) + jsonFile, err := os.Open(pluginDataFile) + if err != nil { + jenkinslog.Info("Failed to open the Plugins Data File") + return &AllPluginData, err + } + defer jsonFile.Close() + + byteValue, err := ioutil.ReadAll(jsonFile) + if err != nil { + jenkinslog.Info("Failed to convert the JSON file into a byte array") + return &AllPluginData, err + } + err = json.Unmarshal(byteValue, &AllPluginData) + if err != nil { + jenkinslog.Info("Failed to decode the Plugin JSON data file") + return &AllPluginData, err + } + + return &AllPluginData, nil +} + +// Downloads and extracts the JSON file in every 12 hours +func RetrieveDataFile() { + for { + jenkinslog.Info("Retreiving file", "Host Url", hosturl) + err := Download() if err != nil { - return err + jenkinslog.Info("Retrieving File", "Error while downloading", err) + continue } - if hasWarnings { - warnings += "Security Vulnerabilities detected in the user defined plugin: " + name + + jenkinslog.Info("Retrieve File", "Successfully downloaded", compressedFile) + err = Extract() + if err != nil { + jenkinslog.Info("Retreive File", "Error while extracting", err) + continue } + jenkinslog.Info("Retreive File", "Successfully extracted", pluginDataFile) + isRetrieved = true + time.Sleep(12 * time.Hour) + } - if len(warnings) > 0 { - return errors.New(warnings) +} + +func Download() error { + + out, err := os.Create(compressedFile) + if err != nil { + return err + } + defer out.Close() + + client := http.Client{ + Timeout: 2000 * time.Second, + } + + resp, err := client.Get(hosturl) + if err != nil { + return err + } + defer resp.Body.Close() + jenkinslog.Info("Successfully Downloaded") + _, err = io.Copy(out, resp.Body) + if err != nil { + return err } return nil + +} + +func Extract() error { + reader, err := os.Open(compressedFile) + + if err != nil { + return err + } + defer reader.Close() + archive, err := gzip.NewReader(reader) + if err != nil { + return err + } + + defer archive.Close() + writer, err := os.Create(pluginDataFile) + if err != nil { + return err + } + defer writer.Close() + + _, err = io.Copy(writer, archive) + return err + +} + +// returns a semantic version that can be used for comparision +func MakeSemanticVersion(version string) string { + version = "v" + version + return semver.Canonical(version) +} + +// Compare if the current version lies between first version and last version +func CompareVersions(firstVersion string, lastVersion string, pluginVersion string) bool { + firstSemVer := MakeSemanticVersion(firstVersion) + lastSemVer := MakeSemanticVersion(lastVersion) + pluginSemVer := MakeSemanticVersion(pluginVersion) + if semver.Compare(pluginSemVer, firstSemVer) == -1 || semver.Compare(pluginSemVer, lastSemVer) == 1 { + return false + } + return true } diff --git a/config/samples/jenkins.io_v1alpha2_jenkins.yaml b/config/samples/jenkins.io_v1alpha2_jenkins.yaml index b451d5dab..be33732a9 100644 --- a/config/samples/jenkins.io_v1alpha2_jenkins.yaml +++ b/config/samples/jenkins.io_v1alpha2_jenkins.yaml @@ -1,8 +1,8 @@ apiVersion: jenkins.io/v1alpha2 kind: Jenkins metadata: - name: example - namespace: default + name: example-8 + namespace: default spec: configurationAsCode: configurations: [] @@ -14,6 +14,7 @@ spec: name: "" jenkinsAPISettings: authorizationStrategy: createUser + ValidateSecurityWarnings: true master: disableCSRFProtection: false containers: @@ -47,6 +48,72 @@ spec: requests: cpu: "1" memory: 500Mi + plugins: + - name: mailer + version: "1.19" + - name: script-security + version: "1.18" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: google-login + version: "1.2" + - name: credentials + version: "2.1" + - name: ssh-credentials + version: "1.1" + - name: junit + version: "1.2" + - name: matrix-project + version: "1.1" + - name: git-client + version: "2.8.4" + - name: pipeline-model-definition + version: "1.3.0" + - name: favorite + version: "2" + - name: workflow-cps + version: "2" + seedJobs: - id: jenkins-operator targets: "cicd/jobs/*.jenkins" diff --git a/main.go b/main.go index 8bc382ead..3cd399f6a 100644 --- a/main.go +++ b/main.go @@ -95,6 +95,9 @@ func main() { opts := zap.Options{ Development: true, } + + go v1alpha2.RetrieveDataFile() + opts.BindFlags(flag.CommandLine) flag.Parse() diff --git a/webhook/all_in_one_v1alpha2.yaml b/webhook/all_in_one_v1alpha2.yaml index e53fc659f..0d878dd2d 100644 --- a/webhook/all_in_one_v1alpha2.yaml +++ b/webhook/all_in_one_v1alpha2.yaml @@ -222,6 +222,7 @@ subjects: - kind: ServiceAccount name: jenkins-operator --- +--- apiVersion: apps/v1 kind: Deployment metadata: @@ -246,7 +247,7 @@ spec: - /manager args: - --leader-elect - image: jenkins-operator:6f33fe82-dirty + image: jenkins-operator:52fe5fe9-dirty name: jenkins-operator imagePullPolicy: IfNotPresent securityContext: @@ -278,12 +279,12 @@ spec: volumeMounts: - mountPath: /tmp/k8s-webhook-server/serving-certs name: cert - readOnly: true + readOnly: false volumes: - name: cert secret: defaultMode: 420 - secretName: webhook-server-cert + secretName: webhook-server-cert terminationGracePeriodSeconds: 10 --- apiVersion: cert-manager.io/v1 @@ -315,7 +316,6 @@ spec: apiVersion: admissionregistration.k8s.io/v1 kind: ValidatingWebhookConfiguration metadata: - creationTimestamp: null name: validating-webhook-configuration annotations: cert-manager.io/inject-ca-from: default/webhook-certificate @@ -330,6 +330,7 @@ webhooks: path: /validate-jenkins-io-v1alpha2-jenkins failurePolicy: Fail name: vjenkins.kb.io + timeoutSeconds: 30 rules: - apiGroups: - jenkins.io diff --git a/webhook/operator.yaml b/webhook/operator.yaml index 81cbdf98e..c056ba8e0 100644 --- a/webhook/operator.yaml +++ b/webhook/operator.yaml @@ -1,3 +1,4 @@ +--- apiVersion: apps/v1 kind: Deployment metadata: @@ -41,11 +42,11 @@ spec: periodSeconds: 10 resources: limits: - cpu: 100m - memory: 30Mi + cpu: 200m + memory: 200Mi requests: cpu: 100m - memory: 20Mi + memory: 80Mi env: - name: WATCH_NAMESPACE valueFrom: @@ -53,12 +54,11 @@ spec: fieldPath: metadata.namespace volumeMounts: - mountPath: /tmp/k8s-webhook-server/serving-certs - name: cert - readOnly: true + name: cert volumes: - name: cert secret: defaultMode: 420 - secretName: webhook-server-cert + secretName: webhook-server-cert terminationGracePeriodSeconds: 10 --- diff --git a/webhook/webhook.yaml b/webhook/webhook.yaml index 3a86ab0b1..9cc2a2b74 100644 --- a/webhook/webhook.yaml +++ b/webhook/webhook.yaml @@ -1,7 +1,6 @@ apiVersion: admissionregistration.k8s.io/v1 kind: ValidatingWebhookConfiguration metadata: - creationTimestamp: null name: validating-webhook-configuration annotations: cert-manager.io/inject-ca-from: default/webhook-certificate @@ -16,6 +15,7 @@ webhooks: path: /validate-jenkins-io-v1alpha2-jenkins failurePolicy: Fail name: vjenkins.kb.io + timeoutSeconds: 30 rules: - apiGroups: - jenkins.io From 8453b3e9fecfa8ad7fe06732923476c424f7e8c4 Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Thu, 5 Aug 2021 17:27:19 +0200 Subject: [PATCH 14/26] Add an issue template for documentation (#613) --- .github/ISSUE_TEMPLATE/documentation.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/documentation.md diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 000000000..a0ed0b42c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,14 @@ +--- +name: "📚 Documentation issue" +about: Suggest changes to project's documentation +title: '' +labels: 'documentation' +projects: '' +assignees: '' +--- + +**Relevant links* +Link(s) to the section(s) of documentation that are outdated or otherwise wrong + +**Description** +Description of the changes you would like to see \ No newline at end of file From 858f0f4c7289bd518ac419d57116907940109429 Mon Sep 17 00:00:00 2001 From: Szymon Fugas Date: Thu, 5 Aug 2021 17:28:01 +0200 Subject: [PATCH 15/26] Docs: add info on restricted volumeMounts other than jenkins-home(#612) * Update note in installation docs * Update Helm chart default values.yaml * Update schema --- chart/jenkins-operator/values.yaml | 5 +++-- .../en/docs/Getting Started/latest/schema.md | 7 ++++++- .../content/en/docs/Installation/_index.md | 20 +++++++++++++++---- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/chart/jenkins-operator/values.yaml b/chart/jenkins-operator/values.yaml index 1c92fb900..60c992cd2 100644 --- a/chart/jenkins-operator/values.yaml +++ b/chart/jenkins-operator/values.yaml @@ -120,8 +120,9 @@ jenkins: claimName: jenkins-backup # volumeMounts are mounts for Jenkins pod - # Note that attempting to overwrite default mount settings for Jenkins home directory will result in Operator error - # See https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-jenkins-home-volume + # Note that attempting to overwrite default mount settings for restricted, + # non-configurable volumeMounts will result in Operator error + # See https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts for details volumeMounts: [] # defines authorization strategy of the operator for the Jenkins API diff --git a/website/content/en/docs/Getting Started/latest/schema.md b/website/content/en/docs/Getting Started/latest/schema.md index 2a1444c7d..58638cbd2 100644 --- a/website/content/en/docs/Getting Started/latest/schema.md +++ b/website/content/en/docs/Getting Started/latest/schema.md @@ -661,7 +661,12 @@ Values defined by an Env with a duplicate key will take precedence.

    (Optional) -

    Pod volumes to mount into the container’s filesystem.

    +

    +Pod volumes to mount into the container’s filesystem. More info: + +https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts + +

    diff --git a/website/content/en/docs/Installation/_index.md b/website/content/en/docs/Installation/_index.md index fcd6ba282..17b8df645 100644 --- a/website/content/en/docs/Installation/_index.md +++ b/website/content/en/docs/Installation/_index.md @@ -883,7 +883,19 @@ If you wish to use the newest, not yet released version of the Operator, you can You can find nightly built images by heading to [virtuslab/jenkins-operator](https://hub.docker.com/r/virtuslab/jenkins-operator) Docker Hub repository and looking for images with tag in the form of "{git-hash}", {git-hash} being the hash of master branch commit that you want to use snapshot of. -## Note on Jenkins home Volume -Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. One of the key points of this design is maintaining an immutable state of Jenkins. - -One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume as Jenkins home directory. It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, as attempting to do so will result in Operator error. \ No newline at end of file +## Note on restricted Jenkins controller pod volumeMounts +Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. +One of the key points of this design is maintaining an immutable state of Jenkins. + +One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume +(jenkins-home) as Jenkins home directory. +It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, +as attempting to do so will result in Operator error. + +jenkins-home is not the only Jenkins controller pod volumeMount that is non-configurable and managed by Operator, +below is the full list of those volumeMounts: + +* jenkins-home +* scripts +* init-configuration +* operator-credentials \ No newline at end of file From b82fc7c7640a28a6b4912b533b9534d7e81288bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Aug 2021 10:03:57 +0200 Subject: [PATCH 16/26] Auto-updated docs (#616) Co-authored-by: Sig00rd --- docs/docs/getting-started/latest/index.xml | 7 ++++- .../getting-started/latest/schema/index.html | 9 ++++-- docs/docs/index.xml | 7 ++++- docs/docs/installation/index.html | 22 +++++++++++--- website/package-lock.json | 30 +++++++++---------- 5 files changed, 52 insertions(+), 23 deletions(-) diff --git a/docs/docs/getting-started/latest/index.xml b/docs/docs/getting-started/latest/index.xml index d6501db16..0b4fccb10 100644 --- a/docs/docs/getting-started/latest/index.xml +++ b/docs/docs/getting-started/latest/index.xml @@ -1679,7 +1679,12 @@ Values defined by an Env with a duplicate key will take precedence.</p> </td> <td> <em>(Optional)</em> -<p>Pod volumes to mount into the container&rsquo;s filesystem.</p> +<p> +Pod volumes to mount into the container&rsquo;s filesystem. More info: +<a href="https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts"> +https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts +</a> +</p> </td> </tr> <tr> diff --git a/docs/docs/getting-started/latest/schema/index.html b/docs/docs/getting-started/latest/schema/index.html index 59ee07c21..f31e941da 100644 --- a/docs/docs/getting-started/latest/schema/index.html +++ b/docs/docs/getting-started/latest/schema/index.html @@ -32,7 +32,7 @@ "> - + @@ -1471,7 +1471,12 @@

    +https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts + +

    diff --git a/docs/docs/index.xml b/docs/docs/index.xml index 77dc07336..5f1c71ccd 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -6194,7 +6194,12 @@ Values defined by an Env with a duplicate key will take precedence.</p> </td> <td> <em>(Optional)</em> -<p>Pod volumes to mount into the container&rsquo;s filesystem.</p> +<p> +Pod volumes to mount into the container&rsquo;s filesystem. More info: +<a href="https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts"> +https://jenkinsci.github.io/kubernetes-operator/docs/installation/#note-on-restricted-jenkins-controller-pod-volumemounts +</a> +</p> </td> </tr> <tr> diff --git a/docs/docs/installation/index.html b/docs/docs/installation/index.html index 4aa60183a..728a3edb5 100644 --- a/docs/docs/installation/index.html +++ b/docs/docs/installation/index.html @@ -767,7 +767,7 @@
  • Configuring operator deployment
  • Note on Operator’s nightly built images
  • -
  • Note on Jenkins home Volume
  • +
  • Note on restricted Jenkins controller pod volumeMounts
  • @@ -1660,11 +1660,25 @@

    Note on Operator’s nightl

    You can find nightly built images by heading to virtuslab/jenkins-operator Docker Hub repository and looking for images with tag in the form of “{git-hash}”, {git-hash} being the hash of master branch commit that you want to use snapshot of.

    -

    Note on Jenkins home Volume

    +

    Note on restricted Jenkins controller pod volumeMounts

    -

    Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. One of the key points of this design is maintaining an immutable state of Jenkins.

    +

    Current design of the Operator puts an emphasis on creating a full GitOps flow of work for Jenkins users. +One of the key points of this design is maintaining an immutable state of Jenkins.

    -

    One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume as Jenkins home directory. It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, as attempting to do so will result in Operator error.

    +

    One of the prerequisites of this is an ephemeral Jenkins home directory. To achieve that, Operator mounts emptyDir Volume +(jenkins-home) as Jenkins home directory. +It is not possible to overwrite volumeMount and specify any other Volume for Jenkins home directory, +as attempting to do so will result in Operator error.

    + +

    jenkins-home is not the only Jenkins controller pod volumeMount that is non-configurable and managed by Operator, +below is the full list of those volumeMounts:

    + +
      +
    • jenkins-home
    • +
    • scripts
    • +
    • init-configuration
    • +
    • operator-credentials
    • +
    diff --git a/website/package-lock.json b/website/package-lock.json index fabb2bfa4..196e451f1 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -288,16 +288,16 @@ } }, "browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "version": "4.16.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz", + "integrity": "sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001219", + "caniuse-lite": "^1.0.30001248", "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", + "electron-to-chromium": "^1.3.793", "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "node-releases": "^1.1.73" } }, "cache-base": { @@ -330,9 +330,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001248", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001248.tgz", - "integrity": "sha512-NwlQbJkxUFJ8nMErnGtT0QTM2TJ33xgz4KXJSMIrjXIbDVdaYueGyjOrLKRtJC+rTiWfi6j5cnZN1NBiSBJGNw==", + "version": "1.0.30001249", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001249.tgz", + "integrity": "sha512-vcX4U8lwVXPdqzPWi6cAJ3FnQaqXbBqy/GZseKNQzRj37J7qZdGcBtxq/QLFNLLlfsoXLUdHw8Iwenri86Tagw==", "dev": true }, "chalk": { @@ -568,9 +568,9 @@ } }, "electron-to-chromium": { - "version": "1.3.792", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.792.tgz", - "integrity": "sha512-RM2O2xrNarM7Cs+XF/OE2qX/aBROyOZqqgP+8FXMXSuWuUqCfUUzg7NytQrzZU3aSqk1Qq6zqnVkJsbfMkIatg==", + "version": "1.3.796", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.796.tgz", + "integrity": "sha512-agwJFgM0FUC1UPPbQ4aII3HamaaJ09fqWGAWYHmzxDWqdmTleCHyyA0kt3fJlTd5M440IaeuBfzXzXzCotnZcQ==", "dev": true }, "end-of-stream": { @@ -1338,9 +1338,9 @@ "dev": true }, "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", "dev": true, "optional": true }, From b400a420e55209fcb9ee14f7cc85121737cd10d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Aug 2021 13:06:12 +0200 Subject: [PATCH 17/26] Auto-updated docs (#617) Co-authored-by: Sig00rd --- website/package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/package-lock.json b/website/package-lock.json index 196e451f1..334ea961a 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -568,9 +568,9 @@ } }, "electron-to-chromium": { - "version": "1.3.796", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.796.tgz", - "integrity": "sha512-agwJFgM0FUC1UPPbQ4aII3HamaaJ09fqWGAWYHmzxDWqdmTleCHyyA0kt3fJlTd5M440IaeuBfzXzXzCotnZcQ==", + "version": "1.3.798", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.798.tgz", + "integrity": "sha512-fwsr6oXAORoV9a6Ak2vMCdXfmHIpAGgpOGesulS1cbGgJmrMl3H+GicUyRG3t+z9uHTMrIuMTleFDW+EUFYT3g==", "dev": true }, "end-of-stream": { @@ -925,9 +925,9 @@ } }, "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", "dev": true }, "has-flag": { From 1d2651d43fb1616aa49611554fd678c4888b9bd5 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Fri, 6 Aug 2021 19:01:27 +0530 Subject: [PATCH 18/26] Updated Validation logic - Defined a security manager struct to cache all the plugin data - Added flag to make validating security warnings optional while deploying the operator --- api/v1alpha2/jenkins_webhook.go | 197 ++++++++++-------- .../samples/jenkins.io_v1alpha2_jenkins.yaml | 74 +------ main.go | 14 +- webhook/all_in_one_v1alpha2.yaml | 11 +- webhook/operator.yaml | 1 + 5 files changed, 129 insertions(+), 168 deletions(-) diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 97af23c99..56750fc28 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -36,14 +36,9 @@ import ( ) var ( - jenkinslog = logf.Log.WithName("jenkins-resource") // log is for logging in this package. - isRetrieved bool = false // For checking whether the data file is downloaded and extracted or not -) - -const ( - hosturl string = "https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip" // Url for downloading the plugins file - compressedFile string = "/tmp/plugins.json.gzip" // location where the gzip file will be downloaded - pluginDataFile string = "/tmp/plugins.json" // location where the file will be extracted + jenkinslog = logf.Log.WithName("jenkins-resource") // log is for logging in this package. + PluginsDataManager PluginDataManager = *NewPluginsDataManager() + _ webhook.Validator = &Jenkins{} ) func (in *Jenkins) SetupWebhookWithManager(mgr ctrl.Manager) error { @@ -57,8 +52,6 @@ func (in *Jenkins) SetupWebhookWithManager(mgr ctrl.Manager) error { // TODO(user): change verbs to "verbs=create;update;delete" if you want to enable deletion validation. // +kubebuilder:webhook:path=/validate-jenkins-io-jenkins-io-v1alpha2-jenkins,mutating=false,failurePolicy=fail,sideEffects=None,groups=jenkins.io.jenkins.io,resources=jenkins,verbs=create;update,versions=v1alpha2,name=vjenkins.kb.io,admissionReviewVersions={v1,v1beta1} -var _ webhook.Validator = &Jenkins{} - // ValidateCreate implements webhook.Validator so a webhook will be registered for the type func (in *Jenkins) ValidateCreate() error { if in.Spec.ValidateSecurityWarnings { @@ -83,6 +76,15 @@ func (in *Jenkins) ValidateDelete() error { return nil } +type PluginDataManager struct { + pluginDataCache PluginsInfo + hosturl string + compressedFilePath string + pluginDataFile string + iscached bool + maxattempts int +} + type PluginsInfo struct { Plugins []PluginInfo `json:"plugins"` } @@ -112,36 +114,27 @@ type PluginData struct { // Validates security warnings for both updating and creating a Jenkins CR func Validate(r Jenkins) error { - pluginset := make(map[string]PluginData) - var warningmsg string + var faultybaseplugins string + var faultyuserplugins string basePlugins := plugins.BasePlugins() - temp, err := NewPluginsInfo() - AllPluginData := *temp - if err != nil { - return err - } for _, plugin := range basePlugins { // Only Update the map if the plugin is not present or a lower version is being used if pluginData, ispresent := pluginset[plugin.Name]; !ispresent || semver.Compare(MakeSemanticVersion(plugin.Version), pluginData.Version) == 1 { - jenkinslog.Info("Validate", plugin.Name, plugin.Version) pluginset[plugin.Name] = PluginData{Version: plugin.Version, Kind: "base"} } } for _, plugin := range r.Spec.Master.Plugins { if pluginData, ispresent := pluginset[plugin.Name]; !ispresent || semver.Compare(MakeSemanticVersion(plugin.Version), pluginData.Version) == 1 { - jenkinslog.Info("Validate", plugin.Name, plugin.Version) pluginset[plugin.Name] = PluginData{Version: plugin.Version, Kind: "user-defined"} } } - jenkinslog.Info("Checking through all the warnings") - for _, plugin := range AllPluginData.Plugins { - + for _, plugin := range PluginsDataManager.pluginDataCache.Plugins { if pluginData, ispresent := pluginset[plugin.Name]; ispresent { - jenkinslog.Info("Checking for plugin", "name", plugin.Name) + var hasvulnerabilities bool for _, warning := range plugin.SecurityWarnings { for _, version := range warning.Versions { firstVersion := version.FirstVersion @@ -154,113 +147,121 @@ func Validate(r Jenkins) error { } if CompareVersions(firstVersion, lastVersion, pluginData.Version) { - jenkinslog.Info("security Vulnerabilities detected", "message", warning.Message, "Check security Advisory", warning.URL) - warningmsg += "Security Vulnerabilities detected in " + pluginData.Kind + " plugin " + plugin.Name + "\n" - + jenkinslog.Info("Security Vulnerability detected in "+pluginData.Kind+" "+plugin.Name+":"+pluginData.Version, "Warning message", warning.Message, "For more details,check security advisory", warning.URL) + hasvulnerabilities = true } - } } + if hasvulnerabilities { + if pluginData.Kind == "base" { + faultybaseplugins += plugin.Name + ":" + pluginData.Version + "\n" + } else { + faultyuserplugins += plugin.Name + ":" + pluginData.Version + "\n" + } + } } - } - - if len(warningmsg) > 0 { - return errors.New(warningmsg) + if len(faultybaseplugins) > 0 || len(faultyuserplugins) > 0 { + var errormsg string + if len(faultybaseplugins) > 0 { + errormsg += "Security vulnerabilities detected in the following base plugins: \n" + faultybaseplugins + } + if len(faultyuserplugins) > 0 { + errormsg += "Security vulnerabilities detected in the following user-defined plugins: \n" + faultyuserplugins + } + return errors.New(errormsg) } return nil - } -// Returns an object containing information of all the plugins present in the security center -func NewPluginsInfo() (*PluginsInfo, error) { - var AllPluginData PluginsInfo - for i := 0; i < 28; i++ { - if isRetrieved { - break - } - time.Sleep(1 * time.Second) - } - if !isRetrieved { - jenkinslog.Info("Plugins Data file hasn't been downloaded and extracted") - return &AllPluginData, errors.New("plugins data file not found") +func NewPluginsDataManager() *PluginDataManager { + return &PluginDataManager{ + hosturl: "https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip", + compressedFilePath: "/tmp/plugins.json.gzip", + pluginDataFile: "/tmp/plugins.json", + iscached: false, + maxattempts: 5, } +} - jsonFile, err := os.Open(pluginDataFile) - if err != nil { - jenkinslog.Info("Failed to open the Plugins Data File") - return &AllPluginData, err - } - defer jsonFile.Close() +// Downloads extracts and caches the JSON data in every 12 hours +func (in *PluginDataManager) CachePluginData(ch chan bool) { + for { + jenkinslog.Info("Initializing/Updating the plugin data cache") + var isdownloaded, isextracted, iscached bool + var err error + for i := 0; i < in.maxattempts; i++ { + err = in.Download() + if err == nil { + isdownloaded = true + break + } + } - byteValue, err := ioutil.ReadAll(jsonFile) - if err != nil { - jenkinslog.Info("Failed to convert the JSON file into a byte array") - return &AllPluginData, err - } - err = json.Unmarshal(byteValue, &AllPluginData) - if err != nil { - jenkinslog.Info("Failed to decode the Plugin JSON data file") - return &AllPluginData, err - } + if isdownloaded { + for i := 0; i < in.maxattempts; i++ { + err = in.Extract() + if err == nil { + isextracted = true + break + } + } + } else { + jenkinslog.Info("Cache Plugin Data", "failed to download file", err) + } - return &AllPluginData, nil -} + if isextracted { + for i := 0; i < in.maxattempts; i++ { + err = in.Cache() + if err == nil { + iscached = true + break + } + } -// Downloads and extracts the JSON file in every 12 hours -func RetrieveDataFile() { - for { - jenkinslog.Info("Retreiving file", "Host Url", hosturl) - err := Download() - if err != nil { - jenkinslog.Info("Retrieving File", "Error while downloading", err) - continue + if !iscached { + jenkinslog.Info("Cache Plugin Data", "failed to read plugin data file", err) + } + } else { + jenkinslog.Info("Cache Plugin Data", "failed to extract file", err) } - jenkinslog.Info("Retrieve File", "Successfully downloaded", compressedFile) - err = Extract() - if err != nil { - jenkinslog.Info("Retreive File", "Error while extracting", err) - continue + if !in.iscached { + ch <- iscached } - jenkinslog.Info("Retreive File", "Successfully extracted", pluginDataFile) - isRetrieved = true + in.iscached = in.iscached || iscached time.Sleep(12 * time.Hour) - } } -func Download() error { - - out, err := os.Create(compressedFile) +func (in *PluginDataManager) Download() error { + out, err := os.Create(in.compressedFilePath) if err != nil { return err } defer out.Close() client := http.Client{ - Timeout: 2000 * time.Second, + Timeout: 1000 * time.Second, } - resp, err := client.Get(hosturl) + resp, err := client.Get(in.hosturl) if err != nil { return err } defer resp.Body.Close() - jenkinslog.Info("Successfully Downloaded") _, err = io.Copy(out, resp.Body) if err != nil { return err } return nil - } -func Extract() error { - reader, err := os.Open(compressedFile) +func (in *PluginDataManager) Extract() error { + reader, err := os.Open(in.compressedFilePath) if err != nil { return err @@ -272,7 +273,7 @@ func Extract() error { } defer archive.Close() - writer, err := os.Create(pluginDataFile) + writer, err := os.Create(in.pluginDataFile) if err != nil { return err } @@ -280,10 +281,28 @@ func Extract() error { _, err = io.Copy(writer, archive) return err +} +// Loads the JSON data into memory and stores it +func (in *PluginDataManager) Cache() error { + jsonFile, err := os.Open(in.pluginDataFile) + if err != nil { + return err + } + defer jsonFile.Close() + + byteValue, err := ioutil.ReadAll(jsonFile) + if err != nil { + return err + } + err = json.Unmarshal(byteValue, &in.pluginDataCache) + if err != nil { + return err + } + return nil } -// returns a semantic version that can be used for comparision +// returns a semantic version that can be used for comparison func MakeSemanticVersion(version string) string { version = "v" + version return semver.Canonical(version) diff --git a/config/samples/jenkins.io_v1alpha2_jenkins.yaml b/config/samples/jenkins.io_v1alpha2_jenkins.yaml index be33732a9..49f39c931 100644 --- a/config/samples/jenkins.io_v1alpha2_jenkins.yaml +++ b/config/samples/jenkins.io_v1alpha2_jenkins.yaml @@ -1,8 +1,9 @@ + apiVersion: jenkins.io/v1alpha2 kind: Jenkins metadata: - name: example-8 - namespace: default + name: example + namespace: default spec: configurationAsCode: configurations: [] @@ -14,7 +15,6 @@ spec: name: "" jenkinsAPISettings: authorizationStrategy: createUser - ValidateSecurityWarnings: true master: disableCSRFProtection: false containers: @@ -48,75 +48,9 @@ spec: requests: cpu: "1" memory: 500Mi - plugins: - - name: mailer - version: "1.19" - - name: script-security - version: "1.18" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: google-login - version: "1.2" - - name: credentials - version: "2.1" - - name: ssh-credentials - version: "1.1" - - name: junit - version: "1.2" - - name: matrix-project - version: "1.1" - - name: git-client - version: "2.8.4" - - name: pipeline-model-definition - version: "1.3.0" - - name: favorite - version: "2" - - name: workflow-cps - version: "2" - seedJobs: - id: jenkins-operator targets: "cicd/jobs/*.jenkins" description: "Jenkins Operator repository" repositoryBranch: master - repositoryUrl: https://github.com/jenkinsci/kubernetes-operator.git + repositoryUrl: https://github.com/jenkinsci/kubernetes-operator.git \ No newline at end of file diff --git a/main.go b/main.go index 3cd399f6a..936862f1c 100644 --- a/main.go +++ b/main.go @@ -78,6 +78,7 @@ func main() { var metricsAddr string var enableLeaderElection bool var probeAddr string + var ValidateSecurityWarnings bool isRunningInCluster, err := resources.IsRunningInCluster() if err != nil { @@ -88,6 +89,7 @@ func main() { flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.") flag.BoolVar(&enableLeaderElection, "leader-elect", isRunningInCluster, "Enable leader election for controller manager. "+ "Enabling this will ensure there is only one active controller manager.") + flag.BoolVar(&ValidateSecurityWarnings, "validate-security-warnings", false, "Enable validation for potential security warnings in jenkins custom resource plugins") hostname := flag.String("jenkins-api-hostname", "", "Hostname or IP of Jenkins API. It can be service name, node IP or localhost.") port := flag.Int("jenkins-api-port", 0, "The port on which Jenkins API is running. Note: If you want to use nodePort don't set this setting and --jenkins-api-use-nodeport must be true.") useNodePort := flag.Bool("jenkins-api-use-nodeport", false, "Connect to Jenkins API using the service nodePort instead of service port. If you want to set this as true - don't set --jenkins-api-port.") @@ -95,9 +97,6 @@ func main() { opts := zap.Options{ Development: true, } - - go v1alpha2.RetrieveDataFile() - opts.BindFlags(flag.CommandLine) flag.Parse() @@ -112,6 +111,15 @@ func main() { } logger.Info(fmt.Sprintf("Watch namespace: %v", namespace)) + if ValidateSecurityWarnings { + ispluginsdatainitialized := make(chan bool) + go v1alpha2.PluginsDataManager.CachePluginData(ispluginsdatainitialized) + + if !<-ispluginsdatainitialized { + fatal(errors.New("Unable to get the plugins data"), *debug) + } + } + // get a config to talk to the API server cfg, err := config.GetConfig() if err != nil { diff --git a/webhook/all_in_one_v1alpha2.yaml b/webhook/all_in_one_v1alpha2.yaml index 0d878dd2d..18afb8010 100644 --- a/webhook/all_in_one_v1alpha2.yaml +++ b/webhook/all_in_one_v1alpha2.yaml @@ -247,7 +247,7 @@ spec: - /manager args: - --leader-elect - image: jenkins-operator:52fe5fe9-dirty + image: jenkins-operator:37d0eac4-dirty name: jenkins-operator imagePullPolicy: IfNotPresent securityContext: @@ -266,11 +266,11 @@ spec: periodSeconds: 10 resources: limits: - cpu: 100m - memory: 30Mi + cpu: 200m + memory: 200Mi requests: cpu: 100m - memory: 20Mi + memory: 80Mi env: - name: WATCH_NAMESPACE valueFrom: @@ -278,8 +278,7 @@ spec: fieldPath: metadata.namespace volumeMounts: - mountPath: /tmp/k8s-webhook-server/serving-certs - name: cert - readOnly: false + name: cert volumes: - name: cert secret: diff --git a/webhook/operator.yaml b/webhook/operator.yaml index c056ba8e0..01093af2d 100644 --- a/webhook/operator.yaml +++ b/webhook/operator.yaml @@ -23,6 +23,7 @@ spec: - /manager args: - --leader-elect + - --validate-security-warnings image: {DOCKER_REGISTRY}:{GITCOMMIT} name: jenkins-operator imagePullPolicy: IfNotPresent From 853f4857466922de550f934d459951b4a1e02341 Mon Sep 17 00:00:00 2001 From: Morten Birkelund Date: Mon, 9 Aug 2021 14:57:00 +0200 Subject: [PATCH 19/26] Helm Chart: Remove empty priorityClassName from Jenkins template (#618) Also bump Helm Chart version to v0.5.2 --- chart/index.yaml | 10 ++++++++++ chart/jenkins-operator/Chart.yaml | 2 +- .../jenkins-operator/jenkins-operator-0.5.2.tgz | Bin 0 -> 34161 bytes chart/jenkins-operator/templates/jenkins.yaml | 2 -- 4 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 chart/jenkins-operator/jenkins-operator-0.5.2.tgz diff --git a/chart/index.yaml b/chart/index.yaml index b7e1f5541..0044cbebe 100644 --- a/chart/index.yaml +++ b/chart/index.yaml @@ -1,6 +1,16 @@ apiVersion: v1 entries: jenkins-operator: + - apiVersion: v2 + appVersion: 0.6.0 + created: "2021-06-11T13:50:32.677639006+02:00" + description: Kubernetes native operator which fully manages Jenkins on Kubernetes + digest: 48fbf15c3ffff7003623edcde0bec39dc37d0a62303f08066960d5fac799af90 + icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png + name: jenkins-operator + urls: + - https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart/jenkins-operator/jenkins-operator-0.5.2.tgz + version: 0.5.2 - apiVersion: v2 appVersion: 0.6.0 created: "2021-06-11T13:50:32.677639006+02:00" diff --git a/chart/jenkins-operator/Chart.yaml b/chart/jenkins-operator/Chart.yaml index 9d8c137d7..d90d312a6 100644 --- a/chart/jenkins-operator/Chart.yaml +++ b/chart/jenkins-operator/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 appVersion: "0.6.0" description: Kubernetes native operator which fully manages Jenkins on Kubernetes name: jenkins-operator -version: 0.5.1 +version: 0.5.2 icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png diff --git a/chart/jenkins-operator/jenkins-operator-0.5.2.tgz b/chart/jenkins-operator/jenkins-operator-0.5.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..c2f1afe9e0063a9c2e03b84b419cade3074dd85f GIT binary patch literal 34161 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

    %76 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 R4C4bI{}1}vbn5^R1OO6LISv2- literal 0 HcmV?d00001 diff --git a/chart/jenkins-operator/templates/jenkins.yaml b/chart/jenkins-operator/templates/jenkins.yaml index bfbcefb22..3501d2dad 100644 --- a/chart/jenkins-operator/templates/jenkins.yaml +++ b/chart/jenkins-operator/templates/jenkins.yaml @@ -100,8 +100,6 @@ spec: {{- end }} {{- if .Values.jenkins.priorityClassName }} priorityClassName: {{- .Values.jenkins.priorityClassName }} - {{- else }} - priorityClassName: "" {{- end }} disableCSRFProtection: {{ .Values.jenkins.disableCSRFProtection }} containers: From b11ca32d1a1c94b480e0d9f441bf69c2e0f0a343 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Fri, 13 Aug 2021 02:33:23 +0530 Subject: [PATCH 20/26] Added unit test cases for webhook --- api/v1alpha2/jenkins_webhook.go | 18 +-- api/v1alpha2/jenkins_webhook_test.go | 163 +++++++++++++++++++++++++++ 2 files changed, 174 insertions(+), 7 deletions(-) create mode 100644 api/v1alpha2/jenkins_webhook_test.go diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 51a7e54a5..222aab2d5 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -79,6 +79,7 @@ func (in *Jenkins) ValidateDelete() error { type PluginDataManager struct { PluginDataCache PluginsInfo Hosturl string + Timeout time.Duration CompressedFilePath string PluginDataFile string IsCached bool @@ -160,9 +161,9 @@ func Validate(r Jenkins) error { if hasVulnerabilities { if pluginData.Kind == "base" { - faultyBasePlugins += plugin.Name + ":" + pluginData.Version + "\n" + faultyBasePlugins += "\n" + plugin.Name + ":" + pluginData.Version } else { - faultyUserPlugins += plugin.Name + ":" + pluginData.Version + "\n" + faultyUserPlugins += "\n" + plugin.Name + ":" + pluginData.Version } } } @@ -170,10 +171,10 @@ func Validate(r Jenkins) error { if len(faultyBasePlugins) > 0 || len(faultyUserPlugins) > 0 { var errormsg string if len(faultyBasePlugins) > 0 { - errormsg += "Security vulnerabilities detected in the following base plugins: \n" + faultyBasePlugins + errormsg += "security vulnerabilities detected in the following base plugins: " + faultyBasePlugins } if len(faultyUserPlugins) > 0 { - errormsg += "Security vulnerabilities detected in the following user-defined plugins: \n" + faultyUserPlugins + errormsg += "security vulnerabilities detected in the following user-defined plugins: " + faultyUserPlugins } return errors.New(errormsg) } @@ -188,6 +189,7 @@ func NewPluginsDataManager() *PluginDataManager { PluginDataFile: "/tmp/plugins.json", IsCached: false, Attempts: 0, + Timeout: time.Duration(1000) * time.Second, } } @@ -256,7 +258,7 @@ func (in *PluginDataManager) download() error { defer out.Close() client := http.Client{ - Timeout: 1000 * time.Second, + Timeout: in.Timeout, } resp, err := client.Get(in.Hosturl) @@ -314,9 +316,11 @@ func (in *PluginDataManager) cache() error { return nil } -// returns a semantic version that can be used for comparison +// returns a semantic version that can be used for comparison, allowed versioning format vMAJOR.MINOR.PATCH or MAJOR.MINOR.PATCH func makeSemanticVersion(version string) string { - version = "v" + version + if version[0] != 'v' { + version = "v" + version + } return semver.Canonical(version) } diff --git a/api/v1alpha2/jenkins_webhook_test.go b/api/v1alpha2/jenkins_webhook_test.go new file mode 100644 index 000000000..c04ae2c6c --- /dev/null +++ b/api/v1alpha2/jenkins_webhook_test.go @@ -0,0 +1,163 @@ +package v1alpha2 + +import ( + "errors" + "testing" + "time" + + "github.com/jenkinsci/kubernetes-operator/pkg/constants" + "github.com/stretchr/testify/assert" + corev1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +func TestMakeSemanticVersion(t *testing.T) { + t.Run("only major version specified", func(t *testing.T) { + got := makeSemanticVersion("1") + assert.Equal(t, got, "v1.0.0") + }) + + t.Run("major and minor version specified", func(t *testing.T) { + got := makeSemanticVersion("1.2") + assert.Equal(t, got, "v1.2.0") + }) + + t.Run("major,minor and patch version specified", func(t *testing.T) { + got := makeSemanticVersion("1.2.3") + assert.Equal(t, got, "v1.2.3") + }) + + t.Run("semantic versions begin with a leading v and no patch version", func(t *testing.T) { + got := makeSemanticVersion("v2.5") + assert.Equal(t, got, "v2.5.0") + }) + + t.Run("semantic versions with prerelease versions", func(t *testing.T) { + got := makeSemanticVersion("2.1.2-alpha.1") + assert.Equal(t, got, "v2.1.2-alpha.1") + }) + + t.Run("semantic versions with prerelease versions", func(t *testing.T) { + got := makeSemanticVersion("0.11.2-9.c8b45b8bb173") + assert.Equal(t, got, "v0.11.2-9.c8b45b8bb173") + }) + + t.Run("semantic versions with build suffix", func(t *testing.T) { + got := makeSemanticVersion("1.7.9+meta") + assert.Equal(t, got, "v1.7.9") + }) + + t.Run("invalid semantic version", func(t *testing.T) { + got := makeSemanticVersion("google-login-1.2") + assert.Equal(t, got, "") + }) +} + +func TestCompareVersions(t *testing.T) { + t.Run("Plugin Version lies between first and last version", func(t *testing.T) { + got := compareVersions("1.2", "1.6", "1.4") + assert.Equal(t, got, true) + }) + t.Run("Plugin Version is greater than the last version", func(t *testing.T) { + got := compareVersions("1", "2", "3") + assert.Equal(t, got, false) + }) + t.Run("Plugin Version is less than the first version", func(t *testing.T) { + got := compareVersions("1.4", "2.5", "1.1") + assert.Equal(t, got, false) + }) + + t.Run("Plugins Versions have prerelease version and it lies between first and last version", func(t *testing.T) { + got := compareVersions("1.2.1-alpha", "1.2.1", "1.2.1-beta") + assert.Equal(t, got, true) + }) + + t.Run("Plugins Versions have prerelease version and it is greater than the last version", func(t *testing.T) { + got := compareVersions("v2.2.1-alpha", "v2.5.1-beta.1", "v2.5.1-beta.2") + assert.Equal(t, got, false) + }) +} + +func TestValidate(t *testing.T) { + t.Run("Validating when plugins data file is not fetched", func(t *testing.T) { + userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} + jenkinscr := *createJenkinsCR(userplugins, true) + got := jenkinscr.ValidateCreate() + assert.Equal(t, got, errors.New("plugins data has not been fetched")) + }) + + isInitialized := make(chan bool) + go PluginsMgr.FetchPluginData(isInitialized) + if <-isInitialized { + t.Run("Validating a Jenkins CR with plugins not having security warnings and validation is turned on", func(t *testing.T) { + userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} + jenkinscr := *createJenkinsCR(userplugins, true) + got := jenkinscr.ValidateCreate() + assert.Nil(t, got) + }) + + t.Run("Validating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + jenkinscr := *createJenkinsCR(userplugins, true) + got := jenkinscr.ValidateCreate() + assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nworkflow-cps:2.59\ngoogle-login:1.2\nmailer:1.1")) + }) + + t.Run("Updating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + oldjenkinscr := *createJenkinsCR(userplugins, true) + + userplugins = []Plugin{{Name: "handy-uri-templates-2-api", Version: "2.1.8-1.0"}, {Name: "resource-disposer", Version: "0.8"}, {Name: "jjwt-api", Version: "0.11.2-9.c8b45b8bb173"}, {Name: "blueocean-github-pipeline", Version: "1.2.0-beta-3"}, {Name: "ghprb", Version: "1.39"}} + newjenkinscr := *createJenkinsCR(userplugins, true) + got := newjenkinscr.ValidateUpdate(&oldjenkinscr) + assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nresource-disposer:0.8\nblueocean-github-pipeline:1.2.0-beta-3\nghprb:1.39")) + }) + + t.Run("Validation is turned off", func(t *testing.T) { + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + jenkinscr := *createJenkinsCR(userplugins, false) + got := jenkinscr.ValidateCreate() + assert.Nil(t, got) + }) + } else { + t.Fatal("Plugin Data File is not Downloaded") + } +} + +func TestFetchPluginData(t *testing.T) { + t.Run("Timeout error while downloading plugins data file", func(t *testing.T) { + pluginsDataMgr := *NewPluginsDataManager() + pluginsDataMgr.Timeout = time.Duration(1) * time.Nanosecond + got := pluginsDataMgr.download() + assert.NotNil(t, got) + }) + t.Run("Successfully fetching plugins data file", func(t *testing.T) { + isInitialized := make(chan bool) + pluginsDataMgr := *NewPluginsDataManager() + go pluginsDataMgr.FetchPluginData(isInitialized) + assert.Equal(t, <-isInitialized, true) + }) +} + +func createJenkinsCR(userPlugins []Plugin, validateSecurityWarnings bool) *Jenkins { + jenkins := &Jenkins{ + TypeMeta: JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: "Jenkins", + Namespace: "test", + }, + Spec: JenkinsSpec{ + Master: JenkinsMaster{ + Annotations: map[string]string{"test": "label"}, + Plugins: userPlugins, + }, + ValidateSecurityWarnings: validateSecurityWarnings, + Service: Service{ + Type: corev1.ServiceTypeNodePort, + Port: constants.DefaultHTTPPortInt32, + }, + }, + } + + return jenkins +} From 5ca4e0a90cd23d7ade9bf90fa9383713b4a443e8 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Mon, 16 Aug 2021 04:24:24 +0530 Subject: [PATCH 21/26] Updated Helm Charts - Optimized the charts - Made the webhook optional - Added cert manager as dependency to be installed while running webhook --- chart/jenkins-operator/Chart.lock | 6 ++++++ chart/jenkins-operator/Chart.yaml | 6 ++++++ .../charts/cert-manager-v1.5.0.tgz | Bin 0 -> 156748 bytes .../templates/cert-manager.yaml | 14 ++++++++------ chart/jenkins-operator/templates/operator.yaml | 17 ++++++++++++----- chart/jenkins-operator/templates/webhook.yaml | 11 +++++++---- chart/jenkins-operator/values.yaml | 16 ++++++++++++++++ 7 files changed, 55 insertions(+), 15 deletions(-) create mode 100644 chart/jenkins-operator/Chart.lock create mode 100644 chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz diff --git a/chart/jenkins-operator/Chart.lock b/chart/jenkins-operator/Chart.lock new file mode 100644 index 000000000..c0475df4e --- /dev/null +++ b/chart/jenkins-operator/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: cert-manager + repository: https://charts.jetstack.io + version: v1.5.0 +digest: sha256:9113e5b4333cbe0a9b9eb340cb8bc201f5c110a56058a637c18733e36711c513 +generated: "2021-08-16T04:18:49.917544487+05:30" diff --git a/chart/jenkins-operator/Chart.yaml b/chart/jenkins-operator/Chart.yaml index d90d312a6..b8fce1242 100644 --- a/chart/jenkins-operator/Chart.yaml +++ b/chart/jenkins-operator/Chart.yaml @@ -4,3 +4,9 @@ description: Kubernetes native operator which fully manages Jenkins on Kubernete name: jenkins-operator version: 0.5.2 icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png +dependencies: + - name: cert-manager + version: "1.5.0" + condition: webhook.enabled + repository: "https://charts.jetstack.io" + \ No newline at end of file diff --git a/chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz b/chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..62842a6b2927dffe0d4de3946b52e4ecaa1bbe70 GIT binary patch literal 156748 zcmZU)W0WLq(=FW7)10<#+qP}nw%s+;c2C>3ZF}07wr$(>^?g6jci!`^lRq*e_7xGe z)>XACGj{AGh=f7~`R4#qfzTL9Dl?i$%CXCOaj_Y*s56?XuvuxVaIq_>tFy~#*jgLe zn|i4#Iq*rE+1i1ecfGmea5QsxejchA?qBIN`iM#=GB~-mPvbW27cSJH(Md_QD|A;v zRf0;1stL0F%%5oepueNNGi|7KqEfB%Ot936QR-43G0t;bSzhL_egBP^=gnpADLc4% z0|v8@v%~uqYsdfgbueV}1p+Uxt~h`lz=g;_ASN%)xxm}$%V$I19dMa|*YERu1(5qu z^=RCuA{{&gIN$21I^5<@fMgj)Q%_{^S{8zW5tHClN^o8-@vT7={T*c}1wT6lWf6bw z>L>&t6;_^tpLLz-6GM7m0c>tv6^fDvp#Sja5eATG#UM{=TMmN%;HqZX;o=fSDf;2n z+QLyhv58zh?ICo7O5B=(3N6R7PdV8oH_t}fMLH} z|Gh$oQO0|If2wzum*FhwjfHh5k6!o@A|C_w z<%;QOFDeS00jBJ2St!hi?^(>i_0YhBltD~5x2wsD-EKnO@6!e>eYcX-`3%(XyzN{1LUXftLzE}ua+{YB>o=B!u-rX@$J0S@% zluX#?ZM_~^+bGMJ5z%yMFf6rxAqM@vF#Cwxu0#rF z1tTw#C*&z{SKS|TG@h$}mA@~pWmnfhE$~vTK?gxSA52UM|sT`CX$&atVmy)o<}-R&rUDr#YV(-S`bj;?Rr^Z@-drc zWnB{Z8*^7Q0WnV$vGNa*az1JMXh2B{Db<6-5pTih1S*N_w1Rh-VETYU5vhcj6R9(O z`7}YEOnxqp3UP?;DgK>O7RwB{xk)}?Q-bdvbVHdLgU}@r#qFI!q>C*>?zu-{z)^RgD1g*ugho#M!kA{HVgt%6W6}_A zzvtnk&2=9>s7VXr@b?l;SwzgasySV>Ql5f6vy+_KseIKN?IqE$+L6A8-WQC>d1 zHw^qd!Iz;FTUkaXVkn{yV9wW=0b`+~|I;I#d6K>m6y*2l>O}G@SpiC(W$X`;w>p88 zpjbeB6ml_XJc_<~nbEIds9!MmjnY4IjFLkxwkIZQam*Ls$jpyK6|?d4`&?E|6v@%1 z>h~g1P8KaBrs3qSnHbWzMFZs}sDGhhO~cQ2Jk`oCR1$_B2L$rI=gqi4^h91`AT~f* z>9^4irQ+s)oTd<9W*etl^?}Io3XkwkGsPG7w%4JWsZ#UBAoZ1_f<+r?f#hh-!G@#I z{h6u0gR)vF_c0pO>@n&2R0qJ`R(zjRev`uR;nnQ`W9>HA)76>o2!(-yXQAK&Cr1dN)XeXT?mla$|@h7qgyKl65Og(JK)>Ck9v|lak3QWlD*v z&Oti)XC`SYXG&`!&(8iev)kf-J%cS8HfI7${PN zE#rrvW=0f*N{KkqoCUL3nK)gVA8i;bJMlpNy9Bc~)F60v?#i7@jqIFAS{pKXjz*eC zQm!^0^s{rJ0&a}R_6G#aIQxbbr58n=>(#?9m^Lf5l5Q-Ep97;WIwR6roLmRUF$IlR2e>8Dm(N-l72Uiw&&)0M2fau&)O22X|J zH0D04w>4%;!N#{h3!=mNca;PJPKUy&obC-ye`Zrd?wPUfq4ulCA04vmI82ShO@#PV zGXAkBFpzu*U$FeT;gDXfB2s@OL9u$;AM}P~KJXF&Ka&h;g#!|#{Md3wl0P1F!ObU8 zY{DPClZkw)$Fi@M4FYZz-zn^5HAH3)gOT<+Ht*f%O1tsFMqlQ&_NHu$NYX8fo#8Tu zQji9^id~97^%Xlu9I)=)?=hyAT~Hra#c~s+KOBOFepCM%qBSIMvnhQjeAL5Kc@rV`i-nqF`}U2a#{c8yIKP06 zHtbzwK8cs&Ft&Q}Y%0ZL;=@C#|5Ukc@yN9exvy<>C)1p4jvYT+lq6?�a#bW3-fu9DxS)UwT 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%0DUedn0S8RjFRK=91c^(fkYD3&yMZUrhtiP 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 literal 0 HcmV?d00001 diff --git a/chart/jenkins-operator/templates/cert-manager.yaml b/chart/jenkins-operator/templates/cert-manager.yaml index a6baa08e4..3edc1045c 100644 --- a/chart/jenkins-operator/templates/cert-manager.yaml +++ b/chart/jenkins-operator/templates/cert-manager.yaml @@ -1,15 +1,16 @@ +{{- if .Values.webhook.enabled }} apiVersion: cert-manager.io/v1 kind: Certificate metadata: - name: webhook-certificate + name: jenkins-{{ .Values.webhook.certificate.name }} namespace: {{ .Release.Namespace }} spec: - duration: 2160h - renewBefore: 360h - secretName: webhook-server-cert + duration: {{ .Values.webhook.certificate.duration }} + renewBefore: {{ .Values.webhook.certificate.renewbefore }} + secretName: jenkins-{{ .Values.webhook.certificate.name }} dnsNames: - - webhook-service.{{ .Release.Namespace }}.svc - - webhook-service.{{ .Release.Namespace }}.svc.cluster.local + - jenkins-webhook-service.{{ .Release.Namespace }}.svc + - jenkins-webhook-service.{{ .Release.Namespace }}.svc.cluster.local issuerRef: kind: Issuer name: selfsigned @@ -24,3 +25,4 @@ spec: selfSigned: {} --- +{{- end }} \ No newline at end of file diff --git a/chart/jenkins-operator/templates/operator.yaml b/chart/jenkins-operator/templates/operator.yaml index 9d1026ca5..82e8e6c72 100644 --- a/chart/jenkins-operator/templates/operator.yaml +++ b/chart/jenkins-operator/templates/operator.yaml @@ -31,11 +31,16 @@ spec: protocol: TCP command: - /manager - args: [] + args: + {{- if .Values.webhook.enabled }} + - --validate-security-warnings + {{- end }} + {{- if .Values.webhook.enabled }} volumeMounts: - mountPath: /tmp/k8s-webhook-server/serving-certs - name: cert + name: webhook-certs readOnly: true + {{- end }} env: - name: WATCH_NAMESPACE value: {{ .Values.jenkins.namespace }} @@ -59,9 +64,11 @@ spec: tolerations: {{- toYaml . | nindent 8 }} {{- end }} + {{- if .Values.webhook.enabled }} volumes: - - name: cert + - name: webhook-certs secret: defaultMode: 420 - secretName: webhook-server-cert - terminationGracePeriodSeconds: 10 \ No newline at end of file + secretName: jenkins-{{ .Values.webhook.certificate.name }} + terminationGracePeriodSeconds: 10 + {{- end }} \ No newline at end of file diff --git a/chart/jenkins-operator/templates/webhook.yaml b/chart/jenkins-operator/templates/webhook.yaml index 69b396e31..69f07693c 100644 --- a/chart/jenkins-operator/templates/webhook.yaml +++ b/chart/jenkins-operator/templates/webhook.yaml @@ -1,16 +1,17 @@ +{{- if .Values.webhook.enabled }} apiVersion: admissionregistration.k8s.io/v1 kind: ValidatingWebhookConfiguration metadata: - name: validating-webhook-configuration + name: {{ .Release.Name }}-webhook annotations: - cert-manager.io/inject-ca-from: {{ .Release.Namespace }}/webhook-certificate + cert-manager.io/inject-ca-from: {{ .Release.Namespace }}/jenkins-{{ .Values.webhook.certificate.name }} webhooks: - admissionReviewVersions: - v1 - v1beta1 clientConfig: service: - name: webhook-service + name: jenkins-webhook-service namespace: {{ .Release.Namespace }} path: /validate-jenkins-io-v1alpha2-jenkins failurePolicy: Fail @@ -25,13 +26,14 @@ webhooks: - UPDATE resources: - jenkins + scope: "Namespaced" sideEffects: None --- apiVersion: v1 kind: Service metadata: - name: webhook-service + name: jenkins-webhook-service namespace: {{ .Release.Namespace }} spec: ports: @@ -41,3 +43,4 @@ spec: app.kubernetes.io/name: {{ include "jenkins-operator.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} --- +{{- end }} \ No newline at end of file diff --git a/chart/jenkins-operator/values.yaml b/chart/jenkins-operator/values.yaml index 3a86f717a..d430f579d 100644 --- a/chart/jenkins-operator/values.yaml +++ b/chart/jenkins-operator/values.yaml @@ -280,3 +280,19 @@ operator: nodeSelector: {} tolerations: [] affinity: {} + +webhook: +# TLS certificates for webhook + certificate: + name: webhook-certificate + + # validity of the certificate + duration: 2160h + + # time after which the certificate will be automatically renewed + renewbefore: 360h + # enable or disable the validation webhook + enabled: false + +cert-manager: + installCRDs: true \ No newline at end of file From e2ec2ea32997f806b7c4735dcd525e481df52adf Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Wed, 18 Aug 2021 05:51:14 +0530 Subject: [PATCH 22/26] Updated unit tests, helm charts and validation logic --- api/v1alpha2/jenkins_webhook.go | 45 +- api/v1alpha2/jenkins_webhook_test.go | 144 +- chart/jenkins-operator/Chart.lock | 6 +- chart/jenkins-operator/Chart.yaml | 9 +- .../charts/cert-manager-v1.5.0.tgz | Bin 156748 -> 0 bytes .../charts/cert-manager-v1.5.1.tgz | Bin 0 -> 156746 bytes .../crds/cert-manager.crds.yaml | 16101 ++++++++++++++++ ...manager.yaml => webhook-certificates.yaml} | 0 chart/jenkins-operator/values.yaml | 5 +- 9 files changed, 16213 insertions(+), 97 deletions(-) delete mode 100644 chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz create mode 100644 chart/jenkins-operator/charts/cert-manager-v1.5.1.tgz create mode 100644 chart/jenkins-operator/crds/cert-manager.crds.yaml rename chart/jenkins-operator/templates/{cert-manager.yaml => webhook-certificates.yaml} (100%) diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 222aab2d5..1fe68a5db 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -26,9 +26,12 @@ import ( "os" "time" + "github.com/jenkinsci/kubernetes-operator/pkg/constants" "github.com/jenkinsci/kubernetes-operator/pkg/plugins" "golang.org/x/mod/semver" + corev1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" ctrl "sigs.k8s.io/controller-runtime" logf "sigs.k8s.io/controller-runtime/pkg/log" @@ -37,7 +40,7 @@ import ( var ( jenkinslog = logf.Log.WithName("jenkins-resource") // log is for logging in this package. - PluginsMgr PluginDataManager = *NewPluginsDataManager() + PluginsMgr PluginDataManager = *NewPluginsDataManager("https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip", "/tmp/plugins.json.gzip", "/tmp/plugins.json", false, time.Duration(1000)*time.Second) _ webhook.Validator = &Jenkins{} ) @@ -182,14 +185,13 @@ func Validate(r Jenkins) error { return nil } -func NewPluginsDataManager() *PluginDataManager { +func NewPluginsDataManager(hosturl string, compressedFilePath string, pluginDataFile string, isCached bool, timeout time.Duration) *PluginDataManager { return &PluginDataManager{ - Hosturl: "https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip", - CompressedFilePath: "/tmp/plugins.json.gzip", - PluginDataFile: "/tmp/plugins.json", - IsCached: false, - Attempts: 0, - Timeout: time.Duration(1000) * time.Second, + Hosturl: hosturl, + CompressedFilePath: compressedFilePath, + PluginDataFile: pluginDataFile, + IsCached: isCached, + Timeout: timeout, } } @@ -334,3 +336,30 @@ func compareVersions(firstVersion string, lastVersion string, pluginVersion stri } return true } + +func CreateJenkinsCR(name string, namespace string, userPlugins []Plugin, validateSecurityWarnings bool) *Jenkins { + jenkins := &Jenkins{ + TypeMeta: JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: name, + Namespace: namespace, + }, + Spec: JenkinsSpec{ + Master: JenkinsMaster{ + Annotations: map[string]string{"test": "label"}, + Plugins: userPlugins, + }, + ValidateSecurityWarnings: validateSecurityWarnings, + Service: Service{ + Type: corev1.ServiceTypeNodePort, + Port: constants.DefaultHTTPPortInt32, + }, + }, + } + + return jenkins +} + +func CreateSecurityWarnings(firstVersion string, lastVersion string) []Warning { + return []Warning{{Versions: []Version{{FirstVersion: firstVersion, LastVersion: lastVersion}}, ID: "null", Message: "unit testing", URL: "null", Active: false}} +} diff --git a/api/v1alpha2/jenkins_webhook_test.go b/api/v1alpha2/jenkins_webhook_test.go index c04ae2c6c..7aad6665b 100644 --- a/api/v1alpha2/jenkins_webhook_test.go +++ b/api/v1alpha2/jenkins_webhook_test.go @@ -3,12 +3,8 @@ package v1alpha2 import ( "errors" "testing" - "time" - "github.com/jenkinsci/kubernetes-operator/pkg/constants" "github.com/stretchr/testify/assert" - corev1 "k8s.io/api/core/v1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) func TestMakeSemanticVersion(t *testing.T) { @@ -81,83 +77,77 @@ func TestCompareVersions(t *testing.T) { func TestValidate(t *testing.T) { t.Run("Validating when plugins data file is not fetched", func(t *testing.T) { userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} - jenkinscr := *createJenkinsCR(userplugins, true) + jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) got := jenkinscr.ValidateCreate() assert.Equal(t, got, errors.New("plugins data has not been fetched")) }) - isInitialized := make(chan bool) - go PluginsMgr.FetchPluginData(isInitialized) - if <-isInitialized { - t.Run("Validating a Jenkins CR with plugins not having security warnings and validation is turned on", func(t *testing.T) { - userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} - jenkinscr := *createJenkinsCR(userplugins, true) - got := jenkinscr.ValidateCreate() - assert.Nil(t, got) - }) - - t.Run("Validating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { - userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - jenkinscr := *createJenkinsCR(userplugins, true) - got := jenkinscr.ValidateCreate() - assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nworkflow-cps:2.59\ngoogle-login:1.2\nmailer:1.1")) - }) - - t.Run("Updating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { - userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - oldjenkinscr := *createJenkinsCR(userplugins, true) - - userplugins = []Plugin{{Name: "handy-uri-templates-2-api", Version: "2.1.8-1.0"}, {Name: "resource-disposer", Version: "0.8"}, {Name: "jjwt-api", Version: "0.11.2-9.c8b45b8bb173"}, {Name: "blueocean-github-pipeline", Version: "1.2.0-beta-3"}, {Name: "ghprb", Version: "1.39"}} - newjenkinscr := *createJenkinsCR(userplugins, true) - got := newjenkinscr.ValidateUpdate(&oldjenkinscr) - assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nresource-disposer:0.8\nblueocean-github-pipeline:1.2.0-beta-3\nghprb:1.39")) - }) - - t.Run("Validation is turned off", func(t *testing.T) { - userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - jenkinscr := *createJenkinsCR(userplugins, false) - got := jenkinscr.ValidateCreate() - assert.Nil(t, got) - }) - } else { - t.Fatal("Plugin Data File is not Downloaded") - } -} + PluginsMgr.IsCached = true + t.Run("Validating a Jenkins CR with plugins not having security warnings and validation is turned on", func(t *testing.T) { + PluginsMgr.PluginDataCache = PluginsInfo{Plugins: []PluginInfo{ + {Name: "security-script"}, + {Name: "git-client"}, + {Name: "git"}, + {Name: "google-login", SecurityWarnings: CreateSecurityWarnings("", "1.2")}, + {Name: "sample-plugin", SecurityWarnings: CreateSecurityWarnings("", "0.8")}, + {Name: "mailer"}, + {Name: "plain-credentials"}}} + userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} + jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + got := jenkinscr.ValidateCreate() + assert.Nil(t, got) + }) + + t.Run("Validating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { + PluginsMgr.PluginDataCache = PluginsInfo{Plugins: []PluginInfo{ + {Name: "security-script", SecurityWarnings: CreateSecurityWarnings("1.2", "2.2")}, + {Name: "workflow-cps", SecurityWarnings: CreateSecurityWarnings("2.59", "")}, + {Name: "git-client"}, + {Name: "git"}, + {Name: "sample-plugin", SecurityWarnings: CreateSecurityWarnings("0.8", "")}, + {Name: "command-launcher", SecurityWarnings: CreateSecurityWarnings("1.2", "1.4")}, + {Name: "plain-credentials"}, + {Name: "google-login", SecurityWarnings: CreateSecurityWarnings("1.1", "1.3")}, + {Name: "mailer", SecurityWarnings: CreateSecurityWarnings("1.0.3", "1.1.4")}, + }} + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + got := jenkinscr.ValidateCreate() + assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nworkflow-cps:2.59\ngoogle-login:1.2\nmailer:1.1")) + }) + + t.Run("Updating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { + PluginsMgr.PluginDataCache = PluginsInfo{Plugins: []PluginInfo{ + {Name: "handy-uri-templates-2-api", SecurityWarnings: CreateSecurityWarnings("2.1.8-1.0", "2.2.8-1.0")}, + {Name: "workflow-cps", SecurityWarnings: CreateSecurityWarnings("2.59", "")}, + {Name: "resource-disposer", SecurityWarnings: CreateSecurityWarnings("0.7", "1.2")}, + {Name: "git"}, + {Name: "jjwt-api"}, + {Name: "blueocean-github-pipeline", SecurityWarnings: CreateSecurityWarnings("1.2.0-alpha-2", "1.2.0-beta-5")}, + {Name: "command-launcher", SecurityWarnings: CreateSecurityWarnings("1.2", "1.4")}, + {Name: "plain-credentials"}, + {Name: "ghprb", SecurityWarnings: CreateSecurityWarnings("1.1", "1.43")}, + {Name: "mailer", SecurityWarnings: CreateSecurityWarnings("1.0.3", "1.1.4")}, + }} + + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + oldjenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + + userplugins = []Plugin{{Name: "handy-uri-templates-2-api", Version: "2.1.8-1.0"}, {Name: "resource-disposer", Version: "0.8"}, {Name: "jjwt-api", Version: "0.11.2-9.c8b45b8bb173"}, {Name: "blueocean-github-pipeline", Version: "1.2.0-beta-3"}, {Name: "ghprb", Version: "1.39"}} + newjenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + got := newjenkinscr.ValidateUpdate(&oldjenkinscr) + assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nhandy-uri-templates-2-api:2.1.8-1.0\nresource-disposer:0.8\nblueocean-github-pipeline:1.2.0-beta-3\nghprb:1.39")) + }) + + t.Run("Validation is turned off", func(t *testing.T) { + userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, false) + got := jenkinscr.ValidateCreate() + assert.Nil(t, got) -func TestFetchPluginData(t *testing.T) { - t.Run("Timeout error while downloading plugins data file", func(t *testing.T) { - pluginsDataMgr := *NewPluginsDataManager() - pluginsDataMgr.Timeout = time.Duration(1) * time.Nanosecond - got := pluginsDataMgr.download() - assert.NotNil(t, got) - }) - t.Run("Successfully fetching plugins data file", func(t *testing.T) { - isInitialized := make(chan bool) - pluginsDataMgr := *NewPluginsDataManager() - go pluginsDataMgr.FetchPluginData(isInitialized) - assert.Equal(t, <-isInitialized, true) + userplugins = []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} + newjenkinscr := *CreateJenkinsCR("jenkins", "test", userplugins, false) + got = newjenkinscr.ValidateUpdate(&jenkinscr) + assert.Nil(t, got) }) } - -func createJenkinsCR(userPlugins []Plugin, validateSecurityWarnings bool) *Jenkins { - jenkins := &Jenkins{ - TypeMeta: JenkinsTypeMeta(), - ObjectMeta: metav1.ObjectMeta{ - Name: "Jenkins", - Namespace: "test", - }, - Spec: JenkinsSpec{ - Master: JenkinsMaster{ - Annotations: map[string]string{"test": "label"}, - Plugins: userPlugins, - }, - ValidateSecurityWarnings: validateSecurityWarnings, - Service: Service{ - Type: corev1.ServiceTypeNodePort, - Port: constants.DefaultHTTPPortInt32, - }, - }, - } - - return jenkins -} diff --git a/chart/jenkins-operator/Chart.lock b/chart/jenkins-operator/Chart.lock index c0475df4e..20e43afcf 100644 --- a/chart/jenkins-operator/Chart.lock +++ b/chart/jenkins-operator/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: cert-manager repository: https://charts.jetstack.io - version: v1.5.0 -digest: sha256:9113e5b4333cbe0a9b9eb340cb8bc201f5c110a56058a637c18733e36711c513 -generated: "2021-08-16T04:18:49.917544487+05:30" + version: v1.5.1 +digest: sha256:3220f5584bd04a8c8d4b2a076d49cc046211a463bb9a12ebbbae752be9b70bb1 +generated: "2021-08-18T01:07:49.505353718+05:30" diff --git a/chart/jenkins-operator/Chart.yaml b/chart/jenkins-operator/Chart.yaml index b8fce1242..fc8858bd0 100644 --- a/chart/jenkins-operator/Chart.yaml +++ b/chart/jenkins-operator/Chart.yaml @@ -5,8 +5,7 @@ name: jenkins-operator version: 0.5.2 icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png dependencies: - - name: cert-manager - version: "1.5.0" - condition: webhook.enabled - repository: "https://charts.jetstack.io" - \ No newline at end of file +- name: cert-manager + version: "1.5.1" + condition: webhook.enabled + repository: https://charts.jetstack.io \ No newline at end of file diff --git a/chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz b/chart/jenkins-operator/charts/cert-manager-v1.5.0.tgz deleted file mode 100644 index 62842a6b2927dffe0d4de3946b52e4ecaa1bbe70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156748 zcmZU)W0WLq(=FW7)10<#+qP}nw%s+;c2C>3ZF}07wr$(>^?g6jci!`^lRq*e_7xGe z)>XACGj{AGh=f7~`R4#qfzTL9Dl?i$%CXCOaj_Y*s56?XuvuxVaIq_>tFy~#*jgLe zn|i4#Iq*rE+1i1ecfGmea5QsxejchA?qBIN`iM#=GB~-mPvbW27cSJH(Md_QD|A;v zRf0;1stL0F%%5oepueNNGi|7KqEfB%Ot936QR-43G0t;bSzhL_egBP^=gnpADLc4% z0|v8@v%~uqYsdfgbueV}1p+Uxt~h`lz=g;_ASN%)xxm}$%V$I19dMa|*YERu1(5qu z^=RCuA{{&gIN$21I^5<@fMgj)Q%_{^S{8zW5tHClN^o8-@vT7={T*c}1wT6lWf6bw z>L>&t6;_^tpLLz-6GM7m0c>tv6^fDvp#Sja5eATG#UM{=TMmN%;HqZX;o=fSDf;2n z+QLyhv58zh?ICo7O5B=(3N6R7PdV8oH_t}fMLH} z|Gh$oQO0|If2wzum*FhwjfHh5k6!o@A|C_w z<%;QOFDeS00jBJ2St!hi?^(>i_0YhBltD~5x2wsD-EKnO@6!e>eYcX-`3%(XyzN{1LUXftLzE}ua+{YB>o=B!u-rX@$J0S@% zluX#?ZM_~^+bGMJ5z%yMFf6rxAqM@vF#Cwxu0#rF z1tTw#C*&z{SKS|TG@h$}mA@~pWmnfhE$~vTK?gxSA52UM|sT`CX$&atVmy)o<}-R&rUDr#YV(-S`bj;?Rr^Z@-drc zWnB{Z8*^7Q0WnV$vGNa*az1JMXh2B{Db<6-5pTih1S*N_w1Rh-VETYU5vhcj6R9(O z`7}YEOnxqp3UP?;DgK>O7RwB{xk)}?Q-bdvbVHdLgU}@r#qFI!q>C*>?zu-{z)^RgD1g*ugho#M!kA{HVgt%6W6}_A zzvtnk&2=9>s7VXr@b?l;SwzgasySV>Ql5f6vy+_KseIKN?IqE$+L6A8-WQC>d1 zHw^qd!Iz;FTUkaXVkn{yV9wW=0b`+~|I;I#d6K>m6y*2l>O}G@SpiC(W$X`;w>p88 zpjbeB6ml_XJc_<~nbEIds9!MmjnY4IjFLkxwkIZQam*Ls$jpyK6|?d4`&?E|6v@%1 z>h~g1P8KaBrs3qSnHbWzMFZs}sDGhhO~cQ2Jk`oCR1$_B2L$rI=gqi4^h91`AT~f* z>9^4irQ+s)oTd<9W*etl^?}Io3XkwkGsPG7w%4JWsZ#UBAoZ1_f<+r?f#hh-!G@#I z{h6u0gR)vF_c0pO>@n&2R0qJ`R(zjRev`uR;nnQ`W9>HA)76>o2!(-yXQAK&Cr1dN)XeXT?mla$|@h7qgyKl65Og(JK)>Ck9v|lak3QWlD*v z&Oti)XC`SYXG&`!&(8iev)kf-J%cS8HfI7${PN zE#rrvW=0f*N{KkqoCUL3nK)gVA8i;bJMlpNy9Bc~)F60v?#i7@jqIFAS{pKXjz*eC zQm!^0^s{rJ0&a}R_6G#aIQxbbr58n=>(#?9m^Lf5l5Q-Ep97;WIwR6roLmRUF$IlR2e>8Dm(N-l72Uiw&&)0M2fau&)O22X|J zH0D04w>4%;!N#{h3!=mNca;PJPKUy&obC-ye`Zrd?wPUfq4ulCA04vmI82ShO@#PV zGXAkBFpzu*U$FeT;gDXfB2s@OL9u$;AM}P~KJXF&Ka&h;g#!|#{Md3wl0P1F!ObU8 zY{DPClZkw)$Fi@M4FYZz-zn^5HAH3)gOT<+Ht*f%O1tsFMqlQ&_NHu$NYX8fo#8Tu zQji9^id~97^%Xlu9I)=)?=hyAT~Hra#c~s+KOBOFepCM%qBSIMvnhQjeAL5Kc@rV`i-nqF`}U2a#{c8yIKP06 zHtbzwK8cs&Ft&Q}Y%0ZL;=@C#|5Ukc@yN9exvy<>C)1p4jvYT+lq6?�a#bW3-fu9DxS)UwT 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%0DUedn0S8RjFRK=91c^(fkYD3&yMZUrhtiP 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 diff --git a/chart/jenkins-operator/charts/cert-manager-v1.5.1.tgz b/chart/jenkins-operator/charts/cert-manager-v1.5.1.tgz new file mode 100644 index 0000000000000000000000000000000000000000..a08bae5945cc1384ede20e16bd25093d7af512ff GIT binary patch literal 156746 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⁢}5-J^i_99UwZN1GHo%0OVZq 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

    d3}*7;Dq2`nxlB; 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 literal 0 HcmV?d00001 diff --git a/chart/jenkins-operator/crds/cert-manager.crds.yaml b/chart/jenkins-operator/crds/cert-manager.crds.yaml new file mode 100644 index 000000000..3425d11b9 --- /dev/null +++ b/chart/jenkins-operator/crds/cert-manager.crds.yaml @@ -0,0 +1,16101 @@ +# Copyright The cert-manager Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: certificaterequests.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: cert-manager.io + names: + kind: CertificateRequest + listKind: CertificateRequestList + plural: certificaterequests + shortNames: + - cr + - crs + singular: certificaterequest + categories: + - cert-manager + scope: Namespaced + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - name: v1alpha2 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Approved")].status + name: Approved + type: string + - jsonPath: .status.conditions[?(@.type=="Denied")].status + name: Denied + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + type: string + - jsonPath: .spec.username + name: Requestor + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the CertificateRequest resource. + type: object + required: + - csr + - issuerRef + properties: + csr: + description: The PEM-encoded x509 certificate signing request to be submitted to the CA for signing. + type: string + format: byte + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. + type: string + extra: + description: Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: object + additionalProperties: + type: array + items: + type: string + groups: + description: Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: array + items: + type: string + x-kubernetes-list-type: atomic + isCA: + description: IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + uid: + description: UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + username: + description: Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + status: + description: Status of the CertificateRequest. This is set and managed automatically. + type: object + properties: + ca: + description: The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available. + type: string + format: byte + certificate: + description: The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field. + type: string + format: byte + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`. + type: array + items: + description: CertificateRequestCondition contains condition information for a CertificateRequest. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`). + type: string + failureTime: + description: FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + served: true + storage: false + - name: v1alpha3 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Approved")].status + name: Approved + type: string + - jsonPath: .status.conditions[?(@.type=="Denied")].status + name: Denied + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + type: string + - jsonPath: .spec.username + name: Requestor + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the CertificateRequest resource. + type: object + required: + - csr + - issuerRef + properties: + csr: + description: The PEM-encoded x509 certificate signing request to be submitted to the CA for signing. + type: string + format: byte + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. + type: string + extra: + description: Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: object + additionalProperties: + type: array + items: + type: string + groups: + description: Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: array + items: + type: string + x-kubernetes-list-type: atomic + isCA: + description: IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + uid: + description: UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + username: + description: Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + status: + description: Status of the CertificateRequest. This is set and managed automatically. + type: object + properties: + ca: + description: The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available. + type: string + format: byte + certificate: + description: The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field. + type: string + format: byte + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`. + type: array + items: + description: CertificateRequestCondition contains condition information for a CertificateRequest. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`). + type: string + failureTime: + description: FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + served: true + storage: false + - name: v1beta1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Approved")].status + name: Approved + type: string + - jsonPath: .status.conditions[?(@.type=="Denied")].status + name: Denied + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + type: string + - jsonPath: .spec.username + name: Requestor + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used." + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the CertificateRequest resource. + type: object + required: + - issuerRef + - request + properties: + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. + type: string + extra: + description: Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: object + additionalProperties: + type: array + items: + type: string + groups: + description: Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: array + items: + type: string + x-kubernetes-list-type: atomic + isCA: + description: IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + request: + description: The PEM-encoded x509 certificate signing request to be submitted to the CA for signing. + type: string + format: byte + uid: + description: UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + username: + description: Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + status: + description: Status of the CertificateRequest. This is set and managed automatically. + type: object + properties: + ca: + description: The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available. + type: string + format: byte + certificate: + description: The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field. + type: string + format: byte + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`. + type: array + items: + description: CertificateRequestCondition contains condition information for a CertificateRequest. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`). + type: string + failureTime: + description: FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + served: true + storage: false + - name: v1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Approved")].status + name: Approved + type: string + - jsonPath: .status.conditions[?(@.type=="Denied")].status + name: Denied + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + type: string + - jsonPath: .spec.username + name: Requestor + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A CertificateRequest is used to request a signed certificate from one of the configured issuers. \n All fields within the CertificateRequest's `spec` are immutable after creation. A CertificateRequest will either succeed or fail, as denoted by its `status.state` field. \n A CertificateRequest is a one-shot resource, meaning it represents a single point in time request for a certificate and cannot be re-used." + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the CertificateRequest resource. + type: object + required: + - issuerRef + - request + properties: + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. + type: string + extra: + description: Extra contains extra attributes of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: object + additionalProperties: + type: array + items: + type: string + groups: + description: Groups contains group membership of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: array + items: + type: string + x-kubernetes-list-type: atomic + isCA: + description: IsCA will request to mark the certificate as valid for certificate signing when submitting to the issuer. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this CertificateRequest. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the CertificateRequest will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. The group field refers to the API group of the issuer which defaults to `cert-manager.io` if empty. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + request: + description: The PEM-encoded x509 certificate signing request to be submitted to the CA for signing. + type: string + format: byte + uid: + description: UID contains the uid of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. If usages are set they SHOULD be encoded inside the CSR spec Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + username: + description: Username contains the name of the user that created the CertificateRequest. Populated by the cert-manager webhook on creation and immutable. + type: string + status: + description: Status of the CertificateRequest. This is set and managed automatically. + type: object + properties: + ca: + description: The PEM encoded x509 certificate of the signer, also known as the CA (Certificate Authority). This is set on a best-effort basis by different issuers. If not set, the CA is assumed to be unknown/not available. + type: string + format: byte + certificate: + description: The PEM encoded x509 certificate resulting from the certificate signing request. If not set, the CertificateRequest has either not been completed or has failed. More information on failure can be found by checking the `conditions` field. + type: string + format: byte + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready` and `InvalidRequest`. + type: array + items: + description: CertificateRequestCondition contains condition information for a CertificateRequest. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `InvalidRequest`, `Approved`, `Denied`). + type: string + failureTime: + description: FailureTime stores the time that this CertificateRequest failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + served: true + storage: true +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: certificates.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: cert-manager.io + names: + kind: Certificate + listKind: CertificateList + plural: certificates + shortNames: + - cert + - certs + singular: certificate + categories: + - cert-manager + scope: Namespaced + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - name: v1alpha2 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.secretName + name: Secret + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A Certificate resource should be created to ensure an up to date and signed x509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`. \n The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`)." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Certificate resource. + type: object + required: + - issuerRef + - secretName + properties: + commonName: + description: 'CommonName is a common name to be used on the Certificate. The CommonName should have a length of 64 characters or fewer to avoid generating invalid CSRs. This value is ignored by TLS clients when any subject alt name is set. This is x509 behaviour: https://tools.ietf.org/html/rfc6125#section-6.4.4' + type: string + dnsNames: + description: DNSNames is a list of DNS subjectAltNames to be set on the Certificate. + type: array + items: + type: string + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. If unset this defaults to 90 days. Certificate will be renewed either 2/3 through its duration or `renewBefore` period before its expiry, whichever is later. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + emailSANs: + description: EmailSANs is a list of email subjectAltNames to be set on the Certificate. + type: array + items: + type: string + encodeUsagesInRequest: + description: EncodeUsagesInRequest controls whether key usages should be present in the CertificateRequest + type: boolean + ipAddresses: + description: IPAddresses is a list of IP address subjectAltNames to be set on the Certificate. + type: array + items: + type: string + isCA: + description: IsCA will mark this Certificate as valid for certificate signing. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this certificate. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the Certificate will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + keyAlgorithm: + description: KeyAlgorithm is the private key algorithm of the corresponding private key for this certificate. If provided, allowed values are either `rsa` or `ecdsa` If `keyAlgorithm` is specified and `keySize` is not provided, key size of 256 will be used for `ecdsa` key algorithm and key size of 2048 will be used for `rsa` key algorithm. + type: string + enum: + - rsa + - ecdsa + keyEncoding: + description: KeyEncoding is the private key cryptography standards (PKCS) for this certificate's private key to be encoded in. If provided, allowed values are `pkcs1` and `pkcs8` standing for PKCS#1 and PKCS#8, respectively. If KeyEncoding is not specified, then `pkcs1` will be used by default. + type: string + enum: + - pkcs1 + - pkcs8 + keySize: + description: KeySize is the key bit size of the corresponding private key for this certificate. If `keyAlgorithm` is set to `rsa`, valid values are `2048`, `4096` or `8192`, and will default to `2048` if not specified. If `keyAlgorithm` is set to `ecdsa`, valid values are `256`, `384` or `521`, and will default to `256` if not specified. No other values are allowed. + type: integer + keystores: + description: Keystores configures additional keystore output formats stored in the `secretName` Secret resource. + type: object + properties: + jks: + description: JKS configures options for storing a JKS keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables JKS keystore creation for the Certificate. If true, a file named `keystore.jks` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the JKS keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + pkcs12: + description: PKCS12 configures options for storing a PKCS12 keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables PKCS12 keystore creation for the Certificate. If true, a file named `keystore.p12` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the PKCS12 keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + organization: + description: Organization is a list of organizations to be used on the Certificate. + type: array + items: + type: string + privateKey: + description: Options to control private keys used for the Certificate. + type: object + properties: + rotationPolicy: + description: RotationPolicy controls how private keys should be regenerated when a re-issuance is being processed. If set to Never, a private key will only be generated if one does not already exist in the target `spec.secretName`. If one does exists but it does not have the correct algorithm or size, a warning will be raised to await user intervention. If set to Always, a private key matching the specified requirements will be generated whenever a re-issuance occurs. Default is 'Never' for backward compatibility. + type: string + renewBefore: + description: How long before the currently issued certificate's expiry cert-manager should renew the certificate. The default is 2/3 of the issued certificate's duration. Minimum accepted value is 5 minutes. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + revisionHistoryLimit: + description: revisionHistoryLimit is the maximum number of CertificateRequest revisions that are maintained in the Certificate's history. Each revision represents a single `CertificateRequest` created by this Certificate, either when it was created, renewed, or Spec was changed. Revisions will be removed by oldest first if the number of revisions exceeds this number. If set, revisionHistoryLimit must be a value of `1` or greater. If unset (`nil`), revisions will not be garbage collected. Default value is `nil`. + type: integer + format: int32 + secretName: + description: SecretName is the name of the secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer. + type: string + secretTemplate: + description: SecretTemplate defines annotations and labels to be propagated to the Kubernetes Secret when it is created or updated. Once created, labels and annotations are not yet removed from the Secret when they are removed from the template. See https://github.com/jetstack/cert-manager/issues/4292 + type: object + properties: + annotations: + description: Annotations is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + labels: + description: Labels is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + subject: + description: Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name). + type: object + properties: + countries: + description: Countries to be used on the Certificate. + type: array + items: + type: string + localities: + description: Cities to be used on the Certificate. + type: array + items: + type: string + organizationalUnits: + description: Organizational Units to be used on the Certificate. + type: array + items: + type: string + postalCodes: + description: Postal codes to be used on the Certificate. + type: array + items: + type: string + provinces: + description: State/Provinces to be used on the Certificate. + type: array + items: + type: string + serialNumber: + description: Serial number to be used on the Certificate. + type: string + streetAddresses: + description: Street addresses to be used on the Certificate. + type: array + items: + type: string + uriSANs: + description: URISANs is a list of URI subjectAltNames to be set on the Certificate. + type: array + items: + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + status: + description: Status of the Certificate. This is set and managed automatically. + type: object + properties: + conditions: + description: List of status conditions to indicate the status of certificates. Known condition types are `Ready` and `Issuing`. + type: array + items: + description: CertificateCondition contains condition information for an Certificate. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Certificate. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `Issuing`). + type: string + lastFailureTime: + description: LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time. + type: string + format: date-time + nextPrivateKeySecretName: + description: The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False. + type: string + notAfter: + description: The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`. + type: string + format: date-time + notBefore: + description: The time after which the certificate stored in the secret named by this resource in spec.secretName is valid. + type: string + format: date-time + renewalTime: + description: RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled. + type: string + format: date-time + revision: + description: "The current 'revision' of the certificate as issued. \n When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field." + type: integer + served: true + storage: false + - name: v1alpha3 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.secretName + name: Secret + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A Certificate resource should be created to ensure an up to date and signed x509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`. \n The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`)." + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Certificate resource. + type: object + required: + - issuerRef + - secretName + properties: + commonName: + description: 'CommonName is a common name to be used on the Certificate. The CommonName should have a length of 64 characters or fewer to avoid generating invalid CSRs. This value is ignored by TLS clients when any subject alt name is set. This is x509 behaviour: https://tools.ietf.org/html/rfc6125#section-6.4.4' + type: string + dnsNames: + description: DNSNames is a list of DNS subjectAltNames to be set on the Certificate. + type: array + items: + type: string + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. If unset this defaults to 90 days. Certificate will be renewed either 2/3 through its duration or `renewBefore` period before its expiry, whichever is later. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + emailSANs: + description: EmailSANs is a list of email subjectAltNames to be set on the Certificate. + type: array + items: + type: string + encodeUsagesInRequest: + description: EncodeUsagesInRequest controls whether key usages should be present in the CertificateRequest + type: boolean + ipAddresses: + description: IPAddresses is a list of IP address subjectAltNames to be set on the Certificate. + type: array + items: + type: string + isCA: + description: IsCA will mark this Certificate as valid for certificate signing. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this certificate. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the Certificate will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + keyAlgorithm: + description: KeyAlgorithm is the private key algorithm of the corresponding private key for this certificate. If provided, allowed values are either `rsa` or `ecdsa` If `keyAlgorithm` is specified and `keySize` is not provided, key size of 256 will be used for `ecdsa` key algorithm and key size of 2048 will be used for `rsa` key algorithm. + type: string + enum: + - rsa + - ecdsa + keyEncoding: + description: KeyEncoding is the private key cryptography standards (PKCS) for this certificate's private key to be encoded in. If provided, allowed values are `pkcs1` and `pkcs8` standing for PKCS#1 and PKCS#8, respectively. If KeyEncoding is not specified, then `pkcs1` will be used by default. + type: string + enum: + - pkcs1 + - pkcs8 + keySize: + description: KeySize is the key bit size of the corresponding private key for this certificate. If `keyAlgorithm` is set to `rsa`, valid values are `2048`, `4096` or `8192`, and will default to `2048` if not specified. If `keyAlgorithm` is set to `ecdsa`, valid values are `256`, `384` or `521`, and will default to `256` if not specified. No other values are allowed. + type: integer + keystores: + description: Keystores configures additional keystore output formats stored in the `secretName` Secret resource. + type: object + properties: + jks: + description: JKS configures options for storing a JKS keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables JKS keystore creation for the Certificate. If true, a file named `keystore.jks` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. A file named `truststore.jks` will also be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef` containing the issuing Certificate Authority. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the JKS keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + pkcs12: + description: PKCS12 configures options for storing a PKCS12 keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables PKCS12 keystore creation for the Certificate. If true, a file named `keystore.p12` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. A file named `truststore.p12` will also be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef` containing the issuing Certificate Authority. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the PKCS12 keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + privateKey: + description: Options to control private keys used for the Certificate. + type: object + properties: + rotationPolicy: + description: RotationPolicy controls how private keys should be regenerated when a re-issuance is being processed. If set to Never, a private key will only be generated if one does not already exist in the target `spec.secretName`. If one does exists but it does not have the correct algorithm or size, a warning will be raised to await user intervention. If set to Always, a private key matching the specified requirements will be generated whenever a re-issuance occurs. Default is 'Never' for backward compatibility. + type: string + renewBefore: + description: How long before the currently issued certificate's expiry cert-manager should renew the certificate. The default is 2/3 of the issued certificate's duration. Minimum accepted value is 5 minutes. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + revisionHistoryLimit: + description: revisionHistoryLimit is the maximum number of CertificateRequest revisions that are maintained in the Certificate's history. Each revision represents a single `CertificateRequest` created by this Certificate, either when it was created, renewed, or Spec was changed. Revisions will be removed by oldest first if the number of revisions exceeds this number. If set, revisionHistoryLimit must be a value of `1` or greater. If unset (`nil`), revisions will not be garbage collected. Default value is `nil`. + type: integer + format: int32 + secretName: + description: SecretName is the name of the secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer. + type: string + secretTemplate: + description: SecretTemplate defines annotations and labels to be propagated to the Kubernetes Secret when it is created or updated. Once created, labels and annotations are not yet removed from the Secret when they are removed from the template. See https://github.com/jetstack/cert-manager/issues/4292 + type: object + properties: + annotations: + description: Annotations is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + labels: + description: Labels is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + subject: + description: Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name). + type: object + properties: + countries: + description: Countries to be used on the Certificate. + type: array + items: + type: string + localities: + description: Cities to be used on the Certificate. + type: array + items: + type: string + organizationalUnits: + description: Organizational Units to be used on the Certificate. + type: array + items: + type: string + organizations: + description: Organizations to be used on the Certificate. + type: array + items: + type: string + postalCodes: + description: Postal codes to be used on the Certificate. + type: array + items: + type: string + provinces: + description: State/Provinces to be used on the Certificate. + type: array + items: + type: string + serialNumber: + description: Serial number to be used on the Certificate. + type: string + streetAddresses: + description: Street addresses to be used on the Certificate. + type: array + items: + type: string + uriSANs: + description: URISANs is a list of URI subjectAltNames to be set on the Certificate. + type: array + items: + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + status: + description: Status of the Certificate. This is set and managed automatically. + type: object + properties: + conditions: + description: List of status conditions to indicate the status of certificates. Known condition types are `Ready` and `Issuing`. + type: array + items: + description: CertificateCondition contains condition information for an Certificate. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Certificate. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `Issuing`). + type: string + lastFailureTime: + description: LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time. + type: string + format: date-time + nextPrivateKeySecretName: + description: The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False. + type: string + notAfter: + description: The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`. + type: string + format: date-time + notBefore: + description: The time after which the certificate stored in the secret named by this resource in spec.secretName is valid. + type: string + format: date-time + renewalTime: + description: RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled. + type: string + format: date-time + revision: + description: "The current 'revision' of the certificate as issued. \n When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field." + type: integer + served: true + storage: false + - name: v1beta1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.secretName + name: Secret + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A Certificate resource should be created to ensure an up to date and signed x509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`. \n The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`)." + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Certificate resource. + type: object + required: + - issuerRef + - secretName + properties: + commonName: + description: 'CommonName is a common name to be used on the Certificate. The CommonName should have a length of 64 characters or fewer to avoid generating invalid CSRs. This value is ignored by TLS clients when any subject alt name is set. This is x509 behaviour: https://tools.ietf.org/html/rfc6125#section-6.4.4' + type: string + dnsNames: + description: DNSNames is a list of DNS subjectAltNames to be set on the Certificate. + type: array + items: + type: string + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. If unset this defaults to 90 days. Certificate will be renewed either 2/3 through its duration or `renewBefore` period before its expiry, whichever is later. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + emailSANs: + description: EmailSANs is a list of email subjectAltNames to be set on the Certificate. + type: array + items: + type: string + encodeUsagesInRequest: + description: EncodeUsagesInRequest controls whether key usages should be present in the CertificateRequest + type: boolean + ipAddresses: + description: IPAddresses is a list of IP address subjectAltNames to be set on the Certificate. + type: array + items: + type: string + isCA: + description: IsCA will mark this Certificate as valid for certificate signing. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this certificate. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the Certificate will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + keystores: + description: Keystores configures additional keystore output formats stored in the `secretName` Secret resource. + type: object + properties: + jks: + description: JKS configures options for storing a JKS keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables JKS keystore creation for the Certificate. If true, a file named `keystore.jks` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the JKS keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + pkcs12: + description: PKCS12 configures options for storing a PKCS12 keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables PKCS12 keystore creation for the Certificate. If true, a file named `keystore.p12` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the PKCS12 keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + privateKey: + description: Options to control private keys used for the Certificate. + type: object + properties: + algorithm: + description: Algorithm is the private key algorithm of the corresponding private key for this certificate. If provided, allowed values are either `RSA` or `ECDSA` If `algorithm` is specified and `size` is not provided, key size of 256 will be used for `ECDSA` key algorithm and key size of 2048 will be used for `RSA` key algorithm. + type: string + enum: + - RSA + - ECDSA + encoding: + description: The private key cryptography standards (PKCS) encoding for this certificate's private key to be encoded in. If provided, allowed values are `PKCS1` and `PKCS8` standing for PKCS#1 and PKCS#8, respectively. Defaults to `PKCS1` if not specified. + type: string + enum: + - PKCS1 + - PKCS8 + rotationPolicy: + description: RotationPolicy controls how private keys should be regenerated when a re-issuance is being processed. If set to Never, a private key will only be generated if one does not already exist in the target `spec.secretName`. If one does exists but it does not have the correct algorithm or size, a warning will be raised to await user intervention. If set to Always, a private key matching the specified requirements will be generated whenever a re-issuance occurs. Default is 'Never' for backward compatibility. + type: string + size: + description: Size is the key bit size of the corresponding private key for this certificate. If `algorithm` is set to `RSA`, valid values are `2048`, `4096` or `8192`, and will default to `2048` if not specified. If `algorithm` is set to `ECDSA`, valid values are `256`, `384` or `521`, and will default to `256` if not specified. No other values are allowed. + type: integer + renewBefore: + description: How long before the currently issued certificate's expiry cert-manager should renew the certificate. The default is 2/3 of the issued certificate's duration. Minimum accepted value is 5 minutes. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + revisionHistoryLimit: + description: revisionHistoryLimit is the maximum number of CertificateRequest revisions that are maintained in the Certificate's history. Each revision represents a single `CertificateRequest` created by this Certificate, either when it was created, renewed, or Spec was changed. Revisions will be removed by oldest first if the number of revisions exceeds this number. If set, revisionHistoryLimit must be a value of `1` or greater. If unset (`nil`), revisions will not be garbage collected. Default value is `nil`. + type: integer + format: int32 + secretName: + description: SecretName is the name of the secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer. + type: string + secretTemplate: + description: SecretTemplate defines annotations and labels to be propagated to the Kubernetes Secret when it is created or updated. Once created, labels and annotations are not yet removed from the Secret when they are removed from the template. See https://github.com/jetstack/cert-manager/issues/4292 + type: object + properties: + annotations: + description: Annotations is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + labels: + description: Labels is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + subject: + description: Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name). + type: object + properties: + countries: + description: Countries to be used on the Certificate. + type: array + items: + type: string + localities: + description: Cities to be used on the Certificate. + type: array + items: + type: string + organizationalUnits: + description: Organizational Units to be used on the Certificate. + type: array + items: + type: string + organizations: + description: Organizations to be used on the Certificate. + type: array + items: + type: string + postalCodes: + description: Postal codes to be used on the Certificate. + type: array + items: + type: string + provinces: + description: State/Provinces to be used on the Certificate. + type: array + items: + type: string + serialNumber: + description: Serial number to be used on the Certificate. + type: string + streetAddresses: + description: Street addresses to be used on the Certificate. + type: array + items: + type: string + uriSANs: + description: URISANs is a list of URI subjectAltNames to be set on the Certificate. + type: array + items: + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + status: + description: Status of the Certificate. This is set and managed automatically. + type: object + properties: + conditions: + description: List of status conditions to indicate the status of certificates. Known condition types are `Ready` and `Issuing`. + type: array + items: + description: CertificateCondition contains condition information for an Certificate. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Certificate. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `Issuing`). + type: string + lastFailureTime: + description: LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time. + type: string + format: date-time + nextPrivateKeySecretName: + description: The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False. + type: string + notAfter: + description: The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`. + type: string + format: date-time + notBefore: + description: The time after which the certificate stored in the secret named by this resource in spec.secretName is valid. + type: string + format: date-time + renewalTime: + description: RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled. + type: string + format: date-time + revision: + description: "The current 'revision' of the certificate as issued. \n When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field." + type: integer + served: true + storage: false + - name: v1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .spec.secretName + name: Secret + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: "A Certificate resource should be created to ensure an up to date and signed x509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`. \n The stored certificate will be renewed before it expires (as configured by `spec.renewBefore`)." + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Certificate resource. + type: object + required: + - issuerRef + - secretName + properties: + commonName: + description: 'CommonName is a common name to be used on the Certificate. The CommonName should have a length of 64 characters or fewer to avoid generating invalid CSRs. This value is ignored by TLS clients when any subject alt name is set. This is x509 behaviour: https://tools.ietf.org/html/rfc6125#section-6.4.4' + type: string + dnsNames: + description: DNSNames is a list of DNS subjectAltNames to be set on the Certificate. + type: array + items: + type: string + duration: + description: The requested 'duration' (i.e. lifetime) of the Certificate. This option may be ignored/overridden by some issuer types. If unset this defaults to 90 days. Certificate will be renewed either 2/3 through its duration or `renewBefore` period before its expiry, whichever is later. Minimum accepted duration is 1 hour. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + emailAddresses: + description: EmailAddresses is a list of email subjectAltNames to be set on the Certificate. + type: array + items: + type: string + encodeUsagesInRequest: + description: EncodeUsagesInRequest controls whether key usages should be present in the CertificateRequest + type: boolean + ipAddresses: + description: IPAddresses is a list of IP address subjectAltNames to be set on the Certificate. + type: array + items: + type: string + isCA: + description: IsCA will mark this Certificate as valid for certificate signing. This will automatically add the `cert sign` usage to the list of `usages`. + type: boolean + issuerRef: + description: IssuerRef is a reference to the issuer for this certificate. If the `kind` field is not set, or set to `Issuer`, an Issuer resource with the given name in the same namespace as the Certificate will be used. If the `kind` field is set to `ClusterIssuer`, a ClusterIssuer with the provided name will be used. The `name` field in this stanza is required at all times. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + keystores: + description: Keystores configures additional keystore output formats stored in the `secretName` Secret resource. + type: object + properties: + jks: + description: JKS configures options for storing a JKS keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables JKS keystore creation for the Certificate. If true, a file named `keystore.jks` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. A file named `truststore.jks` will also be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef` containing the issuing Certificate Authority + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the JKS keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + pkcs12: + description: PKCS12 configures options for storing a PKCS12 keystore in the `spec.secretName` Secret resource. + type: object + required: + - create + - passwordSecretRef + properties: + create: + description: Create enables PKCS12 keystore creation for the Certificate. If true, a file named `keystore.p12` will be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef`. The keystore file will only be updated upon re-issuance. A file named `truststore.p12` will also be created in the target Secret resource, encrypted using the password stored in `passwordSecretRef` containing the issuing Certificate Authority + type: boolean + passwordSecretRef: + description: PasswordSecretRef is a reference to a key in a Secret resource containing the password used to encrypt the PKCS12 keystore. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + privateKey: + description: Options to control private keys used for the Certificate. + type: object + properties: + algorithm: + description: Algorithm is the private key algorithm of the corresponding private key for this certificate. If provided, allowed values are either `RSA`,`Ed25519` or `ECDSA` If `algorithm` is specified and `size` is not provided, key size of 256 will be used for `ECDSA` key algorithm and key size of 2048 will be used for `RSA` key algorithm. key size is ignored when using the `Ed25519` key algorithm. + type: string + enum: + - RSA + - ECDSA + - Ed25519 + encoding: + description: The private key cryptography standards (PKCS) encoding for this certificate's private key to be encoded in. If provided, allowed values are `PKCS1` and `PKCS8` standing for PKCS#1 and PKCS#8, respectively. Defaults to `PKCS1` if not specified. + type: string + enum: + - PKCS1 + - PKCS8 + rotationPolicy: + description: RotationPolicy controls how private keys should be regenerated when a re-issuance is being processed. If set to Never, a private key will only be generated if one does not already exist in the target `spec.secretName`. If one does exists but it does not have the correct algorithm or size, a warning will be raised to await user intervention. If set to Always, a private key matching the specified requirements will be generated whenever a re-issuance occurs. Default is 'Never' for backward compatibility. + type: string + size: + description: Size is the key bit size of the corresponding private key for this certificate. If `algorithm` is set to `RSA`, valid values are `2048`, `4096` or `8192`, and will default to `2048` if not specified. If `algorithm` is set to `ECDSA`, valid values are `256`, `384` or `521`, and will default to `256` if not specified. If `algorithm` is set to `Ed25519`, Size is ignored. No other values are allowed. + type: integer + renewBefore: + description: How long before the currently issued certificate's expiry cert-manager should renew the certificate. The default is 2/3 of the issued certificate's duration. Minimum accepted value is 5 minutes. Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration + type: string + revisionHistoryLimit: + description: revisionHistoryLimit is the maximum number of CertificateRequest revisions that are maintained in the Certificate's history. Each revision represents a single `CertificateRequest` created by this Certificate, either when it was created, renewed, or Spec was changed. Revisions will be removed by oldest first if the number of revisions exceeds this number. If set, revisionHistoryLimit must be a value of `1` or greater. If unset (`nil`), revisions will not be garbage collected. Default value is `nil`. + type: integer + format: int32 + secretName: + description: SecretName is the name of the secret resource that will be automatically created and managed by this Certificate resource. It will be populated with a private key and certificate, signed by the denoted issuer. + type: string + secretTemplate: + description: SecretTemplate defines annotations and labels to be propagated to the Kubernetes Secret when it is created or updated. Once created, labels and annotations are not yet removed from the Secret when they are removed from the template. See https://github.com/jetstack/cert-manager/issues/4292 + type: object + properties: + annotations: + description: Annotations is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + labels: + description: Labels is a key value map to be copied to the target Kubernetes Secret. + type: object + additionalProperties: + type: string + subject: + description: Full X509 name specification (https://golang.org/pkg/crypto/x509/pkix/#Name). + type: object + properties: + countries: + description: Countries to be used on the Certificate. + type: array + items: + type: string + localities: + description: Cities to be used on the Certificate. + type: array + items: + type: string + organizationalUnits: + description: Organizational Units to be used on the Certificate. + type: array + items: + type: string + organizations: + description: Organizations to be used on the Certificate. + type: array + items: + type: string + postalCodes: + description: Postal codes to be used on the Certificate. + type: array + items: + type: string + provinces: + description: State/Provinces to be used on the Certificate. + type: array + items: + type: string + serialNumber: + description: Serial number to be used on the Certificate. + type: string + streetAddresses: + description: Street addresses to be used on the Certificate. + type: array + items: + type: string + uris: + description: URIs is a list of URI subjectAltNames to be set on the Certificate. + type: array + items: + type: string + usages: + description: Usages is the set of x509 usages that are requested for the certificate. Defaults to `digital signature` and `key encipherment` if not specified. + type: array + items: + description: 'KeyUsage specifies valid usage contexts for keys. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid KeyUsage values are as follows: "signing", "digital signature", "content commitment", "key encipherment", "key agreement", "data encipherment", "cert sign", "crl sign", "encipher only", "decipher only", "any", "server auth", "client auth", "code signing", "email protection", "s/mime", "ipsec end system", "ipsec tunnel", "ipsec user", "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"' + type: string + enum: + - signing + - digital signature + - content commitment + - key encipherment + - key agreement + - data encipherment + - cert sign + - crl sign + - encipher only + - decipher only + - any + - server auth + - client auth + - code signing + - email protection + - s/mime + - ipsec end system + - ipsec tunnel + - ipsec user + - timestamping + - ocsp signing + - microsoft sgc + - netscape sgc + status: + description: Status of the Certificate. This is set and managed automatically. + type: object + properties: + conditions: + description: List of status conditions to indicate the status of certificates. Known condition types are `Ready` and `Issuing`. + type: array + items: + description: CertificateCondition contains condition information for an Certificate. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Certificate. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`, `Issuing`). + type: string + lastFailureTime: + description: LastFailureTime is the time as recorded by the Certificate controller of the most recent failure to complete a CertificateRequest for this Certificate resource. If set, cert-manager will not re-request another Certificate until 1 hour has elapsed from this time. + type: string + format: date-time + nextPrivateKeySecretName: + description: The name of the Secret resource containing the private key to be used for the next certificate iteration. The keymanager controller will automatically set this field if the `Issuing` condition is set to `True`. It will automatically unset this field when the Issuing condition is not set or False. + type: string + notAfter: + description: The expiration time of the certificate stored in the secret named by this resource in `spec.secretName`. + type: string + format: date-time + notBefore: + description: The time after which the certificate stored in the secret named by this resource in spec.secretName is valid. + type: string + format: date-time + renewalTime: + description: RenewalTime is the time at which the certificate will be next renewed. If not set, no upcoming renewal is scheduled. + type: string + format: date-time + revision: + description: "The current 'revision' of the certificate as issued. \n When a CertificateRequest resource is created, it will have the `cert-manager.io/certificate-revision` set to one greater than the current value of this field. \n Upon issuance, this field will be set to the value of the annotation on the CertificateRequest resource used to issue the certificate. \n Persisting the value on the CertificateRequest resource allows the certificates controller to know whether a request is part of an old issuance or if it is part of the ongoing revision's issuance by checking if the revision value in the annotation is greater than this field." + type: integer + served: true + storage: true +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: challenges.acme.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: acme.cert-manager.io + names: + kind: Challenge + listKind: ChallengeList + plural: challenges + singular: challenge + categories: + - cert-manager + - cert-manager-acme + scope: Namespaced + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.dnsName + name: Domain + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1alpha2 + schema: + openAPIV3Schema: + description: Challenge is a type to represent a Challenge request with an ACME server + type: object + required: + - metadata + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - authzURL + - dnsName + - issuerRef + - key + - solver + - token + - type + - url + properties: + authzURL: + description: AuthzURL is the URL to the ACME Authorization resource that this challenge is a part of. + type: string + dnsName: + description: DNSName is the identifier that this challenge is for, e.g. example.com. If the requested DNSName is a 'wildcard', this field MUST be set to the non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`. + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Challenge. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Challenge will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + key: + description: 'Key is the ACME challenge key for this challenge For HTTP01 challenges, this is the value that must be responded with to complete the HTTP01 challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded SHA256 sum of the `.` text that must be set as the TXT record content.' + type: string + solver: + description: Solver contains the domain solving configuration that should be used to solve this challenge resource. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + token: + description: Token is the ACME challenge token for this challenge. This is the raw value returned from the ACME server. + type: string + type: + description: Type is the type of ACME challenge this resource represents. One of "http-01" or "dns-01". + type: string + enum: + - http-01 + - dns-01 + url: + description: URL is the URL of the ACME Challenge resource for this challenge. This can be used to lookup details about the status of this challenge. + type: string + wildcard: + description: Wildcard will be true if this challenge is for a wildcard identifier, for example '*.example.com'. + type: boolean + status: + type: object + properties: + presented: + description: Presented will be set to true if the challenge values for this challenge are currently 'presented'. This *does not* imply the self check is passing. Only that the values have been 'submitted' for the appropriate challenge mechanism (i.e. the DNS01 TXT record has been presented, or the HTTP01 configuration has been configured). + type: boolean + processing: + description: Processing is used to denote whether this challenge should be processed or not. This field will only be set to true by the 'scheduling' component. It will only be set to false by the 'challenges' controller, after the challenge has reached a final state or timed out. If this field is set to false, the challenge controller will not take any more action. + type: boolean + reason: + description: Reason contains human readable information on why the Challenge is in the current state. + type: string + state: + description: State contains the current 'state' of the challenge. If not set, the state of the challenge is unknown. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + served: true + storage: false + subresources: + status: {} + - additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.dnsName + name: Domain + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1alpha3 + schema: + openAPIV3Schema: + description: Challenge is a type to represent a Challenge request with an ACME server + type: object + required: + - metadata + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - authzURL + - dnsName + - issuerRef + - key + - solver + - token + - type + - url + properties: + authzURL: + description: AuthzURL is the URL to the ACME Authorization resource that this challenge is a part of. + type: string + dnsName: + description: DNSName is the identifier that this challenge is for, e.g. example.com. If the requested DNSName is a 'wildcard', this field MUST be set to the non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`. + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Challenge. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Challenge will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + key: + description: 'Key is the ACME challenge key for this challenge For HTTP01 challenges, this is the value that must be responded with to complete the HTTP01 challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded SHA256 sum of the `.` text that must be set as the TXT record content.' + type: string + solver: + description: Solver contains the domain solving configuration that should be used to solve this challenge resource. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP. + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + token: + description: Token is the ACME challenge token for this challenge. This is the raw value returned from the ACME server. + type: string + type: + description: Type is the type of ACME challenge this resource represents. One of "http-01" or "dns-01". + type: string + enum: + - http-01 + - dns-01 + url: + description: URL is the URL of the ACME Challenge resource for this challenge. This can be used to lookup details about the status of this challenge. + type: string + wildcard: + description: Wildcard will be true if this challenge is for a wildcard identifier, for example '*.example.com'. + type: boolean + status: + type: object + properties: + presented: + description: Presented will be set to true if the challenge values for this challenge are currently 'presented'. This *does not* imply the self check is passing. Only that the values have been 'submitted' for the appropriate challenge mechanism (i.e. the DNS01 TXT record has been presented, or the HTTP01 configuration has been configured). + type: boolean + processing: + description: Processing is used to denote whether this challenge should be processed or not. This field will only be set to true by the 'scheduling' component. It will only be set to false by the 'challenges' controller, after the challenge has reached a final state or timed out. If this field is set to false, the challenge controller will not take any more action. + type: boolean + reason: + description: Reason contains human readable information on why the Challenge is in the current state. + type: string + state: + description: State contains the current 'state' of the challenge. If not set, the state of the challenge is unknown. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + served: true + storage: false + subresources: + status: {} + - additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.dnsName + name: Domain + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1beta1 + schema: + openAPIV3Schema: + description: Challenge is a type to represent a Challenge request with an ACME server + type: object + required: + - metadata + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - authorizationURL + - dnsName + - issuerRef + - key + - solver + - token + - type + - url + properties: + authorizationURL: + description: The URL to the ACME Authorization resource that this challenge is a part of. + type: string + dnsName: + description: dnsName is the identifier that this challenge is for, e.g. example.com. If the requested DNSName is a 'wildcard', this field MUST be set to the non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`. + type: string + issuerRef: + description: References a properly configured ACME-type Issuer which should be used to create this Challenge. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Challenge will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + key: + description: 'The ACME challenge key for this challenge For HTTP01 challenges, this is the value that must be responded with to complete the HTTP01 challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded SHA256 sum of the `.` text that must be set as the TXT record content.' + type: string + solver: + description: Contains the domain solving configuration that should be used to solve this challenge resource. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + token: + description: The ACME challenge token for this challenge. This is the raw value returned from the ACME server. + type: string + type: + description: The type of ACME challenge this resource represents. One of "HTTP-01" or "DNS-01". + type: string + enum: + - HTTP-01 + - DNS-01 + url: + description: The URL of the ACME Challenge resource for this challenge. This can be used to lookup details about the status of this challenge. + type: string + wildcard: + description: wildcard will be true if this challenge is for a wildcard identifier, for example '*.example.com'. + type: boolean + status: + type: object + properties: + presented: + description: presented will be set to true if the challenge values for this challenge are currently 'presented'. This *does not* imply the self check is passing. Only that the values have been 'submitted' for the appropriate challenge mechanism (i.e. the DNS01 TXT record has been presented, or the HTTP01 configuration has been configured). + type: boolean + processing: + description: Used to denote whether this challenge should be processed or not. This field will only be set to true by the 'scheduling' component. It will only be set to false by the 'challenges' controller, after the challenge has reached a final state or timed out. If this field is set to false, the challenge controller will not take any more action. + type: boolean + reason: + description: Contains human readable information on why the Challenge is in the current state. + type: string + state: + description: Contains the current 'state' of the challenge. If not set, the state of the challenge is unknown. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + served: true + storage: false + subresources: + status: {} + - additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.dnsName + name: Domain + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: Challenge is a type to represent a Challenge request with an ACME server + type: object + required: + - metadata + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - authorizationURL + - dnsName + - issuerRef + - key + - solver + - token + - type + - url + properties: + authorizationURL: + description: The URL to the ACME Authorization resource that this challenge is a part of. + type: string + dnsName: + description: dnsName is the identifier that this challenge is for, e.g. example.com. If the requested DNSName is a 'wildcard', this field MUST be set to the non-wildcard domain, e.g. for `*.example.com`, it must be `example.com`. + type: string + issuerRef: + description: References a properly configured ACME-type Issuer which should be used to create this Challenge. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Challenge will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + key: + description: 'The ACME challenge key for this challenge For HTTP01 challenges, this is the value that must be responded with to complete the HTTP01 challenge in the format: `.`. For DNS01 challenges, this is the base64 encoded SHA256 sum of the `.` text that must be set as the TXT record content.' + type: string + solver: + description: Contains the domain solving configuration that should be used to solve this challenge resource. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + token: + description: The ACME challenge token for this challenge. This is the raw value returned from the ACME server. + type: string + type: + description: The type of ACME challenge this resource represents. One of "HTTP-01" or "DNS-01". + type: string + enum: + - HTTP-01 + - DNS-01 + url: + description: The URL of the ACME Challenge resource for this challenge. This can be used to lookup details about the status of this challenge. + type: string + wildcard: + description: wildcard will be true if this challenge is for a wildcard identifier, for example '*.example.com'. + type: boolean + status: + type: object + properties: + presented: + description: presented will be set to true if the challenge values for this challenge are currently 'presented'. This *does not* imply the self check is passing. Only that the values have been 'submitted' for the appropriate challenge mechanism (i.e. the DNS01 TXT record has been presented, or the HTTP01 configuration has been configured). + type: boolean + processing: + description: Used to denote whether this challenge should be processed or not. This field will only be set to true by the 'scheduling' component. It will only be set to false by the 'challenges' controller, after the challenge has reached a final state or timed out. If this field is set to false, the challenge controller will not take any more action. + type: boolean + reason: + description: Contains human readable information on why the Challenge is in the current state. + type: string + state: + description: Contains the current 'state' of the challenge. If not set, the state of the challenge is unknown. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: clusterissuers.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: cert-manager.io + names: + kind: ClusterIssuer + listKind: ClusterIssuerList + plural: clusterissuers + singular: clusterissuer + categories: + - cert-manager + scope: Cluster + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - name: v1alpha2 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: A ClusterIssuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is similar to an Issuer, however it is cluster-scoped and therefore can be referenced by resources that exist in *any* namespace, not just the same namespace as the referent. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the ClusterIssuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the ClusterIssuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1alpha3 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: A ClusterIssuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is similar to an Issuer, however it is cluster-scoped and therefore can be referenced by resources that exist in *any* namespace, not just the same namespace as the referent. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the ClusterIssuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP. + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the ClusterIssuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1beta1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: A ClusterIssuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is similar to an Issuer, however it is cluster-scoped and therefore can be referenced by resources that exist in *any* namespace, not just the same namespace as the referent. + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the ClusterIssuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the ClusterIssuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: A ClusterIssuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is similar to an Issuer, however it is cluster-scoped and therefore can be referenced by resources that exist in *any* namespace, not just the same namespace as the referent. + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the ClusterIssuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: An ACMEChallengeSolver describes how to solve ACME challenges for the issuer it is part of. A selector may be provided to use different solving strategies for different DNS names. Only one of HTTP01 or DNS01 must be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the ClusterIssuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: true +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: issuers.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: cert-manager.io + names: + kind: Issuer + listKind: IssuerList + plural: issuers + singular: issuer + categories: + - cert-manager + scope: Namespaced + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - name: v1alpha2 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Issuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the Issuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1alpha3 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace. + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Issuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmedns: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azuredns: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + clouddns: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP. + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the Issuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1beta1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace. + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Issuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: Configures an issuer to solve challenges using the specified options. Only one of HTTP01 or DNS01 may be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the Issuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: false + - name: v1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.conditions[?(@.type=="Ready")].status + name: Ready + type: string + - jsonPath: .status.conditions[?(@.type=="Ready")].message + name: Status + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: An Issuer represents a certificate issuing authority which can be referenced as part of `issuerRef` fields. It is scoped to a single namespace and can therefore only be referenced by resources within the same namespace. + type: object + required: + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired state of the Issuer resource. + type: object + properties: + acme: + description: ACME configures this issuer to communicate with a RFC8555 (ACME) server to obtain signed x509 certificates. + type: object + required: + - privateKeySecretRef + - server + properties: + disableAccountKeyGeneration: + description: Enables or disables generating a new ACME account key. If true, the Issuer resource will *not* request a new account but will expect the account key to be supplied via an existing secret. If false, the cert-manager system will generate a new ACME account key for the Issuer. Defaults to false. + type: boolean + email: + description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered. + type: string + enableDurationFeature: + description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false. + type: boolean + externalAccountBinding: + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account. + type: object + required: + - keyID + - keySecretRef + properties: + keyAlgorithm: + description: 'Deprecated: keyAlgorithm field exists for historical compatibility reasons and should not be used. The algorithm is now hardcoded to HS256 in golang/x/crypto/acme.' + type: string + enum: + - HS256 + - HS384 + - HS512 + keyID: + description: keyID is the ID of the CA key that the External Account is bound to. + type: string + keySecretRef: + description: keySecretRef is a Secret Key Selector referencing a data item in a Kubernetes Secret which holds the symmetric MAC key of the External Account Binding. The `key` is the index string that is paired with the key data in the Secret and should not be confused with the key data itself, or indeed with the External Account Binding keyID above. The secret key stored in the Secret **must** be un-padded, base64 URL encoded data. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + preferredChain: + description: 'PreferredChain is the chain to use if the ACME server outputs multiple. PreferredChain is no guarantee that this one gets delivered by the ACME endpoint. For example, for Let''s Encrypt''s DST crosssign you would use: "DST Root CA X3" or "ISRG Root X1" for the newer Let''s Encrypt root CA. This value picks the first certificate bundle in the ACME alternative chains that has a certificate with this value as its issuer''s CN' + type: string + maxLength: 64 + privateKeySecretRef: + description: PrivateKey is the name of a Kubernetes Secret resource that will be used to store the automatically generated ACME account private key. Optionally, a `key` may be specified to select a specific entry within the named Secret resource. If `key` is not specified, a default of `tls.key` will be used. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + server: + description: 'Server is the URL used to access the ACME server''s ''directory'' endpoint. For example, for Let''s Encrypt''s staging endpoint, you would use: "https://acme-staging-v02.api.letsencrypt.org/directory". Only ACME v2 endpoints (i.e. RFC 8555) are supported.' + type: string + skipTLSVerify: + description: Enables or disables validation of the ACME server TLS certificate. If true, requests to the ACME server will not have their TLS certificate validated (i.e. insecure connections will be allowed). Only enable this option in development environments. The cert-manager system installed roots will be used to verify connections to the ACME server if this is false. Defaults to false. + type: boolean + solvers: + description: 'Solvers is a list of challenge solvers that will be used to solve ACME challenges for the matching domains. Solver configurations must be provided in order to obtain certificates from an ACME server. For more information, see: https://cert-manager.io/docs/configuration/acme/' + type: array + items: + description: An ACMEChallengeSolver describes how to solve ACME challenges for the issuer it is part of. A selector may be provided to use different solving strategies for different DNS names. Only one of HTTP01 or DNS01 must be provided. + type: object + properties: + dns01: + description: Configures cert-manager to attempt to complete authorizations by performing the DNS01 challenge flow. + type: object + properties: + acmeDNS: + description: Use the 'ACME DNS' (https://github.com/joohoi/acme-dns) API to manage DNS01 challenge records. + type: object + required: + - accountSecretRef + - host + properties: + accountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + host: + type: string + akamai: + description: Use the Akamai DNS zone management API to manage DNS01 challenge records. + type: object + required: + - accessTokenSecretRef + - clientSecretSecretRef + - clientTokenSecretRef + - serviceConsumerDomain + properties: + accessTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientSecretSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + clientTokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + serviceConsumerDomain: + type: string + azureDNS: + description: Use the Microsoft Azure DNS API to manage DNS01 challenge records. + type: object + required: + - resourceGroupName + - subscriptionID + properties: + clientID: + description: if both this and ClientSecret are left unset MSI will be used + type: string + clientSecretSecretRef: + description: if both this and ClientID are left unset MSI will be used + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + environment: + type: string + enum: + - AzurePublicCloud + - AzureChinaCloud + - AzureGermanCloud + - AzureUSGovernmentCloud + hostedZoneName: + type: string + resourceGroupName: + type: string + subscriptionID: + type: string + tenantID: + description: when specifying ClientID and ClientSecret then this field is also needed + type: string + cloudDNS: + description: Use the Google Cloud DNS API to manage DNS01 challenge records. + type: object + required: + - project + properties: + hostedZoneName: + description: HostedZoneName is an optional field that tells cert-manager in which Cloud DNS zone the challenge record has to be created. If left empty cert-manager will automatically choose a zone. + type: string + project: + type: string + serviceAccountSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + cloudflare: + description: Use the Cloudflare API to manage DNS01 challenge records. + type: object + properties: + apiKeySecretRef: + description: 'API key to use to authenticate with Cloudflare. Note: using an API token to authenticate is now the recommended method as it allows greater control of permissions.' + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + apiTokenSecretRef: + description: API token used to authenticate with Cloudflare. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + email: + description: Email of the account, only required when using API key based authentication. + type: string + cnameStrategy: + description: CNAMEStrategy configures how the DNS01 provider should handle CNAME records when found in DNS zones. + type: string + enum: + - None + - Follow + digitalocean: + description: Use the DigitalOcean DNS API to manage DNS01 challenge records. + type: object + required: + - tokenSecretRef + properties: + tokenSecretRef: + description: A reference to a specific 'key' within a Secret resource. In some instances, `key` is a required field. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + rfc2136: + description: Use RFC2136 ("Dynamic Updates in the Domain Name System") (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records. + type: object + required: + - nameserver + properties: + nameserver: + description: The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required. + type: string + tsigAlgorithm: + description: 'The TSIG Algorithm configured in the DNS supporting RFC2136. Used only when ``tsigSecretSecretRef`` and ``tsigKeyName`` are defined. Supported values are (case-insensitive): ``HMACMD5`` (default), ``HMACSHA1``, ``HMACSHA256`` or ``HMACSHA512``.' + type: string + tsigKeyName: + description: The TSIG Key name configured in the DNS. If ``tsigSecretSecretRef`` is defined, this field is required. + type: string + tsigSecretSecretRef: + description: The name of the secret containing the TSIG value. If ``tsigKeyName`` is defined, this field is required. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + route53: + description: Use the AWS Route53 API to manage DNS01 challenge records. + type: object + required: + - region + properties: + accessKeyID: + description: 'The AccessKeyID is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials' + type: string + hostedZoneID: + description: If set, the provider will manage only this zone in Route53 and will not do an lookup using the route53:ListHostedZonesByName api call. + type: string + region: + description: Always set the region when using AccessKeyID and SecretAccessKey + type: string + role: + description: Role is a Role ARN which the Route53 provider will assume using either the explicit credentials AccessKeyID/SecretAccessKey or the inferred credentials from environment variables, shared credentials file or AWS Instance metadata + type: string + secretAccessKeySecretRef: + description: The SecretAccessKey is used for authentication. If not set we fall-back to using env vars, shared credentials file or AWS Instance metadata https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + webhook: + description: Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records. + type: object + required: + - groupName + - solverName + properties: + config: + description: Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g. credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation's documentation. + x-kubernetes-preserve-unknown-fields: true + groupName: + description: The API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation. + type: string + solverName: + description: The name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g. 'cloudflare'. + type: string + http01: + description: Configures cert-manager to attempt to complete authorizations by performing the HTTP01 challenge flow. It is not possible to obtain certificates for wildcard domain names (e.g. `*.example.com`) using the HTTP01 challenge mechanism. + type: object + properties: + gatewayHTTPRoute: + description: The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future. + type: object + properties: + labels: + description: The labels that cert-manager will use when creating the temporary HTTPRoute needed for solving the HTTP-01 challenge. These labels must match the label selector of at least one Gateway. + type: object + additionalProperties: + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + ingress: + description: The ingress based HTTP01 challenge solver will solve challenges by creating or modifying Ingress resources in order to route requests for '/.well-known/acme-challenge/XYZ' to 'challenge solver' pods that are provisioned by cert-manager for each Challenge to be completed. + type: object + properties: + class: + description: The ingress class to use when creating Ingress resources to solve ACME challenges that use this challenge solver. Only one of 'class' or 'name' may be specified. + type: string + ingressTemplate: + description: Optional ingress template used to configure the ACME challenge solver ingress used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the ingress used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver ingress. + type: object + additionalProperties: + type: string + name: + description: The name of the ingress resource that should have ACME challenge solving routes inserted into it in order to solve HTTP01 challenges. This is typically used in conjunction with ingress controllers like ingress-gce, which maintains a 1:1 mapping between external IPs and ingress resources. + type: string + podTemplate: + description: Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges. + type: object + properties: + metadata: + description: ObjectMeta overrides for the pod used to solve HTTP01 challenges. Only the 'labels' and 'annotations' fields may be set. If labels or annotations overlap with in-built values, the values here will override the in-built values. + type: object + properties: + annotations: + description: Annotations that should be added to the create ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + labels: + description: Labels that should be added to the created ACME HTTP01 solver pods. + type: object + additionalProperties: + type: string + spec: + description: PodSpec defines overrides for the HTTP01 challenge solver pod. Only the 'priorityClassName', 'nodeSelector', 'affinity', 'serviceAccountName' and 'tolerations' fields are supported currently. All other fields will be ignored. + type: object + properties: + affinity: + description: If specified, the pod's scheduling constraints + type: object + properties: + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. This field is alpha-level and is only honored when PodAffinityNamespaceSelector feature is enabled. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace" + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + nodeSelector: + description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' + type: object + additionalProperties: + type: string + priorityClassName: + description: If specified, the pod's priorityClassName. + type: string + serviceAccountName: + description: If specified, the pod's service account + type: string + tolerations: + description: If specified, the pod's tolerations. + type: array + items: + description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . + type: object + properties: + effect: + description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. + type: integer + format: int64 + value: + description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + serviceType: + description: Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP (default). + type: string + selector: + description: Selector selects a set of DNSNames on the Certificate resource that should be solved using this challenge solver. If not specified, the solver will be treated as the 'default' solver with the lowest priority, i.e. if any other solver has a more specific match, it will be used instead. + type: object + properties: + dnsNames: + description: List of DNSNames that this solver will be used to solve. If specified and a match is found, a dnsNames selector will take precedence over a dnsZones selector. If multiple solvers match with the same dnsNames value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + dnsZones: + description: List of DNSZones that this solver will be used to solve. The most specific DNS zone match specified here will take precedence over other DNS zone matches, so a solver specifying sys.example.com will be selected over one specifying example.com for the domain www.sys.example.com. If multiple solvers match with the same dnsZones value, the solver with the most matching labels in matchLabels will be selected. If neither has more matches, the solver defined earlier in the list will be selected. + type: array + items: + type: string + matchLabels: + description: A label selector that is used to refine the set of certificate's that this challenge solver will apply to. + type: object + additionalProperties: + type: string + ca: + description: CA configures this issuer to sign certificates using a signing CA keypair stored in a Secret resource. This is used to build internal PKIs that are managed by cert-manager. + type: object + required: + - secretName + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set, certificates will be issued without distribution points set. + type: array + items: + type: string + ocspServers: + description: The OCSP server list is an X.509 v3 extension that defines a list of URLs of OCSP responders. The OCSP responders can be queried for the revocation status of an issued certificate. If not set, the certificate will be issued with no OCSP servers set. For example, an OCSP server URL could be "http://ocsp.int-x3.letsencrypt.org". + type: array + items: + type: string + secretName: + description: SecretName is the name of the secret used to sign Certificates issued by this Issuer. + type: string + selfSigned: + description: SelfSigned configures this issuer to 'self sign' certificates using the private key used to create the CertificateRequest object. + type: object + properties: + crlDistributionPoints: + description: The CRL distribution points is an X.509 v3 certificate extension which identifies the location of the CRL from which the revocation of this certificate can be checked. If not set certificate will be issued without CDP. Values are strings. + type: array + items: + type: string + vault: + description: Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend. + type: object + required: + - auth + - path + - server + properties: + auth: + description: Auth configures how cert-manager authenticates with the Vault server. + type: object + properties: + appRole: + description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource. + type: object + required: + - path + - roleId + - secretRef + properties: + path: + description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"' + type: string + roleId: + description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault. + type: string + secretRef: + description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + kubernetes: + description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server. + type: object + required: + - role + - secretRef + properties: + mountPath: + description: The Vault mountPath here is the mount path to use when authenticating with Vault. For example, setting a value to `/v1/auth/foo`, will use the path `/v1/auth/foo/login` to authenticate with Vault. If unspecified, the default value "/v1/auth/kubernetes" will be used. + type: string + role: + description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies. + type: string + secretRef: + description: The required Secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. Use of 'ambient credentials' is not supported. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + tokenSecretRef: + description: TokenSecretRef authenticates with Vault by presenting a token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + caBundle: + description: PEM-encoded CA bundle (base64-encoded) used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection. + type: string + format: byte + namespace: + description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces' + type: string + path: + description: 'Path is the mount path of the Vault PKI backend''s `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".' + type: string + server: + description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".' + type: string + venafi: + description: Venafi configures this issuer to sign certificates using a Venafi TPP or Venafi Cloud policy zone. + type: object + required: + - zone + properties: + cloud: + description: Cloud specifies the Venafi cloud configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - apiTokenSecretRef + properties: + apiTokenSecretRef: + description: APITokenSecretRef is a secret key selector for the Venafi Cloud API token. + type: object + required: + - name + properties: + key: + description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required. + type: string + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: URL is the base URL for Venafi Cloud. Defaults to "https://api.venafi.cloud/v1". + type: string + tpp: + description: TPP specifies Trust Protection Platform configuration settings. Only one of TPP or Cloud may be specified. + type: object + required: + - credentialsRef + - url + properties: + caBundle: + description: CABundle is a PEM encoded TLS certificate to use to verify connections to the TPP instance. If specified, system roots will not be used and the issuing CA for the TPP instance must be verifiable using the provided root. If not specified, the connection will be verified using the cert-manager system root certificates. + type: string + format: byte + credentialsRef: + description: CredentialsRef is a reference to a Secret containing the username and password for the TPP server. The secret must contain two keys, 'username' and 'password'. + type: object + required: + - name + properties: + name: + description: 'Name of the resource being referred to. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + url: + description: 'URL is the base URL for the vedsdk endpoint of the Venafi TPP instance, for example: "https://tpp.example.com/vedsdk".' + type: string + zone: + description: Zone is the Venafi Policy Zone to use for this issuer. All requests made to the Venafi platform will be restricted by the named zone policy. This field is required. + type: string + status: + description: Status of the Issuer. This is set and managed automatically. + type: object + properties: + acme: + description: ACME specific status options. This field should only be set if the Issuer is configured to use an ACME server to issue certificates. + type: object + properties: + lastRegisteredEmail: + description: LastRegisteredEmail is the email associated with the latest registered ACME account, in order to track changes made to registered account associated with the Issuer + type: string + uri: + description: URI is the unique account identifier, which can also be used to retrieve account details from the CA + type: string + conditions: + description: List of status conditions to indicate the status of a CertificateRequest. Known condition types are `Ready`. + type: array + items: + description: IssuerCondition contains condition information for an Issuer. + type: object + required: + - status + - type + properties: + lastTransitionTime: + description: LastTransitionTime is the timestamp corresponding to the last status change of this condition. + type: string + format: date-time + message: + description: Message is a human readable description of the details of the last transition, complementing reason. + type: string + observedGeneration: + description: If set, this represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.condition[x].observedGeneration is 9, the condition is out of date with respect to the current state of the Issuer. + type: integer + format: int64 + reason: + description: Reason is a brief machine readable explanation for the condition's last transition. + type: string + status: + description: Status of the condition, one of (`True`, `False`, `Unknown`). + type: string + enum: + - "True" + - "False" + - Unknown + type: + description: Type of the condition, known values are (`Ready`). + type: string + served: true + storage: true +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +# Source: cert-manager/templates/templates.out +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: orders.acme.cert-manager.io + annotations: + cert-manager.io/inject-ca-from-secret: 'cert-manager/cert-manager-webhook-ca' + labels: + app: 'cert-manager' + app.kubernetes.io/name: 'cert-manager' + app.kubernetes.io/instance: 'cert-manager' + # Generated labels + app.kubernetes.io/version: "v1.5.1" +spec: + group: acme.cert-manager.io + names: + kind: Order + listKind: OrderList + plural: orders + singular: order + categories: + - cert-manager + - cert-manager-acme + scope: Namespaced + conversion: + # a Webhook strategy instruct API server to call an external webhook for any conversion between custom resources. + strategy: Webhook + # webhookClientConfig is required when strategy is `Webhook` and it configures the webhook endpoint to be called by API server. + webhook: + # We don't actually support `v1beta1` but is listed here as it is a + # required value for [Kubernetes v1.16](kubernetes/kubernetes#82023). The + # API server reads the supported versions in order, so _should always_ + # attempt a `v1` request which is understood by the cert-manager webhook. + # Any `v1beta1` request will return an error and fail closed for that + # resource (the whole object request is rejected). + # When we no longer support v1.16 we can remove `v1beta1` from this list. + conversionReviewVersions: ["v1", "v1beta1"] + clientConfig: + # + service: + name: 'cert-manager-webhook' + namespace: "cert-manager" + path: /convert + # + versions: + - name: v1alpha2 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: Order is a type to represent an Order with an ACME server + type: object + required: + - metadata + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - csr + - issuerRef + properties: + commonName: + description: CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR. + type: string + csr: + description: Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order. + type: string + format: byte + dnsNames: + description: DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + duration: + description: Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec. + type: string + ipAddresses: + description: IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + status: + type: object + properties: + authorizations: + description: Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order. + type: array + items: + description: ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource. + type: object + required: + - url + properties: + challenges: + description: Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process. + type: array + items: + description: Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process. + type: object + required: + - token + - type + - url + properties: + token: + description: Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented. + type: string + type: + description: Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored. + type: string + url: + description: URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server. + type: string + identifier: + description: Identifier is the DNS name to be validated as part of this authorization + type: string + initialState: + description: InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL is the URL of the Authorization that must be completed + type: string + wildcard: + description: Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'. + type: boolean + certificate: + description: Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state. + type: string + format: byte + failureTime: + description: FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + finalizeURL: + description: FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed. + type: string + reason: + description: Reason optionally provides more information about a why the order is in the current state. + type: string + state: + description: State contains the current state of this Order resource. States 'success' and 'expired' are 'final' + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set. + type: string + served: true + storage: false + - name: v1alpha3 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: Order is a type to represent an Order with an ACME server + type: object + required: + - metadata + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - csr + - issuerRef + properties: + commonName: + description: CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR. + type: string + csr: + description: Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order. + type: string + format: byte + dnsNames: + description: DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + duration: + description: Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec. + type: string + ipAddresses: + description: IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + status: + type: object + properties: + authorizations: + description: Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order. + type: array + items: + description: ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource. + type: object + required: + - url + properties: + challenges: + description: Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process. + type: array + items: + description: Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process. + type: object + required: + - token + - type + - url + properties: + token: + description: Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented. + type: string + type: + description: Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored. + type: string + url: + description: URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server. + type: string + identifier: + description: Identifier is the DNS name to be validated as part of this authorization + type: string + initialState: + description: InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL is the URL of the Authorization that must be completed + type: string + wildcard: + description: Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'. + type: boolean + certificate: + description: Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state. + type: string + format: byte + failureTime: + description: FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + finalizeURL: + description: FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed. + type: string + reason: + description: Reason optionally provides more information about a why the order is in the current state. + type: string + state: + description: State contains the current state of this Order resource. States 'success' and 'expired' are 'final' + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set. + type: string + served: true + storage: false + - name: v1beta1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: Order is a type to represent an Order with an ACME server + type: object + required: + - metadata + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - issuerRef + - request + properties: + commonName: + description: CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR. + type: string + dnsNames: + description: DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + duration: + description: Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec. + type: string + ipAddresses: + description: IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + request: + description: Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order. + type: string + format: byte + status: + type: object + properties: + authorizations: + description: Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order. + type: array + items: + description: ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource. + type: object + required: + - url + properties: + challenges: + description: Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process. + type: array + items: + description: Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process. + type: object + required: + - token + - type + - url + properties: + token: + description: Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented. + type: string + type: + description: Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored. + type: string + url: + description: URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server. + type: string + identifier: + description: Identifier is the DNS name to be validated as part of this authorization + type: string + initialState: + description: InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL is the URL of the Authorization that must be completed + type: string + wildcard: + description: Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'. + type: boolean + certificate: + description: Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state. + type: string + format: byte + failureTime: + description: FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + finalizeURL: + description: FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed. + type: string + reason: + description: Reason optionally provides more information about a why the order is in the current state. + type: string + state: + description: State contains the current state of this Order resource. States 'success' and 'expired' are 'final' + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set. + type: string + served: true + storage: false + - name: v1 + subresources: + status: {} + additionalPrinterColumns: + - jsonPath: .status.state + name: State + type: string + - jsonPath: .spec.issuerRef.name + name: Issuer + priority: 1 + type: string + - jsonPath: .status.reason + name: Reason + priority: 1 + type: string + - jsonPath: .metadata.creationTimestamp + description: CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + name: Age + type: date + schema: + openAPIV3Schema: + description: Order is a type to represent an Order with an ACME server + type: object + required: + - metadata + - spec + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + type: object + required: + - issuerRef + - request + properties: + commonName: + description: CommonName is the common name as specified on the DER encoded CSR. If specified, this value must also be present in `dnsNames` or `ipAddresses`. This field must match the corresponding field on the DER encoded CSR. + type: string + dnsNames: + description: DNSNames is a list of DNS names that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + duration: + description: Duration is the duration for the not after date for the requested certificate. this is set on order creation as pe the ACME spec. + type: string + ipAddresses: + description: IPAddresses is a list of IP addresses that should be included as part of the Order validation process. This field must match the corresponding field on the DER encoded CSR. + type: array + items: + type: string + issuerRef: + description: IssuerRef references a properly configured ACME-type Issuer which should be used to create this Order. If the Issuer does not exist, processing will be retried. If the Issuer is not an 'ACME' Issuer, an error will be returned and the Order will be marked as failed. + type: object + required: + - name + properties: + group: + description: Group of the resource being referred to. + type: string + kind: + description: Kind of the resource being referred to. + type: string + name: + description: Name of the resource being referred to. + type: string + request: + description: Certificate signing request bytes in DER encoding. This will be used when finalizing the order. This field must be set on the order. + type: string + format: byte + status: + type: object + properties: + authorizations: + description: Authorizations contains data returned from the ACME server on what authorizations must be completed in order to validate the DNS names specified on the Order. + type: array + items: + description: ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource. + type: object + required: + - url + properties: + challenges: + description: Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process. + type: array + items: + description: Challenge specifies a challenge offered by the ACME server for an Order. An appropriate Challenge resource can be created to perform the ACME challenge process. + type: object + required: + - token + - type + - url + properties: + token: + description: Token is the token that must be presented for this challenge. This is used to compute the 'key' that must also be presented. + type: string + type: + description: Type is the type of challenge being offered, e.g. 'http-01', 'dns-01', 'tls-sni-01', etc. This is the raw value retrieved from the ACME server. Only 'http-01' and 'dns-01' are supported by cert-manager, other values will be ignored. + type: string + url: + description: URL is the URL of this challenge. It can be used to retrieve additional metadata about the Challenge from the ACME server. + type: string + identifier: + description: Identifier is the DNS name to be validated as part of this authorization + type: string + initialState: + description: InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created. + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL is the URL of the Authorization that must be completed + type: string + wildcard: + description: Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'. + type: boolean + certificate: + description: Certificate is a copy of the PEM encoded certificate for this Order. This field will be populated after the order has been successfully finalized with the ACME server, and the order has transitioned to the 'valid' state. + type: string + format: byte + failureTime: + description: FailureTime stores the time that this order failed. This is used to influence garbage collection and back-off. + type: string + format: date-time + finalizeURL: + description: FinalizeURL of the Order. This is used to obtain certificates for this order once it has been completed. + type: string + reason: + description: Reason optionally provides more information about a why the order is in the current state. + type: string + state: + description: State contains the current state of this Order resource. States 'success' and 'expired' are 'final' + type: string + enum: + - valid + - ready + - pending + - processing + - invalid + - expired + - errored + url: + description: URL of the Order. This will initially be empty when the resource is first created. The Order controller will populate this field when the Order is first processed. This field will be immutable after it is initially set. + type: string + served: true + storage: true +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] diff --git a/chart/jenkins-operator/templates/cert-manager.yaml b/chart/jenkins-operator/templates/webhook-certificates.yaml similarity index 100% rename from chart/jenkins-operator/templates/cert-manager.yaml rename to chart/jenkins-operator/templates/webhook-certificates.yaml diff --git a/chart/jenkins-operator/values.yaml b/chart/jenkins-operator/values.yaml index d430f579d..531a3098a 100644 --- a/chart/jenkins-operator/values.yaml +++ b/chart/jenkins-operator/values.yaml @@ -292,7 +292,4 @@ webhook: # time after which the certificate will be automatically renewed renewbefore: 360h # enable or disable the validation webhook - enabled: false - -cert-manager: - installCRDs: true \ No newline at end of file + enabled: false \ No newline at end of file From f527a8c5cba226db176436b2b89e693520c63a74 Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Fri, 20 Aug 2021 09:40:24 +0530 Subject: [PATCH 23/26] Completed helm e2e tests and updated helm charts - Completed helm tests for various scenarios - Disabled startupapi check for cert manager webhook, defined a secret and updated templates - Made the webhook completely optional --- Makefile | 6 +- api/v1alpha2/jenkins_webhook.go | 22 +- chart/jenkins-operator/templates/jenkins.yaml | 2 +- .../templates/webhook-certificates.yaml | 6 + chart/jenkins-operator/templates/webhook.yaml | 1 + chart/jenkins-operator/values.yaml | 8 +- config/crd/bases/jenkins.io_jenkins.yaml | 1 + main.go | 6 +- test/helm/helm_test.go | 215 +++++++++++++++--- 9 files changed, 232 insertions(+), 35 deletions(-) diff --git a/Makefile b/Makefile index 33dab1655..658928eb1 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ e2e: deepcopy-gen manifests ## Runs e2e tests, you can use EXTRA_ARGS .PHONY: helm-e2e IMAGE_NAME := $(DOCKER_REGISTRY):$(GITCOMMIT) #TODO: install cert-manager before running helm charts -helm-e2e: helm install-cert-manager container-runtime-build ## Runs helm e2e tests, you can use EXTRA_ARGS +helm-e2e: helm container-runtime-build ## Runs helm e2e tests, you can use EXTRA_ARGS @echo "+ $@" RUNNING_TESTS=1 go test -parallel=1 "./test/helm/" -ginkgo.v -tags "$(BUILDTAGS) cgo" -v -timeout 60m -run "$(E2E_TEST_SELECTOR)" -image-name=$(IMAGE_NAME) $(E2E_TEST_ARGS) @@ -538,8 +538,10 @@ all-in-one-build-webhook: ## Re-generate all-in-one yaml # start the cluster locally and set it to use the docker daemon from minikube install-cert-manager: minikube-start - kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.yaml + kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.5.1/cert-manager.yaml +uninstall-cert-manager: minikube-start + kubectl delete -f https://github.com/jetstack/cert-manager/releases/download/v1.5.1/cert-manager.yaml #Launch cert-manager and deploy the operator locally along with webhook deploy-webhook: install-cert-manager install-crds container-runtime-build all-in-one-build-webhook diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 1fe68a5db..8d340b464 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -26,6 +26,7 @@ import ( "os" "time" + //"github.com/jenkinsci/kubernetes-operator/pkg/configuration/base/resources" "github.com/jenkinsci/kubernetes-operator/pkg/constants" "github.com/jenkinsci/kubernetes-operator/pkg/plugins" @@ -345,15 +346,32 @@ func CreateJenkinsCR(name string, namespace string, userPlugins []Plugin, valida Namespace: namespace, }, Spec: JenkinsSpec{ + GroovyScripts: GroovyScripts{ + Customization: Customization{ + Configurations: []ConfigMapRef{}, + Secret: SecretRef{ + Name: "", + }, + }, + }, + ConfigurationAsCode: ConfigurationAsCode{ + Customization: Customization{ + Configurations: []ConfigMapRef{}, + Secret: SecretRef{ + Name: "", + }, + }, + }, Master: JenkinsMaster{ - Annotations: map[string]string{"test": "label"}, - Plugins: userPlugins, + Plugins: userPlugins, + DisableCSRFProtection: false, }, ValidateSecurityWarnings: validateSecurityWarnings, Service: Service{ Type: corev1.ServiceTypeNodePort, Port: constants.DefaultHTTPPortInt32, }, + JenkinsAPISettings: JenkinsAPISettings{AuthorizationStrategy: CreateUserAuthorizationStrategy}, }, } diff --git a/chart/jenkins-operator/templates/jenkins.yaml b/chart/jenkins-operator/templates/jenkins.yaml index 9ba138b0f..aae8f6acd 100644 --- a/chart/jenkins-operator/templates/jenkins.yaml +++ b/chart/jenkins-operator/templates/jenkins.yaml @@ -145,8 +145,8 @@ spec: securityContext: {{- toYaml . | nindent 6 }} {{- end }} - {{- with .Values.jenkins.seedJobs }} ValidateSecurityWarnings: {{ .Values.jenkins.ValidateSecurityWarnings }} + {{- with .Values.jenkins.seedJobs }} seedJobs: {{- toYaml . | nindent 4 }} {{- end }} {{- end }} diff --git a/chart/jenkins-operator/templates/webhook-certificates.yaml b/chart/jenkins-operator/templates/webhook-certificates.yaml index 3edc1045c..cb87becf7 100644 --- a/chart/jenkins-operator/templates/webhook-certificates.yaml +++ b/chart/jenkins-operator/templates/webhook-certificates.yaml @@ -25,4 +25,10 @@ spec: selfSigned: {} --- +apiVersion: v1 +kind: Secret +metadata: + name: jenkins-{{ .Values.webhook.certificate.name }} +type: opaque + {{- end }} \ No newline at end of file diff --git a/chart/jenkins-operator/templates/webhook.yaml b/chart/jenkins-operator/templates/webhook.yaml index 69f07693c..bf31ce5e4 100644 --- a/chart/jenkins-operator/templates/webhook.yaml +++ b/chart/jenkins-operator/templates/webhook.yaml @@ -16,6 +16,7 @@ webhooks: path: /validate-jenkins-io-v1alpha2-jenkins failurePolicy: Fail name: vjenkins.kb.io + timeoutSeconds: 30 rules: - apiGroups: - jenkins.io diff --git a/chart/jenkins-operator/values.yaml b/chart/jenkins-operator/values.yaml index 531a3098a..ce3fb1c8f 100644 --- a/chart/jenkins-operator/values.yaml +++ b/chart/jenkins-operator/values.yaml @@ -292,4 +292,10 @@ webhook: # time after which the certificate will be automatically renewed renewbefore: 360h # enable or disable the validation webhook - enabled: false \ No newline at end of file + enabled: false + +# This startupapicheck is a Helm post-install hook that waits for the webhook +# endpoints to become available. +cert-manager: + startupapicheck: + enabled: false \ No newline at end of file diff --git a/config/crd/bases/jenkins.io_jenkins.yaml b/config/crd/bases/jenkins.io_jenkins.yaml index 47d626c6e..953509023 100644 --- a/config/crd/bases/jenkins.io_jenkins.yaml +++ b/config/crd/bases/jenkins.io_jenkins.yaml @@ -5,6 +5,7 @@ kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.4.1 + creationTimestamp: null name: jenkins.jenkins.io spec: group: jenkins.io diff --git a/main.go b/main.go index 543edad1e..8a6fe1ba4 100644 --- a/main.go +++ b/main.go @@ -180,8 +180,10 @@ func main() { fatal(errors.Wrap(err, "unable to create Jenkins controller"), *debug) } - if err = (&v1alpha2.Jenkins{}).SetupWebhookWithManager(mgr); err != nil { - fatal(errors.Wrap(err, "unable to create Webhook"), *debug) + if ValidateSecurityWarnings { + if err = (&v1alpha2.Jenkins{}).SetupWebhookWithManager(mgr); err != nil { + fatal(errors.Wrap(err, "unable to create Webhook"), *debug) + } } // +kubebuilder:scaffold:builder diff --git a/test/helm/helm_test.go b/test/helm/helm_test.go index bc05172a9..ebaab60ea 100644 --- a/test/helm/helm_test.go +++ b/test/helm/helm_test.go @@ -1,20 +1,26 @@ package helm import ( + "context" "fmt" "os/exec" + "time" "github.com/jenkinsci/kubernetes-operator/api/v1alpha2" + "github.com/jenkinsci/kubernetes-operator/pkg/configuration/base/resources" + "github.com/jenkinsci/kubernetes-operator/pkg/constants" "github.com/jenkinsci/kubernetes-operator/test/e2e" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/util/intstr" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" corev1 "k8s.io/api/core/v1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" // +kubebuilder:scaffold:imports ) -var _ = Describe("Jenkins controller", func() { +var _ = Describe("Jenkins Controller with webhook", func() { + var ( namespace *corev1.Namespace ) @@ -23,38 +29,193 @@ var _ = Describe("Jenkins controller", func() { namespace = e2e.CreateNamespace() }) AfterEach(func() { + cmd := exec.Command("../../bin/helm", "delete", "jenkins", "--namespace", namespace.Name) + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) + e2e.ShowLogsIfTestHasFailed(CurrentGinkgoTestDescription().Failed, namespace.Name) e2e.DestroyNamespace(namespace) }) - Context("when deploying Helm Chart to cluster", func() { - It("creates Jenkins instance and configures it", func() { - - jenkins := &v1alpha2.Jenkins{ - TypeMeta: v1alpha2.JenkinsTypeMeta(), - ObjectMeta: metav1.ObjectMeta{ - Name: "jenkins", - Namespace: namespace.Name, - }, - } + It("Deploys Jenkins operator with webhook enabled along with the default jenkins image", func() { + jenkins := &v1alpha2.Jenkins{ + TypeMeta: v1alpha2.JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: "jenkins", + Namespace: namespace.Name, + }, + } + + cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", + "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), + "--set-string", fmt.Sprintf("operator.image=%s", *imageName), "--install", "--wait") + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) + + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + + }) - cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", - "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), - "--set-string", fmt.Sprintf("operator.image=%s", *imageName), "--install") - output, err := cmd.CombinedOutput() - Expect(err).NotTo(HaveOccurred(), string(output)) + It("Deploys Jenkins operator along with webhook and cert-manager", func() { - e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) - e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + By("Deploying the operator along with webhook and cert-manager") + cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", + "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), "--set-string", fmt.Sprintf("operator.image=%s", *imageName), + "--set", fmt.Sprintf("webhook.enabled=%t", true), "--set", fmt.Sprintf("jenkins.enabled=%t", false), "--install", "--wait") + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) - cmd = exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", - "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), - "--set-string", fmt.Sprintf("operator.image=%s", *imageName), "--install") - output, err = cmd.CombinedOutput() + By("Waiting for the operator to fetch the plugin data ") + time.Sleep(time.Duration(200) * time.Second) - Expect(err).NotTo(HaveOccurred(), string(output)) + By("Denies a create request for a Jenkins custom resource with some plugins having security warnings and validation is turned on") + userplugins := []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.5"}, + {Name: "github", Version: "1.29.0"}, + } + jenkins := CreateJenkinsCR("jenkins", namespace.Name, userplugins, true) + Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \naudit-trail:3.5\ngithub:1.29.0")) - e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) - e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) - }) + By("Creating the same Jenkins custom resource with some plugins having security warnings but validation is turned off") + userplugins = []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.5"}, + {Name: "github", Version: "1.29.0"}, + } + jenkins = CreateJenkinsCR("jenkins", namespace.Name, userplugins, false) + Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(Succeed()) + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + + By("Updating the Jenkins resource with plugins not having any security warnings and validation is turned on") + userplugins = []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.8"}, + {Name: "github", Version: "1.31.0"}, + } + jenkins.Spec.Master.Plugins = userplugins + jenkins.Spec.ValidateSecurityWarnings = true + Expect(e2e.K8sClient.Update(context.TODO(), jenkins)).Should(Succeed()) + jenkins = &v1alpha2.Jenkins{ + TypeMeta: v1alpha2.JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: "jenkins", + Namespace: namespace.Name, + }, + } + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + + By("Failing to update the Jenkins custom resource because some plugins having security warnings and validation is turned on") + userplugins = []v1alpha2.Plugin{ + {Name: "vncviewer", Version: "1.7"}, + {Name: "build-timestamp", Version: "1.0.3"}, + {Name: "deployit-plugin", Version: "7.5.5"}, + {Name: "github-branch-source", Version: "2.0.7"}, + {Name: "aws-lambda-cloud", Version: "0.4"}, + {Name: "groovy", Version: "1.31"}, + {Name: "google-login", Version: "1.2"}, + } + jenkins.Spec.Master.Plugins = userplugins + Expect(e2e.K8sClient.Update(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \nvncviewer:1.7\ndeployit-plugin:7.5.5\ngithub-branch-source:2.0.7\ngroovy:1.31\ngoogle-login:1.2")) }) }) + +func CreateJenkinsCR(name string, namespace string, userPlugins []v1alpha2.Plugin, validateSecurityWarnings bool) *v1alpha2.Jenkins { + jenkins := &v1alpha2.Jenkins{ + TypeMeta: v1alpha2.JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: name, + Namespace: namespace, + }, + Spec: v1alpha2.JenkinsSpec{ + GroovyScripts: v1alpha2.GroovyScripts{ + Customization: v1alpha2.Customization{ + Configurations: []v1alpha2.ConfigMapRef{}, + Secret: v1alpha2.SecretRef{ + Name: "", + }, + }, + }, + ConfigurationAsCode: v1alpha2.ConfigurationAsCode{ + Customization: v1alpha2.Customization{ + Configurations: []v1alpha2.ConfigMapRef{}, + Secret: v1alpha2.SecretRef{ + Name: "", + }, + }, + }, + Master: v1alpha2.JenkinsMaster{ + Containers: []v1alpha2.Container{ + { + Name: resources.JenkinsMasterContainerName, + Env: []corev1.EnvVar{ + { + Name: "TEST_ENV", + Value: "test_env_value", + }, + }, + ReadinessProbe: &corev1.Probe{ + Handler: corev1.Handler{ + HTTPGet: &corev1.HTTPGetAction{ + Path: "/login", + Port: intstr.FromString("http"), + Scheme: corev1.URISchemeHTTP, + }, + }, + InitialDelaySeconds: int32(100), + TimeoutSeconds: int32(4), + FailureThreshold: int32(40), + SuccessThreshold: int32(1), + PeriodSeconds: int32(10), + }, + LivenessProbe: &corev1.Probe{ + Handler: corev1.Handler{ + HTTPGet: &corev1.HTTPGetAction{ + Path: "/login", + Port: intstr.FromString("http"), + Scheme: corev1.URISchemeHTTP, + }, + }, + InitialDelaySeconds: int32(80), + TimeoutSeconds: int32(4), + FailureThreshold: int32(30), + SuccessThreshold: int32(1), + PeriodSeconds: int32(5), + }, + VolumeMounts: []corev1.VolumeMount{ + { + Name: "plugins-cache", + MountPath: "/usr/share/jenkins/ref/plugins", + }, + }, + }, + { + Name: "envoyproxy", + Image: "envoyproxy/envoy-alpine:v1.14.1", + }, + }, + Plugins: userPlugins, + DisableCSRFProtection: false, + NodeSelector: map[string]string{"kubernetes.io/os": "linux"}, + Volumes: []corev1.Volume{ + { + Name: "plugins-cache", + VolumeSource: corev1.VolumeSource{ + EmptyDir: &corev1.EmptyDirVolumeSource{}, + }, + }, + }, + }, + ValidateSecurityWarnings: validateSecurityWarnings, + Service: v1alpha2.Service{ + Type: corev1.ServiceTypeNodePort, + Port: constants.DefaultHTTPPortInt32, + }, + JenkinsAPISettings: v1alpha2.JenkinsAPISettings{AuthorizationStrategy: v1alpha2.CreateUserAuthorizationStrategy}, + }, + } + + return jenkins +} From 9594c8e7cd2f54ffa21e242e417de7405b10a4cb Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Sat, 21 Aug 2021 20:36:39 +0530 Subject: [PATCH 24/26] Code optimization and cleanup --- api/v1alpha2/jenkins_webhook.go | 159 ++++++++++----------------- api/v1alpha2/jenkins_webhook_test.go | 68 ++++++++---- main.go | 2 +- 3 files changed, 108 insertions(+), 121 deletions(-) diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index 8d340b464..f2c291c69 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -27,12 +27,10 @@ import ( "time" //"github.com/jenkinsci/kubernetes-operator/pkg/configuration/base/resources" - "github.com/jenkinsci/kubernetes-operator/pkg/constants" + "github.com/jenkinsci/kubernetes-operator/pkg/plugins" "golang.org/x/mod/semver" - corev1 "k8s.io/api/core/v1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" ctrl "sigs.k8s.io/controller-runtime" logf "sigs.k8s.io/controller-runtime/pkg/log" @@ -41,10 +39,12 @@ import ( var ( jenkinslog = logf.Log.WithName("jenkins-resource") // log is for logging in this package. - PluginsMgr PluginDataManager = *NewPluginsDataManager("https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip", "/tmp/plugins.json.gzip", "/tmp/plugins.json", false, time.Duration(1000)*time.Second) + PluginsMgr PluginDataManager = *NewPluginsDataManager("/tmp/plugins.json.gzip", "/tmp/plugins.json", false, time.Duration(1000)*time.Second) _ webhook.Validator = &Jenkins{} ) +const Hosturl = "https://ci.jenkins.io/job/Infra/job/plugin-site-api/job/generate-data/lastSuccessfulBuild/artifact/plugins.json.gzip" + func (in *Jenkins) SetupWebhookWithManager(mgr ctrl.Manager) error { return ctrl.NewWebhookManagedBy(mgr). For(in). @@ -82,13 +82,12 @@ func (in *Jenkins) ValidateDelete() error { type PluginDataManager struct { PluginDataCache PluginsInfo - Hosturl string Timeout time.Duration CompressedFilePath string PluginDataFile string IsCached bool Attempts int - SleepTime int + SleepTime time.Duration } type PluginsInfo struct { @@ -155,7 +154,7 @@ func Validate(r Jenkins) error { if len(lastVersion) == 0 { lastVersion = pluginData.Version // setting default value in case of empty string } - + // checking if this warning applies to our version as well if compareVersions(firstVersion, lastVersion, pluginData.Version) { jenkinslog.Info("Security Vulnerability detected in "+pluginData.Kind+" "+plugin.Name+":"+pluginData.Version, "Warning message", warning.Message, "For more details,check security advisory", warning.URL) hasVulnerabilities = true @@ -186,9 +185,8 @@ func Validate(r Jenkins) error { return nil } -func NewPluginsDataManager(hosturl string, compressedFilePath string, pluginDataFile string, isCached bool, timeout time.Duration) *PluginDataManager { +func NewPluginsDataManager(compressedFilePath string, pluginDataFile string, isCached bool, timeout time.Duration) *PluginDataManager { return &PluginDataManager{ - Hosturl: hosturl, CompressedFilePath: compressedFilePath, PluginDataFile: pluginDataFile, IsCached: isCached, @@ -196,61 +194,70 @@ func NewPluginsDataManager(hosturl string, compressedFilePath string, pluginData } } -// Downloads extracts and reads the JSON data in every 12 hours -func (in *PluginDataManager) FetchPluginData(isInitialized chan bool) { +func (in *PluginDataManager) ManagePluginData(sig chan bool) { + var isInit bool // checks if the operator + var retryInterval time.Duration for { - jenkinslog.Info("Initializing/Updating the plugin data cache") - var isDownloaded, isExtracted, isCached bool - var err error - for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { - err = in.download() - if err == nil { - isDownloaded = true - break - } + isCached := in.fetchPluginData() + if !isInit { + sig <- isCached // sending signal to main to continue + isInit = false } - if isDownloaded { - for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { - err = in.extract() - if err == nil { - isExtracted = true - break - } - } + in.IsCached = in.IsCached || isCached + if !isCached { + retryInterval = time.Duration(1) * time.Hour } else { - jenkinslog.Info("Cache Plugin Data", "failed to download file", err) + retryInterval = time.Duration(12) * time.Hour } + time.Sleep(retryInterval) + } +} - if isExtracted { - for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { - err = in.cache() - if err == nil { - isCached = true - break - } - } - - if !isCached { - jenkinslog.Info("Cache Plugin Data", "failed to read plugin data file", err) - } - } else { - jenkinslog.Info("Cache Plugin Data", "failed to extract file", err) +// Downloads extracts and reads the JSON data in every 12 hours +func (in *PluginDataManager) fetchPluginData() bool { + jenkinslog.Info("Initializing/Updating the plugin data cache") + var err error + for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { + err = in.download() + if err == nil { + break } + jenkinslog.V(1).Info("Cache Plugin Data", "failed to download file", err) + } + + if err != nil { + jenkinslog.Info("Cache Plugin Data", "failed to download file", err) + return false + } - // Checks for the first time - if !in.IsCached { - isInitialized <- isCached - in.IsCached = isCached + for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { + err = in.extract() + if err == nil { + break } + jenkinslog.V(1).Info("Cache Plugin Data", "failed to extract file", err) + } - if isCached { - in.SleepTime = 12 - } else { - in.SleepTime = 1 + if err != nil { + jenkinslog.Info("Cache Plugin Data", "failed to extract file", err) + return false + } + + for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { + err = in.cache() + if err == nil { + break } - time.Sleep(time.Duration(in.SleepTime) * time.Hour) + jenkinslog.V(1).Info("Cache Plugin Data", "failed to read plugin data file", err) + } + + if err != nil { + jenkinslog.Info("Cache Plugin Data", "failed to read plugin data file", err) + return false } + + return true } func (in *PluginDataManager) download() error { @@ -264,11 +271,12 @@ func (in *PluginDataManager) download() error { Timeout: in.Timeout, } - resp, err := client.Get(in.Hosturl) + resp, err := client.Get(Hosturl) if err != nil { return err } defer resp.Body.Close() + _, err = io.Copy(out, resp.Body) if err != nil { return err @@ -307,7 +315,6 @@ func (in *PluginDataManager) cache() error { return err } defer jsonFile.Close() - byteValue, err := ioutil.ReadAll(jsonFile) if err != nil { return err @@ -337,47 +344,3 @@ func compareVersions(firstVersion string, lastVersion string, pluginVersion stri } return true } - -func CreateJenkinsCR(name string, namespace string, userPlugins []Plugin, validateSecurityWarnings bool) *Jenkins { - jenkins := &Jenkins{ - TypeMeta: JenkinsTypeMeta(), - ObjectMeta: metav1.ObjectMeta{ - Name: name, - Namespace: namespace, - }, - Spec: JenkinsSpec{ - GroovyScripts: GroovyScripts{ - Customization: Customization{ - Configurations: []ConfigMapRef{}, - Secret: SecretRef{ - Name: "", - }, - }, - }, - ConfigurationAsCode: ConfigurationAsCode{ - Customization: Customization{ - Configurations: []ConfigMapRef{}, - Secret: SecretRef{ - Name: "", - }, - }, - }, - Master: JenkinsMaster{ - Plugins: userPlugins, - DisableCSRFProtection: false, - }, - ValidateSecurityWarnings: validateSecurityWarnings, - Service: Service{ - Type: corev1.ServiceTypeNodePort, - Port: constants.DefaultHTTPPortInt32, - }, - JenkinsAPISettings: JenkinsAPISettings{AuthorizationStrategy: CreateUserAuthorizationStrategy}, - }, - } - - return jenkins -} - -func CreateSecurityWarnings(firstVersion string, lastVersion string) []Warning { - return []Warning{{Versions: []Version{{FirstVersion: firstVersion, LastVersion: lastVersion}}, ID: "null", Message: "unit testing", URL: "null", Active: false}} -} diff --git a/api/v1alpha2/jenkins_webhook_test.go b/api/v1alpha2/jenkins_webhook_test.go index 7aad6665b..439a1960c 100644 --- a/api/v1alpha2/jenkins_webhook_test.go +++ b/api/v1alpha2/jenkins_webhook_test.go @@ -5,6 +5,7 @@ import ( "testing" "github.com/stretchr/testify/assert" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) func TestMakeSemanticVersion(t *testing.T) { @@ -77,7 +78,7 @@ func TestCompareVersions(t *testing.T) { func TestValidate(t *testing.T) { t.Run("Validating when plugins data file is not fetched", func(t *testing.T) { userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} - jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + jenkinscr := *createJenkinsCR(userplugins, true) got := jenkinscr.ValidateCreate() assert.Equal(t, got, errors.New("plugins data has not been fetched")) }) @@ -88,66 +89,89 @@ func TestValidate(t *testing.T) { {Name: "security-script"}, {Name: "git-client"}, {Name: "git"}, - {Name: "google-login", SecurityWarnings: CreateSecurityWarnings("", "1.2")}, - {Name: "sample-plugin", SecurityWarnings: CreateSecurityWarnings("", "0.8")}, + {Name: "google-login", SecurityWarnings: createSecurityWarnings("", "1.2")}, + {Name: "sample-plugin", SecurityWarnings: createSecurityWarnings("", "0.8")}, {Name: "mailer"}, {Name: "plain-credentials"}}} userplugins := []Plugin{{Name: "script-security", Version: "1.77"}, {Name: "git-client", Version: "3.9"}, {Name: "git", Version: "4.8.1"}, {Name: "plain-credentials", Version: "1.7"}} - jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + jenkinscr := *createJenkinsCR(userplugins, true) got := jenkinscr.ValidateCreate() assert.Nil(t, got) }) t.Run("Validating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { PluginsMgr.PluginDataCache = PluginsInfo{Plugins: []PluginInfo{ - {Name: "security-script", SecurityWarnings: CreateSecurityWarnings("1.2", "2.2")}, - {Name: "workflow-cps", SecurityWarnings: CreateSecurityWarnings("2.59", "")}, + {Name: "security-script", SecurityWarnings: createSecurityWarnings("1.2", "2.2")}, + {Name: "workflow-cps", SecurityWarnings: createSecurityWarnings("2.59", "")}, {Name: "git-client"}, {Name: "git"}, - {Name: "sample-plugin", SecurityWarnings: CreateSecurityWarnings("0.8", "")}, - {Name: "command-launcher", SecurityWarnings: CreateSecurityWarnings("1.2", "1.4")}, + {Name: "sample-plugin", SecurityWarnings: createSecurityWarnings("0.8", "")}, + {Name: "command-launcher", SecurityWarnings: createSecurityWarnings("1.2", "1.4")}, {Name: "plain-credentials"}, - {Name: "google-login", SecurityWarnings: CreateSecurityWarnings("1.1", "1.3")}, - {Name: "mailer", SecurityWarnings: CreateSecurityWarnings("1.0.3", "1.1.4")}, + {Name: "google-login", SecurityWarnings: createSecurityWarnings("1.1", "1.3")}, + {Name: "mailer", SecurityWarnings: createSecurityWarnings("1.0.3", "1.1.4")}, }} userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + jenkinscr := *createJenkinsCR(userplugins, true) got := jenkinscr.ValidateCreate() assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nworkflow-cps:2.59\ngoogle-login:1.2\nmailer:1.1")) }) t.Run("Updating a Jenkins CR with some of the plugins having security warnings and validation is turned on", func(t *testing.T) { PluginsMgr.PluginDataCache = PluginsInfo{Plugins: []PluginInfo{ - {Name: "handy-uri-templates-2-api", SecurityWarnings: CreateSecurityWarnings("2.1.8-1.0", "2.2.8-1.0")}, - {Name: "workflow-cps", SecurityWarnings: CreateSecurityWarnings("2.59", "")}, - {Name: "resource-disposer", SecurityWarnings: CreateSecurityWarnings("0.7", "1.2")}, + {Name: "handy-uri-templates-2-api", SecurityWarnings: createSecurityWarnings("2.1.8-1.0", "2.2.8-1.0")}, + {Name: "workflow-cps", SecurityWarnings: createSecurityWarnings("2.59", "")}, + {Name: "resource-disposer", SecurityWarnings: createSecurityWarnings("0.7", "1.2")}, {Name: "git"}, {Name: "jjwt-api"}, - {Name: "blueocean-github-pipeline", SecurityWarnings: CreateSecurityWarnings("1.2.0-alpha-2", "1.2.0-beta-5")}, - {Name: "command-launcher", SecurityWarnings: CreateSecurityWarnings("1.2", "1.4")}, + {Name: "blueocean-github-pipeline", SecurityWarnings: createSecurityWarnings("1.2.0-alpha-2", "1.2.0-beta-5")}, + {Name: "command-launcher", SecurityWarnings: createSecurityWarnings("1.2", "1.4")}, {Name: "plain-credentials"}, - {Name: "ghprb", SecurityWarnings: CreateSecurityWarnings("1.1", "1.43")}, - {Name: "mailer", SecurityWarnings: CreateSecurityWarnings("1.0.3", "1.1.4")}, + {Name: "ghprb", SecurityWarnings: createSecurityWarnings("1.1", "1.43")}, + {Name: "mailer", SecurityWarnings: createSecurityWarnings("1.0.3", "1.1.4")}, }} userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - oldjenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + oldjenkinscr := *createJenkinsCR(userplugins, true) userplugins = []Plugin{{Name: "handy-uri-templates-2-api", Version: "2.1.8-1.0"}, {Name: "resource-disposer", Version: "0.8"}, {Name: "jjwt-api", Version: "0.11.2-9.c8b45b8bb173"}, {Name: "blueocean-github-pipeline", Version: "1.2.0-beta-3"}, {Name: "ghprb", Version: "1.39"}} - newjenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, true) + newjenkinscr := *createJenkinsCR(userplugins, true) got := newjenkinscr.ValidateUpdate(&oldjenkinscr) assert.Equal(t, got, errors.New("security vulnerabilities detected in the following user-defined plugins: \nhandy-uri-templates-2-api:2.1.8-1.0\nresource-disposer:0.8\nblueocean-github-pipeline:1.2.0-beta-3\nghprb:1.39")) }) t.Run("Validation is turned off", func(t *testing.T) { userplugins := []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - jenkinscr := *CreateJenkinsCR("Jenkins", "test", userplugins, false) + jenkinscr := *createJenkinsCR(userplugins, false) got := jenkinscr.ValidateCreate() assert.Nil(t, got) userplugins = []Plugin{{Name: "google-login", Version: "1.2"}, {Name: "mailer", Version: "1.1"}, {Name: "git", Version: "4.8.1"}, {Name: "command-launcher", Version: "1.6"}, {Name: "workflow-cps", Version: "2.59"}} - newjenkinscr := *CreateJenkinsCR("jenkins", "test", userplugins, false) + newjenkinscr := *createJenkinsCR(userplugins, false) got = newjenkinscr.ValidateUpdate(&jenkinscr) assert.Nil(t, got) }) } + +func createJenkinsCR(userPlugins []Plugin, validateSecurityWarnings bool) *Jenkins { + jenkins := &Jenkins{ + TypeMeta: JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: "jenkins", + Namespace: "test", + }, + Spec: JenkinsSpec{ + Master: JenkinsMaster{ + Plugins: userPlugins, + DisableCSRFProtection: false, + }, + ValidateSecurityWarnings: validateSecurityWarnings, + }, + } + + return jenkins +} + +func createSecurityWarnings(firstVersion string, lastVersion string) []Warning { + return []Warning{{Versions: []Version{{FirstVersion: firstVersion, LastVersion: lastVersion}}, ID: "null", Message: "unit testing", URL: "null", Active: false}} +} diff --git a/main.go b/main.go index 8a6fe1ba4..778a019b5 100644 --- a/main.go +++ b/main.go @@ -113,7 +113,7 @@ func main() { if ValidateSecurityWarnings { isInitialized := make(chan bool) - go v1alpha2.PluginsMgr.FetchPluginData(isInitialized) + go v1alpha2.PluginsMgr.ManagePluginData(isInitialized) if !<-isInitialized { logger.Info("Unable to get the plugins data") From 95c29d4994685c499e171b3e316ea028150a2d3d Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Sun, 22 Aug 2021 03:53:03 +0530 Subject: [PATCH 25/26] Modified helm tests --- test/helm/helm_test.go | 169 ++++++++++++++++++++++------------------- 1 file changed, 91 insertions(+), 78 deletions(-) diff --git a/test/helm/helm_test.go b/test/helm/helm_test.go index ebaab60ea..7bae087b4 100644 --- a/test/helm/helm_test.go +++ b/test/helm/helm_test.go @@ -36,90 +36,103 @@ var _ = Describe("Jenkins Controller with webhook", func() { e2e.ShowLogsIfTestHasFailed(CurrentGinkgoTestDescription().Failed, namespace.Name) e2e.DestroyNamespace(namespace) }) - It("Deploys Jenkins operator with webhook enabled along with the default jenkins image", func() { - jenkins := &v1alpha2.Jenkins{ - TypeMeta: v1alpha2.JenkinsTypeMeta(), - ObjectMeta: metav1.ObjectMeta{ - Name: "jenkins", - Namespace: namespace.Name, - }, - } - - cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", - "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), - "--set-string", fmt.Sprintf("operator.image=%s", *imageName), "--install", "--wait") - output, err := cmd.CombinedOutput() - Expect(err).NotTo(HaveOccurred(), string(output)) - e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) - e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + Context("Deploys jenkins operator with helm charts with default values", func() { + It("Deploys Jenkins operator and configures default Jenkins instance", func() { + jenkins := &v1alpha2.Jenkins{ + TypeMeta: v1alpha2.JenkinsTypeMeta(), + ObjectMeta: metav1.ObjectMeta{ + Name: "jenkins", + Namespace: namespace.Name, + }, + } - }) + cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", + "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), + "--set-string", fmt.Sprintf("operator.image=%s", *imageName), "--install", "--wait") + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) - It("Deploys Jenkins operator along with webhook and cert-manager", func() { + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) - By("Deploying the operator along with webhook and cert-manager") - cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", - "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), "--set-string", fmt.Sprintf("operator.image=%s", *imageName), - "--set", fmt.Sprintf("webhook.enabled=%t", true), "--set", fmt.Sprintf("jenkins.enabled=%t", false), "--install", "--wait") - output, err := cmd.CombinedOutput() - Expect(err).NotTo(HaveOccurred(), string(output)) + }) + }) - By("Waiting for the operator to fetch the plugin data ") - time.Sleep(time.Duration(200) * time.Second) - - By("Denies a create request for a Jenkins custom resource with some plugins having security warnings and validation is turned on") - userplugins := []v1alpha2.Plugin{ - {Name: "simple-theme-plugin", Version: "0.6"}, - {Name: "audit-trail", Version: "3.5"}, - {Name: "github", Version: "1.29.0"}, - } - jenkins := CreateJenkinsCR("jenkins", namespace.Name, userplugins, true) - Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \naudit-trail:3.5\ngithub:1.29.0")) - - By("Creating the same Jenkins custom resource with some plugins having security warnings but validation is turned off") - userplugins = []v1alpha2.Plugin{ - {Name: "simple-theme-plugin", Version: "0.6"}, - {Name: "audit-trail", Version: "3.5"}, - {Name: "github", Version: "1.29.0"}, - } - jenkins = CreateJenkinsCR("jenkins", namespace.Name, userplugins, false) - Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(Succeed()) - e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) - e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) - - By("Updating the Jenkins resource with plugins not having any security warnings and validation is turned on") - userplugins = []v1alpha2.Plugin{ - {Name: "simple-theme-plugin", Version: "0.6"}, - {Name: "audit-trail", Version: "3.8"}, - {Name: "github", Version: "1.31.0"}, - } - jenkins.Spec.Master.Plugins = userplugins - jenkins.Spec.ValidateSecurityWarnings = true - Expect(e2e.K8sClient.Update(context.TODO(), jenkins)).Should(Succeed()) - jenkins = &v1alpha2.Jenkins{ - TypeMeta: v1alpha2.JenkinsTypeMeta(), - ObjectMeta: metav1.ObjectMeta{ - Name: "jenkins", - Namespace: namespace.Name, - }, - } - e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) - e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) - - By("Failing to update the Jenkins custom resource because some plugins having security warnings and validation is turned on") - userplugins = []v1alpha2.Plugin{ - {Name: "vncviewer", Version: "1.7"}, - {Name: "build-timestamp", Version: "1.0.3"}, - {Name: "deployit-plugin", Version: "7.5.5"}, - {Name: "github-branch-source", Version: "2.0.7"}, - {Name: "aws-lambda-cloud", Version: "0.4"}, - {Name: "groovy", Version: "1.31"}, - {Name: "google-login", Version: "1.2"}, - } - jenkins.Spec.Master.Plugins = userplugins - Expect(e2e.K8sClient.Update(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \nvncviewer:1.7\ndeployit-plugin:7.5.5\ngithub-branch-source:2.0.7\ngroovy:1.31\ngoogle-login:1.2")) + Context("Deploys jenkins operator with helm charts with validating webhook and jenkins instance disabled", func() { + It("Deploys operator,denies creating a jenkins cr and creates jenkins cr with validation turned off", func() { + + By("Deploying the operator along with webhook and cert-manager") + cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", + "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), "--set-string", fmt.Sprintf("operator.image=%s", *imageName), + "--set", fmt.Sprintf("webhook.enabled=%t", true), "--set", fmt.Sprintf("jenkins.enabled=%t", false), "--install", "--wait") + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) + + By("Waiting for the operator to fetch the plugin data ") + time.Sleep(time.Duration(200) * time.Second) + + By("Denying a create request for a Jenkins custom resource with some plugins having security warnings and validation is turned on") + userplugins := []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.5"}, + {Name: "github", Version: "1.29.0"}, + } + jenkins := CreateJenkinsCR("jenkins", namespace.Name, userplugins, true) + Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \naudit-trail:3.5\ngithub:1.29.0")) + + By("Creating the Jenkins resource with plugins not having any security warnings and validation is turned on") + userplugins = []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.8"}, + {Name: "github", Version: "1.31.0"}, + } + jenkins = CreateJenkinsCR("jenkins", namespace.Name, userplugins, true) + Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(Succeed()) + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + + }) + + It("Deploys operator, creates a jenkins cr and denies update request for another one", func() { + By("Deploying the operator along with webhook and cert-manager") + cmd := exec.Command("../../bin/helm", "upgrade", "jenkins", "../../chart/jenkins-operator", "--namespace", namespace.Name, "--debug", + "--set-string", fmt.Sprintf("jenkins.namespace=%s", namespace.Name), "--set-string", fmt.Sprintf("operator.image=%s", *imageName), + "--set", fmt.Sprintf("webhook.enabled=%t", true), "--set", fmt.Sprintf("jenkins.enabled=%t", false), "--install", "--wait") + output, err := cmd.CombinedOutput() + Expect(err).NotTo(HaveOccurred(), string(output)) + + By("Waiting for the operator to fetch the plugin data ") + time.Sleep(time.Duration(200) * time.Second) + + By("Creating a Jenkins custom resource with some plugins having security warnings but validation is turned off") + userplugins := []v1alpha2.Plugin{ + {Name: "simple-theme-plugin", Version: "0.6"}, + {Name: "audit-trail", Version: "3.5"}, + {Name: "github", Version: "1.29.0"}, + } + jenkins := CreateJenkinsCR("jenkins", namespace.Name, userplugins, false) + Expect(e2e.K8sClient.Create(context.TODO(), jenkins)).Should(Succeed()) + e2e.WaitForJenkinsBaseConfigurationToComplete(jenkins) + e2e.WaitForJenkinsUserConfigurationToComplete(jenkins) + + By("Failing to update the Jenkins custom resource because some plugins have security warnings and validation is turned on") + userplugins = []v1alpha2.Plugin{ + {Name: "vncviewer", Version: "1.7"}, + {Name: "build-timestamp", Version: "1.0.3"}, + {Name: "deployit-plugin", Version: "7.5.5"}, + {Name: "github-branch-source", Version: "2.0.7"}, + {Name: "aws-lambda-cloud", Version: "0.4"}, + {Name: "groovy", Version: "1.31"}, + {Name: "google-login", Version: "1.2"}, + } + jenkins.Spec.Master.Plugins = userplugins + jenkins.Spec.ValidateSecurityWarnings = true + Expect(e2e.K8sClient.Update(context.TODO(), jenkins)).Should(MatchError("admission webhook \"vjenkins.kb.io\" denied the request: security vulnerabilities detected in the following user-defined plugins: \nvncviewer:1.7\ndeployit-plugin:7.5.5\ngithub-branch-source:2.0.7\ngroovy:1.31\ngoogle-login:1.2")) + + }) }) + }) func CreateJenkinsCR(name string, namespace string, userPlugins []v1alpha2.Plugin, validateSecurityWarnings bool) *v1alpha2.Jenkins { From ba66ba4c4deec7056be8092a309c829a62359a0e Mon Sep 17 00:00:00 2001 From: sharmapulkit04 Date: Mon, 23 Aug 2021 13:03:31 +0530 Subject: [PATCH 26/26] code cleanup and optimization --- api/v1alpha2/jenkins_webhook.go | 65 +++++++++++++++------------------ 1 file changed, 30 insertions(+), 35 deletions(-) diff --git a/api/v1alpha2/jenkins_webhook.go b/api/v1alpha2/jenkins_webhook.go index f2c291c69..2eac25c52 100644 --- a/api/v1alpha2/jenkins_webhook.go +++ b/api/v1alpha2/jenkins_webhook.go @@ -5,7 +5,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/lictenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -26,8 +26,7 @@ import ( "os" "time" - //"github.com/jenkinsci/kubernetes-operator/pkg/configuration/base/resources" - + "github.com/jenkinsci/kubernetes-operator/pkg/log" "github.com/jenkinsci/kubernetes-operator/pkg/plugins" "golang.org/x/mod/semver" @@ -195,13 +194,20 @@ func NewPluginsDataManager(compressedFilePath string, pluginDataFile string, isC } func (in *PluginDataManager) ManagePluginData(sig chan bool) { - var isInit bool // checks if the operator + var isInit bool var retryInterval time.Duration for { - isCached := in.fetchPluginData() + var isCached bool + err := in.fetchPluginData() + if err == nil { + isCached = true + } else { + jenkinslog.Info("Cache plugin data", "failed to fetch plugin data", err) + } + // should only be executed once when the operator starts if !isInit { sig <- isCached // sending signal to main to continue - isInit = false + isInit = true } in.IsCached = in.IsCached || isCached @@ -215,49 +221,45 @@ func (in *PluginDataManager) ManagePluginData(sig chan bool) { } // Downloads extracts and reads the JSON data in every 12 hours -func (in *PluginDataManager) fetchPluginData() bool { +func (in *PluginDataManager) fetchPluginData() error { jenkinslog.Info("Initializing/Updating the plugin data cache") var err error for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { err = in.download() - if err == nil { - break + if err != nil { + jenkinslog.V(log.VDebug).Info("Cache Plugin Data", "failed to download file", err) + continue } - jenkinslog.V(1).Info("Cache Plugin Data", "failed to download file", err) + break } if err != nil { - jenkinslog.Info("Cache Plugin Data", "failed to download file", err) - return false + return err } for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { err = in.extract() - if err == nil { - break + if err != nil { + jenkinslog.V(log.VDebug).Info("Cache Plugin Data", "failed to extract file", err) + continue } - jenkinslog.V(1).Info("Cache Plugin Data", "failed to extract file", err) + break } if err != nil { - jenkinslog.Info("Cache Plugin Data", "failed to extract file", err) - return false + return err } for in.Attempts = 0; in.Attempts < 5; in.Attempts++ { err = in.cache() - if err == nil { - break + if err != nil { + jenkinslog.V(log.VDebug).Info("Cache Plugin Data", "failed to read plugin data file", err) + continue } - jenkinslog.V(1).Info("Cache Plugin Data", "failed to read plugin data file", err) - } - - if err != nil { - jenkinslog.Info("Cache Plugin Data", "failed to read plugin data file", err) - return false + break } - return true + return err } func (in *PluginDataManager) download() error { @@ -278,11 +280,7 @@ func (in *PluginDataManager) download() error { defer resp.Body.Close() _, err = io.Copy(out, resp.Body) - if err != nil { - return err - } - - return nil + return err } func (in *PluginDataManager) extract() error { @@ -320,10 +318,7 @@ func (in *PluginDataManager) cache() error { return err } err = json.Unmarshal(byteValue, &in.PluginDataCache) - if err != nil { - return err - } - return nil + return err } // returns a semantic version that can be used for comparison, allowed versioning format vMAJOR.MINOR.PATCH or MAJOR.MINOR.PATCH