initial commit
Signed-off-by: Xe Iaso <me@xeiaso.net>
Changed files
ADDED
.gitignore
ADDED
.gitignore
@@ -0,0 +1,2 @@+*.wasm+*.gz
ADDED
README.md
ADDED
README.md
@@ -0,0 +1,16 @@+# HyperCloud++Setting up your own platform on top of Kubernetes sucks. Techaro HyperCloud (THC) is here to help you do it with the magic of opinionated defaults.++With HyperCloud, you get the following added to Kubernetes out of the box:++- HTTP ingress via [Traefik](https://traefik.io/)+- TLS certificate issuance via [cert-manager](https://cert-manager.io/)+- DNS settings via [external-dns](https://kubernetes-sigs.github.io/external-dns/latest/)+- Tor hidden services and other fun via [tor-controller](https://github.com/bugfest/tor-controller)+- [Air Traffic Control](https://yokecd.github.io/docs/airtrafficcontroller/atc/) to manage custom templates++But we don't stop there. We also add datatypes on top of Kubernetes to make common setups easier:++- [ ] App.hypercloud.techaro.lol - A flexible App type for your stateful and stateless workloads, including Anubis integration+- [ ] Database.hypercloud.techaro.lol - MySQL or PostgreSQL databases complete with backups
@@ -0,0 +1,1 @@+example.yaml
@@ -0,0 +1,13286 @@+# Copyright 2022 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.++apiVersion: v1+kind: Namespace+metadata:+ name: cert-manager++---+# Source: cert-manager/templates/crds.yaml+#+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: certificaterequests.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: cert-manager.io+ names:+ kind: CertificateRequest+ listKind: CertificateRequestList+ plural: certificaterequests+ shortNames:+ - cr+ - crs+ singular: certificaterequest+ categories:+ - cert-manager+ scope: Namespaced+ versions:+ - 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: Requester+ 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.++ All fields within the CertificateRequest's `spec` are immutable after creation.+ A CertificateRequest will either succeed or fail, as denoted by its `Ready` status+ condition and its `status.failureTime` field.++ 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: |-+ Specification of the desired state of the CertificateRequest resource.+ https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status+ type: object+ required:+ - issuerRef+ - request+ properties:+ duration:+ description: |-+ Requested 'duration' (i.e. lifetime) of the Certificate. Note that the+ issuer may choose to ignore the requested duration, just like any other+ requested attribute.+ 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: |-+ Requested basic constraints isCA value. Note that the issuer may choose+ to ignore the requested isCA value, just like any other requested attribute.++ NOTE: If the CSR in the `Request` field has a BasicConstraints extension,+ it must have the same isCA value as specified here.++ If true, this will automatically add the `cert sign` usage to the list+ of requested `usages`.+ type: boolean+ issuerRef:+ description: |-+ Reference to the issuer responsible for issuing the certificate.+ If the issuer is namespace-scoped, it must be in the same namespace+ as the Certificate. If the issuer is cluster-scoped, it can be used+ from any namespace.++ The `name` field of the reference must always be specified.+ 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 X.509 certificate signing request to be submitted to the+ issuer for signing.++ If the CSR has a BasicConstraints extension, its isCA attribute must+ match the `isCA` value of this CertificateRequest.+ If the CSR has a KeyUsage extension, its key usages must match the+ key usages in the `usages` field of this CertificateRequest.+ If the CSR has a ExtKeyUsage extension, its extended key usages+ must match the extended key usages in the `usages` field of this+ CertificateRequest.+ 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: |-+ Requested key usages and extended key usages.++ NOTE: If the CSR in the `Request` field has uses the KeyUsage or+ ExtKeyUsage extension, these extensions must have the same values+ as specified here without any additional values.++ If unset, defaults to `digital signature` and `key encipherment`.+ 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.+ Read-only.+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status+ type: object+ properties:+ ca:+ description: |-+ The PEM encoded X.509 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 X.509 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`, `InvalidRequest`, `Approved` and `Denied`.+ 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+ x-kubernetes-list-map-keys:+ - type+ x-kubernetes-list-type: map+ 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++# END crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: certificates.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: cert-manager.io+ names:+ kind: Certificate+ listKind: CertificateList+ plural: certificates+ shortNames:+ - cert+ - certs+ singular: certificate+ categories:+ - cert-manager+ scope: Namespaced+ versions:+ - 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+ X.509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`.++ 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: |-+ Specification of the desired state of the Certificate resource.+ https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status+ type: object+ required:+ - issuerRef+ - secretName+ properties:+ additionalOutputFormats:+ description: |-+ Defines extra output formats of the private key and signed certificate chain+ to be written to this Certificate's target Secret.++ This is a Beta Feature enabled by default. It can be disabled with the+ `--feature-gates=AdditionalCertificateOutputFormats=false` option set on both+ the controller and webhook components.+ type: array+ items:+ description: |-+ CertificateAdditionalOutputFormat defines an additional output format of a+ Certificate resource. These contain supplementary data formats of the signed+ certificate chain and paired private key.+ type: object+ required:+ - type+ properties:+ type:+ description: |-+ Type is the name of the format type that should be written to the+ Certificate's target Secret.+ type: string+ enum:+ - DER+ - CombinedPEM+ commonName:+ description: |-+ Requested common name X509 certificate subject attribute.+ More info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.6+ NOTE: TLS clients will ignore this value when any subject alternative name is+ set (see https://tools.ietf.org/html/rfc6125#section-6.4.4).++ Should have a length of 64 characters or fewer to avoid generating invalid CSRs.+ Cannot be set if the `literalSubject` field is set.+ type: string+ dnsNames:+ description: Requested DNS subject alternative names.+ type: array+ items:+ type: string+ duration:+ description: |-+ Requested 'duration' (i.e. lifetime) of the Certificate. Note that the+ issuer may choose to ignore the requested duration, just like any other+ requested attribute.++ If unset, this defaults to 90 days.+ 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: Requested email subject alternative names.+ type: array+ items:+ type: string+ encodeUsagesInRequest:+ description: |-+ Whether the KeyUsage and ExtKeyUsage extensions should be set in the encoded CSR.++ This option defaults to true, and should only be disabled if the target+ issuer does not support CSRs with these X509 KeyUsage/ ExtKeyUsage extensions.+ type: boolean+ ipAddresses:+ description: Requested IP address subject alternative names.+ type: array+ items:+ type: string+ isCA:+ description: |-+ Requested basic constraints isCA value.+ The isCA value is used to set the `isCA` field on the created CertificateRequest+ resources. Note that the issuer may choose to ignore the requested isCA value, just+ like any other requested attribute.++ If true, this will automatically add the `cert sign` usage to the list+ of requested `usages`.+ type: boolean+ issuerRef:+ description: |-+ Reference to the issuer responsible for issuing the certificate.+ If the issuer is namespace-scoped, it must be in the same namespace+ as the Certificate. If the issuer is cluster-scoped, it can be used+ from any namespace.++ The `name` field of the reference must always be specified.+ 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: Additional keystore output formats to be stored in the Certificate's Secret.+ type: object+ properties:+ jks:+ description: |-+ JKS configures options for storing a JKS keystore in the+ `spec.secretName` Secret resource.+ type: object+ required:+ - create+ properties:+ alias:+ description: |-+ Alias specifies the alias of the key in the keystore, required by the JKS format.+ If not provided, the default alias `certificate` will be used.+ type: string+ 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` or `password`.+ The keystore file will be updated immediately.+ If the issuer provided a CA certificate, 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+ password:+ description: |-+ Password provides a literal password used to encrypt the JKS keystore.+ Mutually exclusive with passwordSecretRef.+ One of password or passwordSecretRef must provide a password with a non-zero length.+ type: string+ passwordSecretRef:+ description: |-+ PasswordSecretRef is a reference to a non-empty key in a Secret resource+ containing the password used to encrypt the JKS keystore.+ Mutually exclusive with password.+ One of password or passwordSecretRef must provide a password with a non-zero length.+ 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+ 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` or in `password`.+ The keystore file will be updated immediately.+ If the issuer provided a CA certificate, 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+ password:+ description: |-+ Password provides a literal password used to encrypt the PKCS#12 keystore.+ Mutually exclusive with passwordSecretRef.+ One of password or passwordSecretRef must provide a password with a non-zero length.+ type: string+ passwordSecretRef:+ description: |-+ PasswordSecretRef is a reference to a non-empty key in a Secret resource+ containing the password used to encrypt the PKCS#12 keystore.+ Mutually exclusive with password.+ One of password or passwordSecretRef must provide a password with a non-zero length.+ 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+ profile:+ description: |-+ Profile specifies the key and certificate encryption algorithms and the HMAC algorithm+ used to create the PKCS12 keystore. Default value is `LegacyRC2` for backward compatibility.++ If provided, allowed values are:+ `LegacyRC2`: Deprecated. Not supported by default in OpenSSL 3 or Java 20.+ `LegacyDES`: Less secure algorithm. Use this option for maximal compatibility.+ `Modern2023`: Secure algorithm. Use this option in case you have to always use secure algorithms+ (eg. because of company policy). Please note that the security of the algorithm is not that important+ in reality, because the unencrypted certificate and private key are also stored in the Secret.+ type: string+ enum:+ - LegacyRC2+ - LegacyDES+ - Modern2023+ literalSubject:+ description: |-+ Requested X.509 certificate subject, represented using the LDAP "String+ Representation of a Distinguished Name" [1].+ Important: the LDAP string format also specifies the order of the attributes+ in the subject, this is important when issuing certs for LDAP authentication.+ Example: `CN=foo,DC=corp,DC=example,DC=com`+ More info [1]: https://datatracker.ietf.org/doc/html/rfc4514+ More info: https://github.com/cert-manager/cert-manager/issues/3203+ More info: https://github.com/cert-manager/cert-manager/issues/4424++ Cannot be set if the `subject` or `commonName` field is set.+ type: string+ nameConstraints:+ description: |-+ x.509 certificate NameConstraint extension which MUST NOT be used in a non-CA certificate.+ More Info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.10++ This is an Alpha Feature and is only enabled with the+ `--feature-gates=NameConstraints=true` option set on both+ the controller and webhook components.+ type: object+ properties:+ critical:+ description: if true then the name constraints are marked critical.+ type: boolean+ excluded:+ description: |-+ Excluded contains the constraints which must be disallowed. Any name matching a+ restriction in the excluded field is invalid regardless+ of information appearing in the permitted+ type: object+ properties:+ dnsDomains:+ description: DNSDomains is a list of DNS domains that are permitted or excluded.+ type: array+ items:+ type: string+ emailAddresses:+ description: EmailAddresses is a list of Email Addresses that are permitted or excluded.+ type: array+ items:+ type: string+ ipRanges:+ description: |-+ IPRanges is a list of IP Ranges that are permitted or excluded.+ This should be a valid CIDR notation.+ type: array+ items:+ type: string+ uriDomains:+ description: URIDomains is a list of URI domains that are permitted or excluded.+ type: array+ items:+ type: string+ permitted:+ description: Permitted contains the constraints in which the names must be located.+ type: object+ properties:+ dnsDomains:+ description: DNSDomains is a list of DNS domains that are permitted or excluded.+ type: array+ items:+ type: string+ emailAddresses:+ description: EmailAddresses is a list of Email Addresses that are permitted or excluded.+ type: array+ items:+ type: string+ ipRanges:+ description: |-+ IPRanges is a list of IP Ranges that are permitted or excluded.+ This should be a valid CIDR notation.+ type: array+ items:+ type: string+ uriDomains:+ description: URIDomains is a list of URI domains that are permitted or excluded.+ type: array+ items:+ type: string+ otherNames:+ description: |-+ `otherNames` is an escape hatch for SAN that allows any type. We currently restrict the support to string like otherNames, cf RFC 5280 p 37+ Any UTF8 String valued otherName can be passed with by setting the keys oid: x.x.x.x and UTF8Value: somevalue for `otherName`.+ Most commonly this would be UPN set with oid: 1.3.6.1.4.1.311.20.2.3+ You should ensure that any OID passed is valid for the UTF8String type as we do not explicitly validate this.+ type: array+ items:+ type: object+ properties:+ oid:+ description: |-+ OID is the object identifier for the otherName SAN.+ The object identifier must be expressed as a dotted string, for+ example, "1.2.840.113556.1.4.221".+ type: string+ utf8Value:+ description: |-+ utf8Value is the string value of the otherName SAN.+ The utf8Value accepts any valid UTF8 string to set as value for the otherName SAN.+ type: string+ privateKey:+ description: |-+ Private key options. These include the key algorithm and size, the used+ encoding and the rotation policy.+ 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`, `ECDSA` or `Ed25519`.+ If `algorithm` is specified and `size` is not provided,+ key size of 2048 will be used for `RSA` key algorithm and+ key size of 256 will be used for `ECDSA` 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 exist 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+ enum:+ - Never+ - Always+ 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. For example, if a certificate is valid for 60 minutes,+ and `renewBefore=10m`, cert-manager will begin to attempt to renew the certificate+ 50 minutes after it was issued (i.e. when there are 10 minutes remaining until+ the certificate is no longer valid).++ NOTE: The actual lifetime of the issued certificate is used to determine the+ renewal time. If an issuer returns a certificate with a different lifetime than+ the one requested, cert-manager will use the lifetime of the issued certificate.++ If unset, this defaults to 1/3 of the issued certificate's lifetime.+ Minimum accepted value is 5 minutes.+ Value must be in units accepted by Go time.ParseDuration https://golang.org/pkg/time/#ParseDuration.+ Cannot be set if the `renewBeforePercentage` field is set.+ type: string+ renewBeforePercentage:+ description: |-+ `renewBeforePercentage` is like `renewBefore`, except it is a relative percentage+ rather than an absolute duration. For example, if a certificate is valid for 60+ minutes, and `renewBeforePercentage=25`, cert-manager will begin to attempt to+ renew the certificate 45 minutes after it was issued (i.e. when there are 15+ minutes (25%) remaining until the certificate is no longer valid).++ NOTE: The actual lifetime of the issued certificate is used to determine the+ renewal time. If an issuer returns a certificate with a different lifetime than+ the one requested, cert-manager will use the lifetime of the issued certificate.++ Value must be an integer in the range (0,100). The minimum effective+ `renewBefore` derived from the `renewBeforePercentage` and `duration` fields is 5+ minutes.+ Cannot be set if the `renewBefore` field is set.+ type: integer+ format: int32+ revisionHistoryLimit:+ description: |-+ 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: |-+ 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. The Secret+ resource lives in the same namespace as the Certificate resource.+ type: string+ secretTemplate:+ description: |-+ Defines annotations and labels to be copied to the Certificate's Secret.+ Labels and annotations on the Secret will be changed as they appear on the+ SecretTemplate when added or removed. SecretTemplate annotations are added+ in conjunction with, and cannot overwrite, the base set of annotations+ cert-manager sets on the Certificate's Secret.+ 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: |-+ Requested set of X509 certificate subject attributes.+ More info: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.6++ The common name attribute is specified separately in the `commonName` field.+ Cannot be set if the `literalSubject` field is set.+ 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: Requested URI subject alternative names.+ type: array+ items:+ type: string+ usages:+ description: |-+ Requested key usages and extended key usages.+ These usages are used to set the `usages` field on the created CertificateRequest+ resources. If `encodeUsagesInRequest` is unset or set to `true`, the usages+ will additionally be encoded in the `request` field which contains the CSR blob.++ If unset, defaults to `digital signature` and `key encipherment`.+ 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.+ Read-only.+ More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status+ 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 a 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+ x-kubernetes-list-map-keys:+ - type+ x-kubernetes-list-type: map+ failedIssuanceAttempts:+ description: |-+ The number of continuous failed issuance attempts up till now. This+ field gets removed (if set) on a successful issuance and gets set to+ 1 if unset and an issuance has failed. If an issuance has failed, the+ delay till the next issuance will be calculated using formula+ time.Hour * 2 ^ (failedIssuanceAttempts - 1).+ type: integer+ lastFailureTime:+ description: |-+ LastFailureTime is set only if the latest issuance for this+ Certificate failed and contains the time of the failure. If an+ issuance has failed, the delay till the next issuance will be+ calculated using formula time.Hour * 2 ^ (failedIssuanceAttempts -+ 1). If the latest issuance has succeeded this field will be unset.+ 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.++ 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.++ Upon issuance, this field will be set to the value of the annotation+ on the CertificateRequest resource used to issue the certificate.++ 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++# END crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: challenges.acme.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: acme.cert-manager.io+ names:+ kind: Challenge+ listKind: ChallengeList+ plural: challenges+ singular: challenge+ categories:+ - cert-manager+ - cert-manager-acme+ scope: Namespaced+ 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: 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:+ `<private key JWK thumbprint>.<key from acme server for challenge>`.+ For DNS01 challenges, this is the base64 encoded SHA256 sum of the+ `<private key JWK thumbprint>.<key from acme server for challenge>`+ 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: |-+ Auth: Azure Service Principal:+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientSecret and TenantID must also be set.+ type: string+ clientSecretSecretRef:+ description: |-+ Auth: Azure Service Principal:+ A reference to a Secret containing the password associated with the Service Principal.+ If set, ClientID and TenantID must also be set.+ 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:+ description: name of the Azure environment (default AzurePublicCloud)+ type: string+ enum:+ - AzurePublicCloud+ - AzureChinaCloud+ - AzureGermanCloud+ - AzureUSGovernmentCloud+ hostedZoneName:+ description: name of the DNS zone that should be used+ type: string+ managedIdentity:+ description: |-+ Auth: Azure Workload Identity or Azure Managed Service Identity:+ Settings to enable Azure Workload Identity or Azure Managed Service Identity+ If set, ClientID, ClientSecret and TenantID must not be set.+ type: object+ properties:+ clientID:+ description: client ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceID:+ description: |-+ resource ID of the managed identity, can not be used at the same time as clientID+ Cannot be used for Azure Managed Service Identity+ type: string+ tenantID:+ description: tenant ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceGroupName:+ description: resource group the DNS zone is located in+ type: string+ subscriptionID:+ description: ID of the Azure subscription+ type: string+ tenantID:+ description: |-+ Auth: Azure Service Principal:+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientID and ClientSecret must also be set.+ 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+ properties:+ accessKeyID:+ description: |-+ The AccessKeyID is used for authentication.+ Cannot be set when SecretAccessKeyID is set.+ If neither the Access Key nor Key ID are 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+ accessKeyIDSecretRef:+ description: |-+ The SecretAccessKey is used for authentication. If set, pull the AWS+ access key ID from a key within a Kubernetes Secret.+ Cannot be set when AccessKeyID is set.+ If neither the Access Key nor Key ID are 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: 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+ auth:+ description: Auth configures how cert-manager authenticates.+ type: object+ required:+ - kubernetes+ properties:+ kubernetes:+ description: |-+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity+ by passing a bound ServiceAccount token.+ type: object+ required:+ - serviceAccountRef+ properties:+ serviceAccountRef:+ description: |-+ A reference to a service account that will be used to request a bound+ token (also known as "projected token"). To use this field, you must+ configure an RBAC rule to let cert-manager request a token.+ type: object+ required:+ - name+ properties:+ audiences:+ description: |-+ TokenAudiences is an optional list of audiences to include in the+ token passed to AWS. The default token consisting of the issuer's namespace+ and name is always included.+ If unset the audience defaults to `sts.amazonaws.com`.+ type: array+ items:+ type: string+ name:+ description: Name of the ServiceAccount used to request a token.+ type: string+ hostedZoneID:+ description: If set, the provider will manage only this zone in Route53 and will not do a lookup using the route53:ListHostedZonesByName api call.+ type: string+ region:+ description: |-+ Override the AWS region.++ Route53 is a global service and does not have regional endpoints but the+ region specified here (or via environment variables) is used as a hint to+ help compute the correct AWS credential scope and partition when it+ connects to Route53. See:+ - [Amazon Route 53 endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/r53.html)+ - [Global services](https://docs.aws.amazon.com/whitepapers/latest/aws-fault-isolation-boundaries/global-services.html)++ If you omit this region field, cert-manager will use the region from+ AWS_REGION and AWS_DEFAULT_REGION environment variables, if they are set+ in the cert-manager controller Pod.++ The `region` field is not needed if you use [IAM Roles for Service Accounts (IRSA)](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Webhook](https://github.com/aws/amazon-eks-pod-identity-webhook).+ In this case this `region` field value is ignored.++ The `region` field is not needed if you use [EKS Pod Identities](https://docs.aws.amazon.com/eks/latest/userguide/pod-identities.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Agent](https://github.com/aws/eks-pod-identity-agent),+ In this case this `region` field value is ignored.+ 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 neither the Access Key nor Key ID are 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: 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: |-+ Custom labels that will be applied to HTTPRoutes created by cert-manager+ while solving HTTP-01 challenges.+ type: object+ additionalProperties:+ type: string+ parentRefs:+ description: |-+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.+ cert-manager needs to know which parentRefs should be used when creating+ the HTTPRoute. Usually, the parentRef references a Gateway. See:+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways+ type: array+ items:+ description: |-+ ParentReference identifies an API object (usually a Gateway) that can be considered+ a parent of this resource (usually a route). There are two kinds of parent resources+ with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ This API may be extended in the future to support additional kinds of parent+ resources.++ The API object must be valid in the cluster; the Group and Kind must+ be registered in the cluster for this reference to be valid.+ type: object+ required:+ - name+ properties:+ group:+ description: |-+ Group is the group of the referent.+ When unspecified, "gateway.networking.k8s.io" is inferred.+ To set the core API group (such as for a "Service" kind referent),+ Group must be explicitly set to "" (empty string).++ Support: Core+ type: string+ default: gateway.networking.k8s.io+ maxLength: 253+ pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ kind:+ description: |-+ Kind is kind of the referent.++ There are two kinds of parent resources with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ Support for other resources is Implementation-Specific.+ type: string+ default: Gateway+ maxLength: 63+ minLength: 1+ pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$+ name:+ description: |-+ Name is the name of the referent.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ namespace:+ description: |-+ Namespace is the namespace of the referent. When unspecified, this refers+ to the local namespace of the Route.++ Note that there are specific rules for ParentRefs which cross namespace+ boundaries. Cross-namespace references are only valid if they are explicitly+ allowed by something in the namespace they are referring to. For example:+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a+ generic way to enable any other kind of cross-namespace reference.++ <gateway:experimental:description>+ ParentRefs from a Route to a Service in the same namespace are "producer"+ routes, which apply default routing rules to inbound connections from+ any namespace to the Service.++ ParentRefs from a Route to a Service in a different namespace are+ "consumer" routes, and these routing rules are only applied to outbound+ connections originating from the same namespace as the Route, for which+ the intended destination of the connections are a Service targeted as a+ ParentRef of the Route.+ </gateway:experimental:description>++ Support: Core+ type: string+ maxLength: 63+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$+ port:+ description: |-+ Port is the network port this Route targets. It can be interpreted+ differently based on the type of parent resource.++ When the parent resource is a Gateway, this targets all listeners+ listening on the specified port that also support this kind of Route(and+ select this Route). It's not recommended to set `Port` unless the+ networking behaviors specified in a Route must apply to a specific port+ as opposed to a listener(s) whose port(s) may be changed. When both Port+ and SectionName are specified, the name and port of the selected listener+ must match both specified values.++ <gateway:experimental:description>+ When the parent resource is a Service, this targets a specific port in the+ Service spec. When both Port (experimental) and SectionName are specified,+ the name and port of the selected port must match both specified values.+ </gateway:experimental:description>++ Implementations MAY choose to support other parent resources.+ Implementations supporting other types of parent resources MUST clearly+ document how/if Port is interpreted.++ For the purpose of status, an attachment is considered successful as+ long as the parent resource accepts it partially. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment+ from the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route,+ the Route MUST be considered detached from the Gateway.++ Support: Extended+ type: integer+ format: int32+ maximum: 65535+ minimum: 1+ sectionName:+ description: |-+ SectionName is the name of a section within the target resource. In the+ following resources, SectionName is interpreted as the following:++ * Gateway: Listener name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.+ * Service: Port name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.++ Implementations MAY choose to support attaching Routes to other resources.+ If that is the case, they MUST clearly document how SectionName is+ interpreted.++ When unspecified (empty string), this will reference the entire resource.+ For the purpose of status, an attachment is considered successful if at+ least one section in the parent resource accepts it. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from+ the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route, the+ Route MUST be considered detached from the Gateway.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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: |-+ This field configures the annotation `kubernetes.io/ingress.class` when+ creating Ingress resources to solve ACME challenges that use this+ challenge solver. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ type: string+ ingressClassName:+ description: |-+ This field configures the field `ingressClassName` on the created Ingress+ resources used to solve ACME challenges that use this challenge solver.+ This is the recommended way of configuring the ingress class. Only one of+ `class`, `name` or `ingressClassName` 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. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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: {}++# END crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: clusterissuers.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: cert-manager.io+ names:+ kind: ClusterIssuer+ listKind: ClusterIssuerList+ plural: clusterissuers+ singular: clusterissuer+ categories:+ - cert-manager+ scope: Cluster+ versions:+ - 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:+ caBundle:+ description: |-+ Base64-encoded bundle of PEM CAs which can be used to validate the certificate+ chain presented by the ACME server.+ Mutually exclusive with SkipTLSVerify; prefer using CABundle to prevent various+ kinds of security vulnerabilities.+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside+ the container is used to validate the TLS connection.+ type: string+ format: byte+ 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 combined set of+ ACME default and alternative chains that has a root-most certificate with+ this value as its issuer's commonname.+ 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: |-+ INSECURE: Enables or disables validation of the ACME server TLS certificate.+ If true, requests to the ACME server will not have the TLS certificate chain+ validated.+ Mutually exclusive with CABundle; prefer using CABundle to prevent various+ kinds of security vulnerabilities.+ Only enable this option in development environments.+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside+ the container is used to validate the TLS connection.+ 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: |-+ Auth: Azure Service Principal:+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientSecret and TenantID must also be set.+ type: string+ clientSecretSecretRef:+ description: |-+ Auth: Azure Service Principal:+ A reference to a Secret containing the password associated with the Service Principal.+ If set, ClientID and TenantID must also be set.+ 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:+ description: name of the Azure environment (default AzurePublicCloud)+ type: string+ enum:+ - AzurePublicCloud+ - AzureChinaCloud+ - AzureGermanCloud+ - AzureUSGovernmentCloud+ hostedZoneName:+ description: name of the DNS zone that should be used+ type: string+ managedIdentity:+ description: |-+ Auth: Azure Workload Identity or Azure Managed Service Identity:+ Settings to enable Azure Workload Identity or Azure Managed Service Identity+ If set, ClientID, ClientSecret and TenantID must not be set.+ type: object+ properties:+ clientID:+ description: client ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceID:+ description: |-+ resource ID of the managed identity, can not be used at the same time as clientID+ Cannot be used for Azure Managed Service Identity+ type: string+ tenantID:+ description: tenant ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceGroupName:+ description: resource group the DNS zone is located in+ type: string+ subscriptionID:+ description: ID of the Azure subscription+ type: string+ tenantID:+ description: |-+ Auth: Azure Service Principal:+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientID and ClientSecret must also be set.+ 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+ properties:+ accessKeyID:+ description: |-+ The AccessKeyID is used for authentication.+ Cannot be set when SecretAccessKeyID is set.+ If neither the Access Key nor Key ID are 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+ accessKeyIDSecretRef:+ description: |-+ The SecretAccessKey is used for authentication. If set, pull the AWS+ access key ID from a key within a Kubernetes Secret.+ Cannot be set when AccessKeyID is set.+ If neither the Access Key nor Key ID are 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: 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+ auth:+ description: Auth configures how cert-manager authenticates.+ type: object+ required:+ - kubernetes+ properties:+ kubernetes:+ description: |-+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity+ by passing a bound ServiceAccount token.+ type: object+ required:+ - serviceAccountRef+ properties:+ serviceAccountRef:+ description: |-+ A reference to a service account that will be used to request a bound+ token (also known as "projected token"). To use this field, you must+ configure an RBAC rule to let cert-manager request a token.+ type: object+ required:+ - name+ properties:+ audiences:+ description: |-+ TokenAudiences is an optional list of audiences to include in the+ token passed to AWS. The default token consisting of the issuer's namespace+ and name is always included.+ If unset the audience defaults to `sts.amazonaws.com`.+ type: array+ items:+ type: string+ name:+ description: Name of the ServiceAccount used to request a token.+ type: string+ hostedZoneID:+ description: If set, the provider will manage only this zone in Route53 and will not do a lookup using the route53:ListHostedZonesByName api call.+ type: string+ region:+ description: |-+ Override the AWS region.++ Route53 is a global service and does not have regional endpoints but the+ region specified here (or via environment variables) is used as a hint to+ help compute the correct AWS credential scope and partition when it+ connects to Route53. See:+ - [Amazon Route 53 endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/r53.html)+ - [Global services](https://docs.aws.amazon.com/whitepapers/latest/aws-fault-isolation-boundaries/global-services.html)++ If you omit this region field, cert-manager will use the region from+ AWS_REGION and AWS_DEFAULT_REGION environment variables, if they are set+ in the cert-manager controller Pod.++ The `region` field is not needed if you use [IAM Roles for Service Accounts (IRSA)](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Webhook](https://github.com/aws/amazon-eks-pod-identity-webhook).+ In this case this `region` field value is ignored.++ The `region` field is not needed if you use [EKS Pod Identities](https://docs.aws.amazon.com/eks/latest/userguide/pod-identities.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Agent](https://github.com/aws/eks-pod-identity-agent),+ In this case this `region` field value is ignored.+ 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 neither the Access Key nor Key ID are 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: 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: |-+ Custom labels that will be applied to HTTPRoutes created by cert-manager+ while solving HTTP-01 challenges.+ type: object+ additionalProperties:+ type: string+ parentRefs:+ description: |-+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.+ cert-manager needs to know which parentRefs should be used when creating+ the HTTPRoute. Usually, the parentRef references a Gateway. See:+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways+ type: array+ items:+ description: |-+ ParentReference identifies an API object (usually a Gateway) that can be considered+ a parent of this resource (usually a route). There are two kinds of parent resources+ with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ This API may be extended in the future to support additional kinds of parent+ resources.++ The API object must be valid in the cluster; the Group and Kind must+ be registered in the cluster for this reference to be valid.+ type: object+ required:+ - name+ properties:+ group:+ description: |-+ Group is the group of the referent.+ When unspecified, "gateway.networking.k8s.io" is inferred.+ To set the core API group (such as for a "Service" kind referent),+ Group must be explicitly set to "" (empty string).++ Support: Core+ type: string+ default: gateway.networking.k8s.io+ maxLength: 253+ pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ kind:+ description: |-+ Kind is kind of the referent.++ There are two kinds of parent resources with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ Support for other resources is Implementation-Specific.+ type: string+ default: Gateway+ maxLength: 63+ minLength: 1+ pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$+ name:+ description: |-+ Name is the name of the referent.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ namespace:+ description: |-+ Namespace is the namespace of the referent. When unspecified, this refers+ to the local namespace of the Route.++ Note that there are specific rules for ParentRefs which cross namespace+ boundaries. Cross-namespace references are only valid if they are explicitly+ allowed by something in the namespace they are referring to. For example:+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a+ generic way to enable any other kind of cross-namespace reference.++ <gateway:experimental:description>+ ParentRefs from a Route to a Service in the same namespace are "producer"+ routes, which apply default routing rules to inbound connections from+ any namespace to the Service.++ ParentRefs from a Route to a Service in a different namespace are+ "consumer" routes, and these routing rules are only applied to outbound+ connections originating from the same namespace as the Route, for which+ the intended destination of the connections are a Service targeted as a+ ParentRef of the Route.+ </gateway:experimental:description>++ Support: Core+ type: string+ maxLength: 63+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$+ port:+ description: |-+ Port is the network port this Route targets. It can be interpreted+ differently based on the type of parent resource.++ When the parent resource is a Gateway, this targets all listeners+ listening on the specified port that also support this kind of Route(and+ select this Route). It's not recommended to set `Port` unless the+ networking behaviors specified in a Route must apply to a specific port+ as opposed to a listener(s) whose port(s) may be changed. When both Port+ and SectionName are specified, the name and port of the selected listener+ must match both specified values.++ <gateway:experimental:description>+ When the parent resource is a Service, this targets a specific port in the+ Service spec. When both Port (experimental) and SectionName are specified,+ the name and port of the selected port must match both specified values.+ </gateway:experimental:description>++ Implementations MAY choose to support other parent resources.+ Implementations supporting other types of parent resources MUST clearly+ document how/if Port is interpreted.++ For the purpose of status, an attachment is considered successful as+ long as the parent resource accepts it partially. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment+ from the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route,+ the Route MUST be considered detached from the Gateway.++ Support: Extended+ type: integer+ format: int32+ maximum: 65535+ minimum: 1+ sectionName:+ description: |-+ SectionName is the name of a section within the target resource. In the+ following resources, SectionName is interpreted as the following:++ * Gateway: Listener name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.+ * Service: Port name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.++ Implementations MAY choose to support attaching Routes to other resources.+ If that is the case, they MUST clearly document how SectionName is+ interpreted.++ When unspecified (empty string), this will reference the entire resource.+ For the purpose of status, an attachment is considered successful if at+ least one section in the parent resource accepts it. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from+ the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route, the+ Route MUST be considered detached from the Gateway.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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: |-+ This field configures the annotation `kubernetes.io/ingress.class` when+ creating Ingress resources to solve ACME challenges that use this+ challenge solver. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ type: string+ ingressClassName:+ description: |-+ This field configures the field `ingressClassName` on the created Ingress+ resources used to solve ACME challenges that use this challenge solver.+ This is the recommended way of configuring the ingress class. Only one of+ `class`, `name` or `ingressClassName` 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. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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+ issuingCertificateURLs:+ description: |-+ IssuingCertificateURLs is a list of URLs which this issuer should embed into certificates+ it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1 for more details.+ As an example, such a URL might be "http://ca.domain.com/ca.crt".+ 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+ clientCertificate:+ description: |-+ ClientCertificate authenticates with Vault by presenting a client+ certificate during the request's TLS handshake.+ Works only when using HTTPS protocol.+ type: object+ 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/cert" will be used.+ type: string+ name:+ description: |-+ Name of the certificate role to authenticate against.+ If not set, matching any certificate role, if available.+ type: string+ secretName:+ description: |-+ Reference to Kubernetes Secret of type "kubernetes.io/tls" (hence containing+ tls.crt and tls.key) used to authenticate to Vault using TLS client+ authentication.+ 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+ 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+ serviceAccountRef:+ description: |-+ A reference to a service account that will be used to request a bound+ token (also known as "projected token"). Compared to using "secretRef",+ using this field means that you don't rely on statically bound tokens. To+ use this field, you must configure an RBAC rule to let cert-manager+ request a token.+ type: object+ required:+ - name+ properties:+ audiences:+ description: |-+ TokenAudiences is an optional list of extra audiences to include in the token passed to Vault. The default token+ consisting of the issuer's namespace and name is always included.+ type: array+ items:+ type: string+ name:+ description: Name of the ServiceAccount used to request a token.+ 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: |-+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate+ chain presented by Vault. Only used if using HTTPS to connect to Vault and+ ignored for HTTP connections.+ Mutually exclusive with CABundleSecretRef.+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ type: string+ format: byte+ caBundleSecretRef:+ description: |-+ Reference to a Secret containing a bundle of PEM-encoded CAs to use when+ verifying the certificate chain presented by Vault when using HTTPS.+ Mutually exclusive with CABundle.+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ If no key for the Secret is specified, cert-manager will default to 'ca.crt'.+ 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+ clientCertSecretRef:+ description: |-+ Reference to a Secret containing a PEM-encoded Client Certificate to use when the+ Vault server requires mTLS.+ 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+ clientKeySecretRef:+ description: |-+ Reference to a Secret containing a PEM-encoded Client Private Key to use when the+ Vault server requires mTLS.+ 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+ 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: |-+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate+ chain presented by the TPP server. Only used if using HTTPS; ignored for HTTP.+ If undefined, the certificate bundle in the cert-manager controller container+ is used to validate the chain.+ type: string+ format: byte+ caBundleSecretRef:+ description: |-+ Reference to a Secret containing a base64-encoded bundle of PEM CAs+ which will be used to validate the certificate chain presented by the TPP server.+ Only used if using HTTPS; ignored for HTTP. Mutually exclusive with CABundle.+ If neither CABundle nor CABundleSecretRef is defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ 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+ credentialsRef:+ description: |-+ CredentialsRef is a reference to a Secret containing the Venafi TPP API credentials.+ The secret must contain the key 'access-token' for the Access Token Authentication,+ or two keys, 'username' and 'password' for the API Keys Authentication.+ 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:+ lastPrivateKeyHash:+ description: |-+ LastPrivateKeyHash is a hash of the private key associated with the latest+ registered ACME account, in order to track changes made to registered account+ associated with the Issuer+ type: string+ 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+ x-kubernetes-list-map-keys:+ - type+ x-kubernetes-list-type: map+ served: true+ storage: true++# END crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: issuers.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ app.kubernetes.io/component: "crds"+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: cert-manager.io+ names:+ kind: Issuer+ listKind: IssuerList+ plural: issuers+ singular: issuer+ categories:+ - cert-manager+ scope: Namespaced+ versions:+ - 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:+ caBundle:+ description: |-+ Base64-encoded bundle of PEM CAs which can be used to validate the certificate+ chain presented by the ACME server.+ Mutually exclusive with SkipTLSVerify; prefer using CABundle to prevent various+ kinds of security vulnerabilities.+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside+ the container is used to validate the TLS connection.+ type: string+ format: byte+ 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 combined set of+ ACME default and alternative chains that has a root-most certificate with+ this value as its issuer's commonname.+ 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: |-+ INSECURE: Enables or disables validation of the ACME server TLS certificate.+ If true, requests to the ACME server will not have the TLS certificate chain+ validated.+ Mutually exclusive with CABundle; prefer using CABundle to prevent various+ kinds of security vulnerabilities.+ Only enable this option in development environments.+ If CABundle and SkipTLSVerify are unset, the system certificate bundle inside+ the container is used to validate the TLS connection.+ 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: |-+ Auth: Azure Service Principal:+ The ClientID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientSecret and TenantID must also be set.+ type: string+ clientSecretSecretRef:+ description: |-+ Auth: Azure Service Principal:+ A reference to a Secret containing the password associated with the Service Principal.+ If set, ClientID and TenantID must also be set.+ 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:+ description: name of the Azure environment (default AzurePublicCloud)+ type: string+ enum:+ - AzurePublicCloud+ - AzureChinaCloud+ - AzureGermanCloud+ - AzureUSGovernmentCloud+ hostedZoneName:+ description: name of the DNS zone that should be used+ type: string+ managedIdentity:+ description: |-+ Auth: Azure Workload Identity or Azure Managed Service Identity:+ Settings to enable Azure Workload Identity or Azure Managed Service Identity+ If set, ClientID, ClientSecret and TenantID must not be set.+ type: object+ properties:+ clientID:+ description: client ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceID:+ description: |-+ resource ID of the managed identity, can not be used at the same time as clientID+ Cannot be used for Azure Managed Service Identity+ type: string+ tenantID:+ description: tenant ID of the managed identity, can not be used at the same time as resourceID+ type: string+ resourceGroupName:+ description: resource group the DNS zone is located in+ type: string+ subscriptionID:+ description: ID of the Azure subscription+ type: string+ tenantID:+ description: |-+ Auth: Azure Service Principal:+ The TenantID of the Azure Service Principal used to authenticate with Azure DNS.+ If set, ClientID and ClientSecret must also be set.+ 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+ properties:+ accessKeyID:+ description: |-+ The AccessKeyID is used for authentication.+ Cannot be set when SecretAccessKeyID is set.+ If neither the Access Key nor Key ID are 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+ accessKeyIDSecretRef:+ description: |-+ The SecretAccessKey is used for authentication. If set, pull the AWS+ access key ID from a key within a Kubernetes Secret.+ Cannot be set when AccessKeyID is set.+ If neither the Access Key nor Key ID are 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: 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+ auth:+ description: Auth configures how cert-manager authenticates.+ type: object+ required:+ - kubernetes+ properties:+ kubernetes:+ description: |-+ Kubernetes authenticates with Route53 using AssumeRoleWithWebIdentity+ by passing a bound ServiceAccount token.+ type: object+ required:+ - serviceAccountRef+ properties:+ serviceAccountRef:+ description: |-+ A reference to a service account that will be used to request a bound+ token (also known as "projected token"). To use this field, you must+ configure an RBAC rule to let cert-manager request a token.+ type: object+ required:+ - name+ properties:+ audiences:+ description: |-+ TokenAudiences is an optional list of audiences to include in the+ token passed to AWS. The default token consisting of the issuer's namespace+ and name is always included.+ If unset the audience defaults to `sts.amazonaws.com`.+ type: array+ items:+ type: string+ name:+ description: Name of the ServiceAccount used to request a token.+ type: string+ hostedZoneID:+ description: If set, the provider will manage only this zone in Route53 and will not do a lookup using the route53:ListHostedZonesByName api call.+ type: string+ region:+ description: |-+ Override the AWS region.++ Route53 is a global service and does not have regional endpoints but the+ region specified here (or via environment variables) is used as a hint to+ help compute the correct AWS credential scope and partition when it+ connects to Route53. See:+ - [Amazon Route 53 endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/r53.html)+ - [Global services](https://docs.aws.amazon.com/whitepapers/latest/aws-fault-isolation-boundaries/global-services.html)++ If you omit this region field, cert-manager will use the region from+ AWS_REGION and AWS_DEFAULT_REGION environment variables, if they are set+ in the cert-manager controller Pod.++ The `region` field is not needed if you use [IAM Roles for Service Accounts (IRSA)](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Webhook](https://github.com/aws/amazon-eks-pod-identity-webhook).+ In this case this `region` field value is ignored.++ The `region` field is not needed if you use [EKS Pod Identities](https://docs.aws.amazon.com/eks/latest/userguide/pod-identities.html).+ Instead an AWS_REGION environment variable is added to the cert-manager controller Pod by:+ [Amazon EKS Pod Identity Agent](https://github.com/aws/eks-pod-identity-agent),+ In this case this `region` field value is ignored.+ 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 neither the Access Key nor Key ID are 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: 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: |-+ Custom labels that will be applied to HTTPRoutes created by cert-manager+ while solving HTTP-01 challenges.+ type: object+ additionalProperties:+ type: string+ parentRefs:+ description: |-+ When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute.+ cert-manager needs to know which parentRefs should be used when creating+ the HTTPRoute. Usually, the parentRef references a Gateway. See:+ https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways+ type: array+ items:+ description: |-+ ParentReference identifies an API object (usually a Gateway) that can be considered+ a parent of this resource (usually a route). There are two kinds of parent resources+ with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ This API may be extended in the future to support additional kinds of parent+ resources.++ The API object must be valid in the cluster; the Group and Kind must+ be registered in the cluster for this reference to be valid.+ type: object+ required:+ - name+ properties:+ group:+ description: |-+ Group is the group of the referent.+ When unspecified, "gateway.networking.k8s.io" is inferred.+ To set the core API group (such as for a "Service" kind referent),+ Group must be explicitly set to "" (empty string).++ Support: Core+ type: string+ default: gateway.networking.k8s.io+ maxLength: 253+ pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ kind:+ description: |-+ Kind is kind of the referent.++ There are two kinds of parent resources with "Core" support:++ * Gateway (Gateway conformance profile)+ * Service (Mesh conformance profile, ClusterIP Services only)++ Support for other resources is Implementation-Specific.+ type: string+ default: Gateway+ maxLength: 63+ minLength: 1+ pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$+ name:+ description: |-+ Name is the name of the referent.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ namespace:+ description: |-+ Namespace is the namespace of the referent. When unspecified, this refers+ to the local namespace of the Route.++ Note that there are specific rules for ParentRefs which cross namespace+ boundaries. Cross-namespace references are only valid if they are explicitly+ allowed by something in the namespace they are referring to. For example:+ Gateway has the AllowedRoutes field, and ReferenceGrant provides a+ generic way to enable any other kind of cross-namespace reference.++ <gateway:experimental:description>+ ParentRefs from a Route to a Service in the same namespace are "producer"+ routes, which apply default routing rules to inbound connections from+ any namespace to the Service.++ ParentRefs from a Route to a Service in a different namespace are+ "consumer" routes, and these routing rules are only applied to outbound+ connections originating from the same namespace as the Route, for which+ the intended destination of the connections are a Service targeted as a+ ParentRef of the Route.+ </gateway:experimental:description>++ Support: Core+ type: string+ maxLength: 63+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$+ port:+ description: |-+ Port is the network port this Route targets. It can be interpreted+ differently based on the type of parent resource.++ When the parent resource is a Gateway, this targets all listeners+ listening on the specified port that also support this kind of Route(and+ select this Route). It's not recommended to set `Port` unless the+ networking behaviors specified in a Route must apply to a specific port+ as opposed to a listener(s) whose port(s) may be changed. When both Port+ and SectionName are specified, the name and port of the selected listener+ must match both specified values.++ <gateway:experimental:description>+ When the parent resource is a Service, this targets a specific port in the+ Service spec. When both Port (experimental) and SectionName are specified,+ the name and port of the selected port must match both specified values.+ </gateway:experimental:description>++ Implementations MAY choose to support other parent resources.+ Implementations supporting other types of parent resources MUST clearly+ document how/if Port is interpreted.++ For the purpose of status, an attachment is considered successful as+ long as the parent resource accepts it partially. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment+ from the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route,+ the Route MUST be considered detached from the Gateway.++ Support: Extended+ type: integer+ format: int32+ maximum: 65535+ minimum: 1+ sectionName:+ description: |-+ SectionName is the name of a section within the target resource. In the+ following resources, SectionName is interpreted as the following:++ * Gateway: Listener name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.+ * Service: Port name. When both Port (experimental) and SectionName+ are specified, the name and port of the selected listener must match+ both specified values.++ Implementations MAY choose to support attaching Routes to other resources.+ If that is the case, they MUST clearly document how SectionName is+ interpreted.++ When unspecified (empty string), this will reference the entire resource.+ For the purpose of status, an attachment is considered successful if at+ least one section in the parent resource accepts it. For example, Gateway+ listeners can restrict which Routes can attach to them by Route kind,+ namespace, or hostname. If 1 of 2 Gateway listeners accept attachment from+ the referencing Route, the Route MUST be considered successfully+ attached. If no Gateway listeners accept attachment from this Route, the+ Route MUST be considered detached from the Gateway.++ Support: Core+ type: string+ maxLength: 253+ minLength: 1+ pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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: |-+ This field configures the annotation `kubernetes.io/ingress.class` when+ creating Ingress resources to solve ACME challenges that use this+ challenge solver. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ type: string+ ingressClassName:+ description: |-+ This field configures the field `ingressClassName` on the created Ingress+ resources used to solve ACME challenges that use this challenge solver.+ This is the recommended way of configuring the ingress class. Only one of+ `class`, `name` or `ingressClassName` 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. Only one of `class`, `name` or `ingressClassName` may+ be specified.+ 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 created 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.+ Check ACMEChallengeSolverHTTP01IngressPodSpec to find out currently supported fields.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.+ type: integer+ format: int32+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ x-kubernetes-list-type: atomic+ x-kubernetes-map-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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 <topologyKey> 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.+ If it's null, this PodAffinityTerm matches with no 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ matchLabelKeys:+ description: |-+ MatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both matchLabelKeys and labelSelector.+ Also, matchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ mismatchLabelKeys:+ description: |-+ MismatchLabelKeys is a set of pod label keys to select which pods will+ be taken into consideration. The keys are used to lookup values from the+ incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`+ to select the group of existing pods which pods will be taken into consideration+ for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming+ pod labels will be ignored. The default value is empty.+ The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.+ Also, mismatchLabelKeys cannot be set when labelSelector isn't set.+ This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).+ type: array+ items:+ type: string+ x-kubernetes-list-type: atomic+ 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.+ 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+ x-kubernetes-list-type: atomic+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-map-type: atomic+ 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+ x-kubernetes-list-type: atomic+ 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+ x-kubernetes-list-type: atomic+ imagePullSecrets:+ description: If specified, the pod's imagePullSecrets+ type: array+ items:+ description: |-+ LocalObjectReference contains enough information to let you locate the+ referenced object inside the same namespace.+ type: object+ properties:+ name:+ description: |-+ Name of the referent.+ This field is effectively required, but due to backwards compatibility is+ allowed to be empty. Instances of this type with an empty value here are+ almost certainly wrong.+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names+ type: string+ default: ""+ x-kubernetes-map-type: atomic+ 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+ securityContext:+ description: If specified, the pod's security context+ type: object+ 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:++ 1. The owning GID will be the FSGroup+ 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)+ 3. The permission bits are OR'd with rw-rw----++ If unset, the Kubelet will not modify the ownership and permissions of any volume.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ 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+ seccompProfile:+ description: |-+ The seccomp options to use by the containers in this pod.+ Note that this field cannot be set when spec.os.name is windows.+ type: object+ required:+ - type+ 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 be set if type is "Localhost". Must NOT be set for any other type.+ type: string+ type:+ description: |-+ type indicates which kind of seccomp profile will be applied.+ Valid options are:++ 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+ supplementalGroups:+ description: |-+ A list of groups applied to the first process run in each container, in addition+ to the container's primary GID, the fsGroup (if specified), and group memberships+ defined in the container image for the uid of the container process. If unspecified,+ no additional groups are added to any container. Note that group memberships+ defined in the container image for the uid of the container process are still effective,+ even if they are not included in this list.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ type: integer+ format: int64+ 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.+ Note that this field cannot be set when spec.os.name is windows.+ type: array+ items:+ description: Sysctl defines a kernel parameter to be set+ type: object+ required:+ - name+ - value+ properties:+ name:+ description: Name of a property to set+ type: string+ value:+ description: Value of a property to set+ 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 <key,value,effect> using the matching operator <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. If unset, defaults to NodePort.+ 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+ issuingCertificateURLs:+ description: |-+ IssuingCertificateURLs is a list of URLs which this issuer should embed into certificates+ it creates. See https://www.rfc-editor.org/rfc/rfc5280#section-4.2.2.1 for more details.+ As an example, such a URL might be "http://ca.domain.com/ca.crt".+ 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+ clientCertificate:+ description: |-+ ClientCertificate authenticates with Vault by presenting a client+ certificate during the request's TLS handshake.+ Works only when using HTTPS protocol.+ type: object+ 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/cert" will be used.+ type: string+ name:+ description: |-+ Name of the certificate role to authenticate against.+ If not set, matching any certificate role, if available.+ type: string+ secretName:+ description: |-+ Reference to Kubernetes Secret of type "kubernetes.io/tls" (hence containing+ tls.crt and tls.key) used to authenticate to Vault using TLS client+ authentication.+ 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+ 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+ serviceAccountRef:+ description: |-+ A reference to a service account that will be used to request a bound+ token (also known as "projected token"). Compared to using "secretRef",+ using this field means that you don't rely on statically bound tokens. To+ use this field, you must configure an RBAC rule to let cert-manager+ request a token.+ type: object+ required:+ - name+ properties:+ audiences:+ description: |-+ TokenAudiences is an optional list of extra audiences to include in the token passed to Vault. The default token+ consisting of the issuer's namespace and name is always included.+ type: array+ items:+ type: string+ name:+ description: Name of the ServiceAccount used to request a token.+ 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: |-+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate+ chain presented by Vault. Only used if using HTTPS to connect to Vault and+ ignored for HTTP connections.+ Mutually exclusive with CABundleSecretRef.+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ type: string+ format: byte+ caBundleSecretRef:+ description: |-+ Reference to a Secret containing a bundle of PEM-encoded CAs to use when+ verifying the certificate chain presented by Vault when using HTTPS.+ Mutually exclusive with CABundle.+ If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ If no key for the Secret is specified, cert-manager will default to 'ca.crt'.+ 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+ clientCertSecretRef:+ description: |-+ Reference to a Secret containing a PEM-encoded Client Certificate to use when the+ Vault server requires mTLS.+ 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+ clientKeySecretRef:+ description: |-+ Reference to a Secret containing a PEM-encoded Client Private Key to use when the+ Vault server requires mTLS.+ 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+ 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: |-+ Base64-encoded bundle of PEM CAs which will be used to validate the certificate+ chain presented by the TPP server. Only used if using HTTPS; ignored for HTTP.+ If undefined, the certificate bundle in the cert-manager controller container+ is used to validate the chain.+ type: string+ format: byte+ caBundleSecretRef:+ description: |-+ Reference to a Secret containing a base64-encoded bundle of PEM CAs+ which will be used to validate the certificate chain presented by the TPP server.+ Only used if using HTTPS; ignored for HTTP. Mutually exclusive with CABundle.+ If neither CABundle nor CABundleSecretRef is defined, the certificate bundle in+ the cert-manager controller container is used to validate the TLS connection.+ 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+ credentialsRef:+ description: |-+ CredentialsRef is a reference to a Secret containing the Venafi TPP API credentials.+ The secret must contain the key 'access-token' for the Access Token Authentication,+ or two keys, 'username' and 'password' for the API Keys Authentication.+ 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:+ lastPrivateKeyHash:+ description: |-+ LastPrivateKeyHash is a hash of the private key associated with the latest+ registered ACME account, in order to track changes made to registered account+ associated with the Issuer+ type: string+ 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+ x-kubernetes-list-map-keys:+ - type+ x-kubernetes-list-type: map+ served: true+ storage: true++# END crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: orders.acme.cert-manager.io+ # START annotations+ annotations:+ helm.sh/resource-policy: keep+ # END annotations+ labels:+ app: 'cert-manager'+ app.kubernetes.io/name: 'cert-manager'+ app.kubernetes.io/instance: 'cert-manager'+ app.kubernetes.io/component: "crds"+ # Generated labels+ app.kubernetes.io/version: "v1.17.0"+spec:+ group: acme.cert-manager.io+ names:+ kind: Order+ listKind: OrderList+ plural: orders+ singular: order+ categories:+ - cert-manager+ - cert-manager-acme+ scope: Namespaced+ versions:+ - 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++# END crd++---+# Source: cert-manager/templates/cainjector-serviceaccount.yaml+apiVersion: v1+kind: ServiceAccount+automountServiceAccountToken: true+metadata:+ name: cert-manager-cainjector+ namespace: cert-manager+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+---+# Source: cert-manager/templates/serviceaccount.yaml+apiVersion: v1+kind: ServiceAccount+automountServiceAccountToken: true+metadata:+ name: cert-manager+ namespace: cert-manager+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+---+# Source: cert-manager/templates/webhook-serviceaccount.yaml+apiVersion: v1+kind: ServiceAccount+automountServiceAccountToken: true+metadata:+ name: cert-manager-webhook+ namespace: cert-manager+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+---+# Source: cert-manager/templates/cainjector-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-cainjector+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates"]+ verbs: ["get", "list", "watch"]+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["get", "create", "update", "patch"]+ - apiGroups: ["admissionregistration.k8s.io"]+ resources: ["validatingwebhookconfigurations", "mutatingwebhookconfigurations"]+ verbs: ["get", "list", "watch", "update", "patch"]+ - apiGroups: ["apiregistration.k8s.io"]+ resources: ["apiservices"]+ verbs: ["get", "list", "watch", "update", "patch"]+ - apiGroups: ["apiextensions.k8s.io"]+ resources: ["customresourcedefinitions"]+ verbs: ["get", "list", "watch", "update", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+# Issuer controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-issuers+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["issuers", "issuers/status"]+ verbs: ["update", "patch"]+ - apiGroups: ["cert-manager.io"]+ resources: ["issuers"]+ verbs: ["get", "list", "watch"]+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch", "create", "update", "delete"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+# ClusterIssuer controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-clusterissuers+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["clusterissuers", "clusterissuers/status"]+ verbs: ["update", "patch"]+ - apiGroups: ["cert-manager.io"]+ resources: ["clusterissuers"]+ verbs: ["get", "list", "watch"]+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch", "create", "update", "delete"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+# Certificates controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-certificates+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificates/status", "certificaterequests", "certificaterequests/status"]+ verbs: ["update", "patch"]+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificaterequests", "clusterissuers", "issuers"]+ verbs: ["get", "list", "watch"]+ # We require these rules to support users with the OwnerReferencesPermissionEnforcement+ # admission controller enabled:+ # https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#ownerreferencespermissionenforcement+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates/finalizers", "certificaterequests/finalizers"]+ verbs: ["update"]+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["orders"]+ verbs: ["create", "delete", "get", "list", "watch"]+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch", "create", "update", "delete", "patch"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+# Orders controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-orders+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["orders", "orders/status"]+ verbs: ["update", "patch"]+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["orders", "challenges"]+ verbs: ["get", "list", "watch"]+ - apiGroups: ["cert-manager.io"]+ resources: ["clusterissuers", "issuers"]+ verbs: ["get", "list", "watch"]+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges"]+ verbs: ["create", "delete"]+ # We require these rules to support users with the OwnerReferencesPermissionEnforcement+ # admission controller enabled:+ # https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#ownerreferencespermissionenforcement+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["orders/finalizers"]+ verbs: ["update"]+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+# Challenges controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-challenges+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ # Use to update challenge resource status+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges", "challenges/status"]+ verbs: ["update", "patch"]+ # Used to watch challenge resources+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges"]+ verbs: ["get", "list", "watch"]+ # Used to watch challenges, issuer and clusterissuer resources+ - apiGroups: ["cert-manager.io"]+ resources: ["issuers", "clusterissuers"]+ verbs: ["get", "list", "watch"]+ # Need to be able to retrieve ACME account private key to complete challenges+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch"]+ # Used to create events+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+ # HTTP01 rules+ - apiGroups: [""]+ resources: ["pods", "services"]+ verbs: ["get", "list", "watch", "create", "delete"]+ - apiGroups: ["networking.k8s.io"]+ resources: ["ingresses"]+ verbs: ["get", "list", "watch", "create", "delete", "update"]+ - apiGroups: [ "gateway.networking.k8s.io" ]+ resources: [ "httproutes" ]+ verbs: ["get", "list", "watch", "create", "delete", "update"]+ # We require the ability to specify a custom hostname when we are creating+ # new ingress resources.+ # See: https://github.com/openshift/origin/blob/21f191775636f9acadb44fa42beeb4f75b255532/pkg/route/apiserver/admission/ingress_admission.go#L84-L148+ - apiGroups: ["route.openshift.io"]+ resources: ["routes/custom-host"]+ verbs: ["create"]+ # We require these rules to support users with the OwnerReferencesPermissionEnforcement+ # admission controller enabled:+ # https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#ownerreferencespermissionenforcement+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges/finalizers"]+ verbs: ["update"]+ # DNS01 rules (duplicated above)+ - apiGroups: [""]+ resources: ["secrets"]+ verbs: ["get", "list", "watch"]+---+# Source: cert-manager/templates/rbac.yaml+# ingress-shim controller role+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-ingress-shim+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificaterequests"]+ verbs: ["create", "update", "delete"]+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificaterequests", "issuers", "clusterissuers"]+ verbs: ["get", "list", "watch"]+ - apiGroups: ["networking.k8s.io"]+ resources: ["ingresses"]+ verbs: ["get", "list", "watch"]+ # We require these rules to support users with the OwnerReferencesPermissionEnforcement+ # admission controller enabled:+ # https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#ownerreferencespermissionenforcement+ - apiGroups: ["networking.k8s.io"]+ resources: ["ingresses/finalizers"]+ verbs: ["update"]+ - apiGroups: ["gateway.networking.k8s.io"]+ resources: ["gateways", "httproutes"]+ verbs: ["get", "list", "watch"]+ - apiGroups: ["gateway.networking.k8s.io"]+ resources: ["gateways/finalizers", "httproutes/finalizers"]+ verbs: ["update"]+ - apiGroups: [""]+ resources: ["events"]+ verbs: ["create", "patch"]+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-cluster-view+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+ rbac.authorization.k8s.io/aggregate-to-cluster-reader: "true"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["clusterissuers"]+ verbs: ["get", "list", "watch"]+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-view+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+ rbac.authorization.k8s.io/aggregate-to-view: "true"+ rbac.authorization.k8s.io/aggregate-to-edit: "true"+ rbac.authorization.k8s.io/aggregate-to-admin: "true"+ rbac.authorization.k8s.io/aggregate-to-cluster-reader: "true"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificaterequests", "issuers"]+ verbs: ["get", "list", "watch"]+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges", "orders"]+ verbs: ["get", "list", "watch"]+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-edit+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+ rbac.authorization.k8s.io/aggregate-to-edit: "true"+ rbac.authorization.k8s.io/aggregate-to-admin: "true"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates", "certificaterequests", "issuers"]+ verbs: ["create", "delete", "deletecollection", "patch", "update"]+ - apiGroups: ["cert-manager.io"]+ resources: ["certificates/status"]+ verbs: ["update"]+ - apiGroups: ["acme.cert-manager.io"]+ resources: ["challenges", "orders"]+ verbs: ["create", "delete", "deletecollection", "patch", "update"]+---+# Source: cert-manager/templates/rbac.yaml+# Permission to approve CertificateRequests referencing cert-manager.io Issuers and ClusterIssuers+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-approve:cert-manager-io+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cert-manager"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["cert-manager.io"]+ resources: ["signers"]+ verbs: ["approve"]+ resourceNames:+ - "issuers.cert-manager.io/*"+ - "clusterissuers.cert-manager.io/*"+---+# Source: cert-manager/templates/rbac.yaml+# Permission to:+# - Update and sign CertificateSigningRequests referencing cert-manager.io Issuers and ClusterIssuers+# - Perform SubjectAccessReviews to test whether users are able to reference Namespaced Issuers+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-controller-certificatesigningrequests+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cert-manager"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["certificates.k8s.io"]+ resources: ["certificatesigningrequests"]+ verbs: ["get", "list", "watch", "update"]+ - apiGroups: ["certificates.k8s.io"]+ resources: ["certificatesigningrequests/status"]+ verbs: ["update", "patch"]+ - apiGroups: ["certificates.k8s.io"]+ resources: ["signers"]+ resourceNames: ["issuers.cert-manager.io/*", "clusterissuers.cert-manager.io/*"]+ verbs: ["sign"]+ - apiGroups: ["authorization.k8s.io"]+ resources: ["subjectaccessreviews"]+ verbs: ["create"]+---+# Source: cert-manager/templates/webhook-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: cert-manager-webhook:subjectaccessreviews+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+rules:+- apiGroups: ["authorization.k8s.io"]+ resources: ["subjectaccessreviews"]+ verbs: ["create"]+---+# Source: cert-manager/templates/cainjector-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-cainjector+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-cainjector+subjects:+ - name: cert-manager-cainjector+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-issuers+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-issuers+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-clusterissuers+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-clusterissuers+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-certificates+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-certificates+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-orders+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-orders+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-challenges+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-challenges+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-ingress-shim+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-ingress-shim+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-approve:cert-manager-io+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cert-manager"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-approve:cert-manager-io+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-controller-certificatesigningrequests+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cert-manager"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-controller-certificatesigningrequests+subjects:+ - name: cert-manager+ namespace: cert-manager+ kind: ServiceAccount+---+# Source: cert-manager/templates/webhook-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: cert-manager-webhook:subjectaccessreviews+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: cert-manager-webhook:subjectaccessreviews+subjects:+- kind: ServiceAccount+ name: cert-manager-webhook+ namespace: cert-manager+---+# Source: cert-manager/templates/cainjector-rbac.yaml+# leader election rules+apiVersion: rbac.authorization.k8s.io/v1+kind: Role+metadata:+ name: cert-manager-cainjector:leaderelection+ namespace: kube-system+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+rules:+ # Used for leader election by the controller+ # cert-manager-cainjector-leader-election is used by the CertificateBased injector controller+ # see cmd/cainjector/start.go#L113+ # cert-manager-cainjector-leader-election-core is used by the SecretBased injector controller+ # see cmd/cainjector/start.go#L137+ - apiGroups: ["coordination.k8s.io"]+ resources: ["leases"]+ resourceNames: ["cert-manager-cainjector-leader-election", "cert-manager-cainjector-leader-election-core"]+ verbs: ["get", "update", "patch"]+ - apiGroups: ["coordination.k8s.io"]+ resources: ["leases"]+ verbs: ["create"]+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: Role+metadata:+ name: cert-manager:leaderelection+ namespace: kube-system+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: ["coordination.k8s.io"]+ resources: ["leases"]+ resourceNames: ["cert-manager-controller"]+ verbs: ["get", "update", "patch"]+ - apiGroups: ["coordination.k8s.io"]+ resources: ["leases"]+ verbs: ["create"]+---+# Source: cert-manager/templates/rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: Role+metadata:+ name: cert-manager-tokenrequest+ namespace: cert-manager+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+rules:+ - apiGroups: [""]+ resources: ["serviceaccounts/token"]+ resourceNames: ["cert-manager"]+ verbs: ["create"]+---+# Source: cert-manager/templates/webhook-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: Role+metadata:+ name: cert-manager-webhook:dynamic-serving+ namespace: cert-manager+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+rules:+- apiGroups: [""]+ resources: ["secrets"]+ resourceNames:+ - 'cert-manager-webhook-ca'+ verbs: ["get", "list", "watch", "update"]+# It's not possible to grant CREATE permission on a single resourceName.+- apiGroups: [""]+ resources: ["secrets"]+ verbs: ["create"]+---+# Source: cert-manager/templates/cainjector-rbac.yaml+# grant cert-manager permission to manage the leaderelection configmap in the+# leader election namespace+apiVersion: rbac.authorization.k8s.io/v1+kind: RoleBinding+metadata:+ name: cert-manager-cainjector:leaderelection+ namespace: kube-system+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: Role+ name: cert-manager-cainjector:leaderelection+subjects:+ - kind: ServiceAccount+ name: cert-manager-cainjector+ namespace: cert-manager+---+# Source: cert-manager/templates/rbac.yaml+# grant cert-manager permission to manage the leaderelection configmap in the+# leader election namespace+apiVersion: rbac.authorization.k8s.io/v1+kind: RoleBinding+metadata:+ name: cert-manager:leaderelection+ namespace: kube-system+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: Role+ name: cert-manager:leaderelection+subjects:+ - kind: ServiceAccount+ name: cert-manager+ namespace: cert-manager+---+# Source: cert-manager/templates/rbac.yaml+# grant cert-manager permission to create tokens for the serviceaccount+apiVersion: rbac.authorization.k8s.io/v1+kind: RoleBinding+metadata:+ name: cert-manager-cert-manager-tokenrequest+ namespace: cert-manager+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: Role+ name: cert-manager-tokenrequest+subjects:+ - kind: ServiceAccount+ name: cert-manager+ namespace: cert-manager+---+# Source: cert-manager/templates/webhook-rbac.yaml+apiVersion: rbac.authorization.k8s.io/v1+kind: RoleBinding+metadata:+ name: cert-manager-webhook:dynamic-serving+ namespace: cert-manager+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: Role+ name: cert-manager-webhook:dynamic-serving+subjects:+- kind: ServiceAccount+ name: cert-manager-webhook+ namespace: cert-manager+---+# Source: cert-manager/templates/cainjector-service.yaml+apiVersion: v1+kind: Service+metadata:+ name: cert-manager-cainjector+ namespace: cert-manager+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+spec:+ type: ClusterIP+ ports:+ - protocol: TCP+ port: 9402+ name: http-metrics+ selector:+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+---+# Source: cert-manager/templates/service.yaml+apiVersion: v1+kind: Service+metadata:+ name: cert-manager+ namespace: cert-manager+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+spec:+ type: ClusterIP+ ports:+ - protocol: TCP+ port: 9402+ name: tcp-prometheus-servicemonitor+ targetPort: 9402+ selector:+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+---+# Source: cert-manager/templates/webhook-service.yaml+apiVersion: v1+kind: Service+metadata:+ name: cert-manager-webhook+ namespace: cert-manager+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+spec:+ type: ClusterIP+ ports:+ - name: https+ port: 443+ protocol: TCP+ targetPort: "https"+ - name: metrics+ port: 9402+ protocol: TCP+ targetPort: "http-metrics"+ selector:+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+---+# Source: cert-manager/templates/cainjector-deployment.yaml+apiVersion: apps/v1+kind: Deployment+metadata:+ name: cert-manager-cainjector+ namespace: cert-manager+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+spec:+ replicas: 1+ selector:+ matchLabels:+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ template:+ metadata:+ labels:+ app: cainjector+ app.kubernetes.io/name: cainjector+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "cainjector"+ app.kubernetes.io/version: "v1.17.0"+ annotations:+ prometheus.io/path: "/metrics"+ prometheus.io/scrape: 'true'+ prometheus.io/port: '9402'+ spec:+ serviceAccountName: cert-manager-cainjector+ enableServiceLinks: false+ securityContext:+ runAsNonRoot: true+ seccompProfile:+ type: RuntimeDefault+ containers:+ - name: cert-manager-cainjector+ image: "quay.io/jetstack/cert-manager-cainjector:v1.17.0"+ imagePullPolicy: IfNotPresent+ args:+ - --v=2+ - --leader-election-namespace=kube-system+ ports:+ - containerPort: 9402+ name: http-metrics+ protocol: TCP+ env:+ - name: POD_NAMESPACE+ valueFrom:+ fieldRef:+ fieldPath: metadata.namespace+ securityContext:+ allowPrivilegeEscalation: false+ capabilities:+ drop:+ - ALL+ readOnlyRootFilesystem: true+ nodeSelector:+ kubernetes.io/os: linux+---+# Source: cert-manager/templates/deployment.yaml+apiVersion: apps/v1+kind: Deployment+metadata:+ name: cert-manager+ namespace: cert-manager+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+spec:+ replicas: 1+ selector:+ matchLabels:+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ template:+ metadata:+ labels:+ app: cert-manager+ app.kubernetes.io/name: cert-manager+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "controller"+ app.kubernetes.io/version: "v1.17.0"+ annotations:+ prometheus.io/path: "/metrics"+ prometheus.io/scrape: 'true'+ prometheus.io/port: '9402'+ spec:+ serviceAccountName: cert-manager+ enableServiceLinks: false+ securityContext:+ runAsNonRoot: true+ seccompProfile:+ type: RuntimeDefault+ containers:+ - name: cert-manager-controller+ image: "quay.io/jetstack/cert-manager-controller:v1.17.0"+ imagePullPolicy: IfNotPresent+ args:+ - --v=2+ - --cluster-resource-namespace=$(POD_NAMESPACE)+ - --leader-election-namespace=kube-system+ - --acme-http01-solver-image=quay.io/jetstack/cert-manager-acmesolver:v1.17.0+ - --max-concurrent-challenges=60+ ports:+ - containerPort: 9402+ name: http-metrics+ protocol: TCP+ - containerPort: 9403+ name: http-healthz+ protocol: TCP+ securityContext:+ allowPrivilegeEscalation: false+ capabilities:+ drop:+ - ALL+ readOnlyRootFilesystem: true+ env:+ - name: POD_NAMESPACE+ valueFrom:+ fieldRef:+ fieldPath: metadata.namespace+ # LivenessProbe settings are based on those used for the Kubernetes+ # controller-manager. See:+ # https://github.com/kubernetes/kubernetes/blob/806b30170c61a38fedd54cc9ede4cd6275a1ad3b/cmd/kubeadm/app/util/staticpod/utils.go#L241-L245+ livenessProbe:+ httpGet:+ port: http-healthz+ path: /livez+ scheme: HTTP+ initialDelaySeconds: 10+ periodSeconds: 10+ timeoutSeconds: 15+ successThreshold: 1+ failureThreshold: 8+ nodeSelector:+ kubernetes.io/os: linux+---+# Source: cert-manager/templates/webhook-deployment.yaml+apiVersion: apps/v1+kind: Deployment+metadata:+ name: cert-manager-webhook+ namespace: cert-manager+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+spec:+ replicas: 1+ selector:+ matchLabels:+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ template:+ metadata:+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+ annotations:+ prometheus.io/path: "/metrics"+ prometheus.io/scrape: 'true'+ prometheus.io/port: '9402'+ spec:+ serviceAccountName: cert-manager-webhook+ enableServiceLinks: false+ securityContext:+ runAsNonRoot: true+ seccompProfile:+ type: RuntimeDefault+ containers:+ - name: cert-manager-webhook+ image: "quay.io/jetstack/cert-manager-webhook:v1.17.0"+ imagePullPolicy: IfNotPresent+ args:+ - --v=2+ - --secure-port=10250+ - --dynamic-serving-ca-secret-namespace=$(POD_NAMESPACE)+ - --dynamic-serving-ca-secret-name=cert-manager-webhook-ca+ - --dynamic-serving-dns-names=cert-manager-webhook+ - --dynamic-serving-dns-names=cert-manager-webhook.$(POD_NAMESPACE)+ - --dynamic-serving-dns-names=cert-manager-webhook.$(POD_NAMESPACE).svc++ ports:+ - name: https+ protocol: TCP+ containerPort: 10250+ - name: healthcheck+ protocol: TCP+ containerPort: 6080+ - containerPort: 9402+ name: http-metrics+ protocol: TCP+ livenessProbe:+ httpGet:+ path: /livez+ port: 6080+ scheme: HTTP+ initialDelaySeconds: 60+ periodSeconds: 10+ timeoutSeconds: 1+ successThreshold: 1+ failureThreshold: 3+ readinessProbe:+ httpGet:+ path: /healthz+ port: 6080+ scheme: HTTP+ initialDelaySeconds: 5+ periodSeconds: 5+ timeoutSeconds: 1+ successThreshold: 1+ failureThreshold: 3+ securityContext:+ allowPrivilegeEscalation: false+ capabilities:+ drop:+ - ALL+ readOnlyRootFilesystem: true+ env:+ - name: POD_NAMESPACE+ valueFrom:+ fieldRef:+ fieldPath: metadata.namespace+ nodeSelector:+ kubernetes.io/os: linux+---+# Source: cert-manager/templates/crds.yaml+#+# START crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+---+# Source: cert-manager/templates/crds.yaml+# START crd+---+# Source: cert-manager/templates/webhook-mutating-webhook.yaml+apiVersion: admissionregistration.k8s.io/v1+kind: MutatingWebhookConfiguration+metadata:+ name: cert-manager-webhook+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+ annotations:+ cert-manager.io/inject-ca-from-secret: "cert-manager/cert-manager-webhook-ca"+webhooks:+ - name: webhook.cert-manager.io+ rules:+ - apiGroups:+ - "cert-manager.io"+ apiVersions:+ - "v1"+ operations:+ - CREATE+ resources:+ - "certificaterequests"+ admissionReviewVersions: ["v1"]+ # This webhook only accepts v1 cert-manager resources.+ # Equivalent matchPolicy ensures that non-v1 resource requests are sent to+ # this webhook (after the resources have been converted to v1).+ matchPolicy: Equivalent+ timeoutSeconds: 30+ failurePolicy: Fail+ # Only include 'sideEffects' field in Kubernetes 1.12++ sideEffects: None+ clientConfig:+ service:+ name: cert-manager-webhook+ namespace: cert-manager+ path: /mutate+---+# Source: cert-manager/templates/webhook-validating-webhook.yaml+apiVersion: admissionregistration.k8s.io/v1+kind: ValidatingWebhookConfiguration+metadata:+ name: cert-manager-webhook+ labels:+ app: webhook+ app.kubernetes.io/name: webhook+ app.kubernetes.io/instance: cert-manager+ app.kubernetes.io/component: "webhook"+ app.kubernetes.io/version: "v1.17.0"+ annotations:+ cert-manager.io/inject-ca-from-secret: "cert-manager/cert-manager-webhook-ca"+webhooks:+ - name: webhook.cert-manager.io+ namespaceSelector:+ matchExpressions:+ - key: cert-manager.io/disable-validation+ operator: NotIn+ values:+ - "true"+ rules:+ - apiGroups:+ - "cert-manager.io"+ - "acme.cert-manager.io"+ apiVersions:+ - "v1"+ operations:+ - CREATE+ - UPDATE+ resources:+ - "*/*"+ admissionReviewVersions: ["v1"]+ # This webhook only accepts v1 cert-manager resources.+ # Equivalent matchPolicy ensures that non-v1 resource requests are sent to+ # this webhook (after the resources have been converted to v1).+ matchPolicy: Equivalent+ timeoutSeconds: 30+ failurePolicy: Fail+ sideEffects: None+ clientConfig:+ service:+ name: cert-manager-webhook+ namespace: cert-manager+ path: /validate
@@ -0,0 +1,18 @@+acme:+ directories:+ - name: "letsencrypt-prod"+ url: "https://acme-v02.api.letsencrypt.org/directory"+ - name: "letsencrypt-staging"+ url: "https://acme-staging-v02.api.letsencrypt.org/directory"+ solvers:+ - http01:+ ingress:+ ingressClassName: traefik++externalDNS:+ crd:+ create: true+ sources:+ - crd+ - ingress+ extraArgs: []
@@ -0,0 +1,102 @@+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ name: dnsendpoints.externaldns.k8s.io+ annotations:+ api-approved.kubernetes.io: https://github.com/kubernetes-sigs/external-dns/pull/2007+spec:+ group: externaldns.k8s.io+ names:+ kind: DNSEndpoint+ listKind: DNSEndpointList+ plural: dnsendpoints+ singular: dnsendpoint+ scope: Namespaced+ versions:+ - name: v1alpha1+ schema:+ openAPIV3Schema:+ 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: DNSEndpointSpec defines the desired state of DNSEndpoint+ properties:+ endpoints:+ items:+ description:+ Endpoint is a high-level way of a connection between+ a service and an IP+ properties:+ dnsName:+ description: The hostname of the DNS record+ type: string+ labels:+ additionalProperties:+ type: string+ description: Labels stores labels defined for the Endpoint+ type: object+ providerSpecific:+ description: ProviderSpecific stores provider specific config+ items:+ description:+ ProviderSpecificProperty holds the name and value+ of a configuration which is specific to individual DNS providers+ properties:+ name:+ type: string+ value:+ type: string+ type: object+ type: array+ recordTTL:+ description: TTL for the record+ format: int64+ type: integer+ recordType:+ description:+ RecordType type of record, e.g. CNAME, A, AAAA,+ SRV, TXT etc+ type: string+ setIdentifier:+ description:+ Identifier to distinguish multiple records with+ the same name and type (e.g. Route53 records with routing+ policies other than 'simple')+ type: string+ targets:+ description: The targets the DNS record points to+ items:+ type: string+ type: array+ type: object+ type: array+ type: object+ status:+ description: DNSEndpointStatus defines the observed state of DNSEndpoint+ properties:+ observedGeneration:+ description: The generation observed by the external-dns controller.+ format: int64+ type: integer+ type: object+ type: object+ served: true+ storage: true+ subresources:+ status: {}
@@ -0,0 +1,5 @@+package data++//go:generate wget -O cert-manager.yaml https://github.com/cert-manager/cert-manager/releases/download/v1.17.0/cert-manager.yaml+//go:generate wget -O tor-controller.yaml https://raw.githubusercontent.com/bugfest/tor-controller/master/hack/install.yaml+//go:generate wget -O external-dns-crd.yaml https://raw.githubusercontent.com/kubernetes-sigs/external-dns/refs/heads/master/charts/external-dns/crds/dnsendpoint.yaml
@@ -0,0 +1,17858 @@+apiVersion: v1+kind: Namespace+metadata:+ labels:+ control-plane: controller-manager+ name: tor-controller-system+---+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ annotations:+ controller-gen.kubebuilder.io/version: v0.11.1+ creationTimestamp: null+ name: onionbalancedservices.tor.k8s.torproject.org+spec:+ group: tor.k8s.torproject.org+ names:+ kind: OnionBalancedService+ listKind: OnionBalancedServiceList+ plural: onionbalancedservices+ shortNames:+ - onionha+ - oha+ - obs+ singular: onionbalancedservice+ scope: Namespaced+ versions:+ - additionalPrinterColumns:+ - jsonPath: .status.hostname+ name: Hostname+ type: string+ - jsonPath: .spec.backends+ name: Backends+ type: string+ - jsonPath: .metadata.creationTimestamp+ name: Age+ type: date+ name: v1alpha2+ schema:+ openAPIV3Schema:+ description: OnionBalancedService is the Schema for the onionbalancedservices API.+ properties:+ apiVersion:+ description: APIVersion defines the versioned schema of this representation of an object.+ type: string+ kind:+ description: Kind is a string value representing the REST resource this object represents.+ type: string+ metadata:+ type: object+ spec:+ description: OnionBalancedServiceSpec defines the desired state of OnionBalancedService.+ properties:+ backends:+ format: int32+ maximum: 8+ minimum: 1+ type: integer+ balancerTemplate:+ description: Template describes the balancer daemon pods that will be created.+ properties:+ balancerResources:+ description: Default resources for onionbalance containers+ 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.+ 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.+ type: object+ type: object+ metadata:+ description: Metadata of the pods created from this template.+ type: object+ spec:+ description: Spec defines the behavior of a pod.+ properties:+ activeDeadlineSeconds:+ description: Optional duration in seconds the pod may be active on the node relative to Start+ format: int64+ type: integer+ affinity:+ description: If specified, the pod's scheduling constraints+ properties:+ nodeAffinity:+ description: Describes node affinity scheduling rules for the pod.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: An empty preferred scheduling term matches all objects with implicit weight 0 (i+ properties:+ preference:+ description: A node selector term, associated with the corresponding weight.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range+ format: int32+ type: integer+ required:+ - preference+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ properties:+ nodeSelectorTerms:+ description: Required. A list of node selector terms. The terms are ORed.+ items:+ description: A null or empty node selector term matches no objects.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ type: array+ required:+ - nodeSelectorTerms+ type: object+ x-kubernetes-map-type: atomic+ type: object+ podAffinity:+ description: Describes pod affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ podAntiAffinity:+ description: Describes pod anti-affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affini+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the anti-affinity requirements specified by this field are not met at schedul+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ type: object+ automountServiceAccountToken:+ description: AutomountServiceAccountToken indicates whether a service account token should be+ type: boolean+ containers:+ description: List of containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ dnsConfig:+ description: Specifies the DNS parameters of a pod.+ properties:+ nameservers:+ description: A list of DNS name server IP addresses.+ items:+ type: string+ type: array+ options:+ description: A list of DNS resolver options.+ items:+ description: PodDNSConfigOption defines DNS resolver options of a pod.+ properties:+ name:+ description: Required.+ type: string+ value:+ type: string+ type: object+ type: array+ searches:+ description: A list of DNS search domains for host-name lookup.+ items:+ type: string+ type: array+ type: object+ dnsPolicy:+ description: Set DNS policy for the pod. Defaults to "ClusterFirst".+ type: string+ enableServiceLinks:+ description: EnableServiceLinks indicates whether information about services should be inject+ type: boolean+ ephemeralContainers:+ description: List of ephemeral containers run in this pod.+ items:+ description: An EphemeralContainer is a temporary container that you may add to an existing P+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Lifecycle is not allowed for ephemeral containers.+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the ephemeral container specified as a DNS_LABEL.+ type: string+ ports:+ description: Ports are not allowed for ephemeral containers.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Resources are not allowed for ephemeral containers.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: 'Optional: SecurityContext defines the security options the ephemeral container s'+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ targetContainerName:+ description: If set, the name of the container from PodSpec that this ephemeral container tar+ type: string+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ hostAliases:+ description: 'HostAliases is an optional list of hosts and IPs that will be injected into the '+ items:+ description: HostAlias holds the mapping between IP and hostnames that will be injected as an+ properties:+ hostnames:+ description: Hostnames for the above IP address.+ items:+ type: string+ type: array+ ip:+ description: IP address of the host file entry.+ type: string+ type: object+ type: array+ hostIPC:+ description: 'Use the host''s ipc namespace. Optional: Default to false.'+ type: boolean+ hostNetwork:+ description: Host networking requested for this pod. Use the host's network namespace.+ type: boolean+ hostPID:+ description: 'Use the host''s pid namespace. Optional: Default to false.'+ type: boolean+ hostname:+ description: Specifies the hostname of the Pod If not specified, the pod's hostname will be s+ type: string+ imagePullSecrets:+ description: ImagePullSecrets is an optional list of references to secrets in the same namesp+ items:+ description: LocalObjectReference contains enough information to let you locate the reference+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ type: array+ initContainers:+ description: List of initialization containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ nodeName:+ description: NodeName is a request to schedule this pod onto a specific node.+ type: string+ nodeSelector:+ additionalProperties:+ type: string+ description: NodeSelector is a selector which must be true for the pod to fit on a node.+ type: object+ x-kubernetes-map-type: atomic+ os:+ description: Specifies the OS of the containers in the pod.+ properties:+ name:+ description: Name is the name of the operating system.+ type: string+ required:+ - name+ type: object+ overhead:+ 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: Overhead represents the resource overhead associated with running a pod for a gi+ type: object+ preemptionPolicy:+ description: PreemptionPolicy is the Policy for preempting pods with lower priority.+ type: string+ priority:+ description: The priority value.+ format: int32+ type: integer+ priorityClassName:+ description: If specified, indicates the pod's priority.+ type: string+ readinessGates:+ description: If specified, all readiness gates will be evaluated for pod readiness.+ items:+ description: PodReadinessGate contains the reference to a pod condition+ properties:+ conditionType:+ description: ConditionType refers to a condition in the pod's condition list with matching ty+ type: string+ required:+ - conditionType+ type: object+ type: array+ restartPolicy:+ description: Restart policy for all containers within the pod.+ type: string+ runtimeClassName:+ description: RuntimeClassName refers to a RuntimeClass object in the node.k8s.+ type: string+ schedulerName:+ description: If specified, the pod will be dispatched by specified scheduler.+ type: string+ securityContext:+ description: SecurityContext holds pod-level security attributes and common container setting+ properties:+ fsGroup:+ description: A special supplemental group that applies to all containers in a pod.+ format: int64+ type: integer+ fsGroupChangePolicy:+ description: fsGroupChangePolicy defines behavior of changing ownership and permission of the+ type: string+ runAsGroup:+ description: The GID to run the entrypoint of the container process.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to all containers.+ 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 use+ type: string+ type:+ description: type indicates which kind of seccomp profile will 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+ items:+ format: int64+ type: integer+ type: array+ sysctls:+ description: Sysctls hold a list of namespaced sysctls used for the pod.+ 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.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ serviceAccount:+ description: DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.+ type: string+ serviceAccountName:+ description: ServiceAccountName is the name of the ServiceAccount to use to run this pod.+ type: string+ setHostnameAsFQDN:+ description: If true the pod's hostname will be configured as the pod's FQDN, rather than the+ type: boolean+ shareProcessNamespace:+ description: Share a single process namespace between all of the containers in a pod.+ type: boolean+ subdomain:+ description: If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.+ type: string+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully.+ format: int64+ type: integer+ tolerations:+ description: If specified, the pod's tolerations.+ items:+ description: The pod this Toleration is attached to tolerates any taint that matches the trip+ properties:+ effect:+ description: Effect indicates the taint effect to match. Empty means match all taint effects.+ type: string+ key:+ description: Key is the taint key that the toleration applies to.+ type: string+ operator:+ description: Operator represents a key's relationship to the value.+ type: string+ tolerationSeconds:+ description: TolerationSeconds represents the period of time the toleration (which must be of+ format: int64+ type: integer+ value:+ description: Value is the taint value the toleration matches to.+ type: string+ type: object+ type: array+ topologySpreadConstraints:+ description: TopologySpreadConstraints describes how a group of pods ought to spread across t+ items:+ description: TopologySpreadConstraint specifies how to spread matching pods among the given t+ properties:+ labelSelector:+ description: LabelSelector is used to find matching pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ maxSkew:+ description: MaxSkew describes the degree to which pods may be unevenly distributed.+ format: int32+ type: integer+ topologyKey:+ description: TopologyKey is the key of node labels.+ type: string+ whenUnsatisfiable:+ description: WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spr+ type: string+ required:+ - maxSkew+ - topologyKey+ - whenUnsatisfiable+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - topologyKey+ - whenUnsatisfiable+ x-kubernetes-list-type: map+ volumes:+ description: List of volumes that can be mounted by containers belonging to the pod.+ items:+ description: 'Volume represents a named volume in a pod that may be accessed by any container '+ properties:+ awsElasticBlockStore:+ description: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubel+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ readOnly:+ description: Specify "true" to force and set the ReadOnly property in VolumeMounts to "true".+ type: boolean+ volumeID:+ description: Unique ID of the persistent disk resource in AWS (Amazon EBS volume).+ type: string+ required:+ - volumeID+ type: object+ azureDisk:+ description: 'AzureDisk represents an Azure Data Disk mount on the host and bind mount to the '+ 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.+ type: string+ kind:+ description: 'Expected values Shared: multiple blob disks per storage account Dedicated: sing'+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ required:+ - diskName+ - diskURI+ type: object+ azureFile:+ description: AzureFile represents an Azure File Service mount on the host and bind mount to t+ properties:+ readOnly:+ description: Defaults to false (read/write).+ 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.'+ items:+ type: string+ 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).'+ type: boolean+ secretFile:+ description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user'+ type: string+ secretRef:+ description: 'Optional: SecretRef is reference to the authentication secret for User, default '+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'Optional: User is the rados user name, default is admin More info: https://examp'+ type: string+ required:+ - monitors+ type: object+ cinder:+ description: Cinder represents a cinder volume attached and mounted on kubelets host machine.+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: points to a secret object containing parameters used to connect to Ope'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeID:+ description: 'volume id used to identify the volume in cinder. More info: https://examples.'+ 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.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ csi:+ description: CSI (Container Storage Interface) represents ephemeral storage that is handled b+ properties:+ driver:+ description: Driver is the name of the CSI driver that handles this volume.+ type: string+ fsType:+ description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs".+ type: string+ nodePublishSecretRef:+ description: NodePublishSecretRef is a reference to the secret object containing sensitive in+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ readOnly:+ description: Specifies a read-only configuration for the volume.+ type: boolean+ volumeAttributes:+ additionalProperties:+ type: string+ description: VolumeAttributes stores driver-specific properties that are passed to the CSI dr+ type: object+ required:+ - driver+ type: object+ downwardAPI:+ description: DownwardAPI represents downward API about the pod that should populate this volu+ properties:+ defaultMode:+ description: 'Optional: mode bits to use on created files by default.'+ format: int32+ type: integer+ items:+ description: Items is a list of downward API volume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ required:+ - path+ type: object+ type: array+ type: object+ emptyDir:+ description: EmptyDir represents a temporary directory that shares a pod's lifetime.+ properties:+ medium:+ description: What type of storage medium should back this directory.+ type: string+ sizeLimit:+ anyOf:+ - type: integer+ - type: string+ description: Total amount of local storage required for this EmptyDir volume.+ 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.+ properties:+ volumeClaimTemplate:+ description: Will be used to create a stand-alone PVC to provision the volume.+ properties:+ metadata:+ description: May contain labels and annotations that will be copied into the PVC when creatin+ type: object+ spec:+ description: The specification for the PersistentVolumeClaim.+ properties:+ accessModes:+ description: AccessModes contains the desired access modes the volume should have.+ items:+ type: string+ type: array+ dataSource:+ description: 'This field can be used to specify either: * An existing VolumeSnapshot object (s'+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ dataSourceRef:+ description: Specifies the object from which to populate the volume with data, if a non-empty+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ resources:+ description: Resources represents the minimum resources the volume should have.+ 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.+ 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.+ 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.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ storageClassName:+ description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.'+ type: string+ volumeMode:+ description: volumeMode defines what type of volume is required by the claim.+ 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 mach+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ lun:+ description: 'Optional: FC target lun number'+ format: int32+ type: integer+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ 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 o'+ items:+ type: string+ type: array+ type: object+ flexVolume:+ description: FlexVolume represents a generic volume resource that is provisioned/attached usi+ properties:+ driver:+ description: Driver is the name of the driver to use for this volume.+ type: string+ fsType:+ description: Filesystem type to mount.+ type: string+ options:+ additionalProperties:+ type: string+ description: 'Optional: Extra command options if any.'+ type: object+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: SecretRef is reference to the secret object containing sensitive infor'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ required:+ - driver+ type: object+ flocker:+ description: Flocker represents a Flocker volume attached to a kubelet's host machine.+ properties:+ datasetName:+ description: Name of the dataset stored as metadata -> name on the dataset for Flocker should+ 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+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ pdName:+ description: Unique name of the PD resource in GCE. Used to identify the disk in GCE.+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ required:+ - pdName+ type: object+ gitRepo:+ description: GitRepo represents a git repository at a particular revision.+ properties:+ directory:+ description: Target directory name. Must not contain or start with '..'. If '.+ 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.+ properties:+ endpoints:+ description: EndpointsName is the endpoint name that details Glusterfs topology.+ type: string+ path:+ description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the Glusterfs volume to be mounted with read-only permi+ type: boolean+ required:+ - endpoints+ - path+ type: object+ hostPath:+ description: HostPath represents a pre-existing file or directory on the host machine that is+ properties:+ path:+ description: Path of the directory on the host.+ type: string+ type:+ description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.'+ type: string+ required:+ - path+ type: object+ iscsi:+ description: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host mac+ 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.+ type: string+ initiatorName:+ description: Custom iSCSI Initiator Name.+ 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.+ items:+ type: string+ type: array+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: CHAP Secret for iSCSI target and initiator authentication+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ targetPortal:+ description: iSCSI Target Portal.+ type: string+ required:+ - iqn+ - lun+ - targetPortal+ type: object+ name:+ description: Volume's name. Must be a DNS_LABEL and unique within the pod.+ type: string+ nfs:+ description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: '+ properties:+ path:+ description: 'Path that is exported by the NFS server. More info: https://kubernetes.'+ type: string+ readOnly:+ description: ReadOnly here will force the NFS export to be mounted with read-only permissions+ type: boolean+ server:+ description: Server is the hostname or IP address of the NFS server.+ type: string+ required:+ - path+ - server+ type: object+ persistentVolumeClaim:+ description: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeCl+ properties:+ claimName:+ description: ClaimName is the name of a PersistentVolumeClaim in the same namespace as the po+ 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 '+ properties:+ fsType:+ description: Filesystem type to mount.+ 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 hos+ properties:+ fsType:+ description: FSType represents the filesystem type to mount Must be a filesystem type support+ type: string+ readOnly:+ description: Defaults to false (read/write).+ 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.+ 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 ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ downwardAPI:+ description: information about the downwardAPI data to project+ properties:+ items:+ description: Items is a list of DownwardAPIVolume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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 w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ serviceAccountToken:+ description: information about the serviceAccountToken data to project+ properties:+ audience:+ description: Audience is the intended audience of the token.+ type: string+ expirationSeconds:+ description: ExpirationSeconds is the requested duration of validity of the service account t+ format: int64+ type: integer+ path:+ description: Path is the path relative to the mount point of the file to project the token in+ 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 permiss+ type: boolean+ registry:+ description: 'Registry represents a single or multiple Quobyte Registry services specified as '+ type: string+ tenant:+ description: Tenant owning the given Quobyte volume in the Backend Used with dynamically prov+ 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 lifeti+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ image:+ description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.'+ type: string+ keyring:+ description: Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring.+ type: string+ monitors:+ description: 'A collection of Ceph monitors. More info: https://examples.k8s.'+ items:+ type: string+ type: array+ pool:+ description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: SecretRef is name of the authentication secret for RBDUser.+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'The rados user name. Default is admin. More info: https://examples.k8s.'+ type: string+ required:+ - image+ - monitors+ type: object+ scaleIO:+ description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernete+ properties:+ fsType:+ description: Filesystem type to mount.+ 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).+ type: boolean+ secretRef:+ description: SecretRef references to the secret for ScaleIO user and other sensitive informat+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ 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 ThinPro+ 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 wi+ type: string+ required:+ - gateway+ - secretRef+ - system+ type: object+ secret:+ description: Secret represents a secret that should populate this volume.+ properties:+ defaultMode:+ description: 'Optional: mode bits used to set permissions on created files by default.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced Secret w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ 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.'+ type: string+ type: object+ storageos:+ description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ secretRef:+ description: SecretRef specifies the secret to use for obtaining the StorageOS API credential+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeName:+ description: VolumeName is the human-readable name of the StorageOS volume.+ type: string+ volumeNamespace:+ description: VolumeNamespace specifies the scope of the volume within StorageOS.+ type: string+ type: object+ vsphereVolume:+ description: 'VsphereVolume represents a vSphere volume attached and mounted on kubelets host '+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ storagePolicyID:+ description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePol+ 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: null+ type: object+ torResources:+ description: Default resources for tor containers+ 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.+ 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.+ type: object+ type: object+ type: object+ privateKeySecret:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ serviceMonitor:+ default: false+ type: boolean+ template:+ properties:+ spec:+ description: OnionServiceSpec defines the desired state of OnionService.+ properties:+ authorizedClients:+ items:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ type: array+ extraConfig:+ type: string+ masterOnionAddress:+ type: string+ privateKeySecret:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ rules:+ items:+ properties:+ backend:+ description: Backend selector+ properties:+ resource:+ description: 'Resource is an ObjectRef to another Kubernetes resource in the namespace of the '+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ service:+ description: Service references a Service as a Backend.+ properties:+ name:+ description: Name is the referenced service.+ type: string+ port:+ description: Port of the referenced service.+ properties:+ name:+ description: Name is the name of the port on the Service.+ type: string+ number:+ description: Number is the numerical port number (e.g. 80) on the Service.+ format: int32+ type: integer+ type: object+ required:+ - name+ type: object+ type: object+ port:+ description: Port publish as+ properties:+ name:+ description: Name is the name of the port on the Service.+ type: string+ number:+ description: Number is the numerical port number (e.g. 80) on the Service.+ format: int32+ type: integer+ type: object+ type: object+ type: array+ serviceMonitor:+ default: false+ type: boolean+ template:+ description: Template describes the pods that will be created.+ properties:+ metadata:+ description: Metadata of the pods created from this template.+ type: object+ resources:+ description: Default resources for containers+ 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.+ 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.+ type: object+ type: object+ spec:+ description: Spec defines the behavior of a pod.+ properties:+ activeDeadlineSeconds:+ description: Optional duration in seconds the pod may be active on the node relative to Start+ format: int64+ type: integer+ affinity:+ description: If specified, the pod's scheduling constraints+ properties:+ nodeAffinity:+ description: Describes node affinity scheduling rules for the pod.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: An empty preferred scheduling term matches all objects with implicit weight 0 (i+ properties:+ preference:+ description: A node selector term, associated with the corresponding weight.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range+ format: int32+ type: integer+ required:+ - preference+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ properties:+ nodeSelectorTerms:+ description: Required. A list of node selector terms. The terms are ORed.+ items:+ description: A null or empty node selector term matches no objects.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ type: array+ required:+ - nodeSelectorTerms+ type: object+ x-kubernetes-map-type: atomic+ type: object+ podAffinity:+ description: Describes pod affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ podAntiAffinity:+ description: Describes pod anti-affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affini+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the anti-affinity requirements specified by this field are not met at schedul+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ type: object+ automountServiceAccountToken:+ description: AutomountServiceAccountToken indicates whether a service account token should be+ type: boolean+ containers:+ description: List of containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ dnsConfig:+ description: Specifies the DNS parameters of a pod.+ properties:+ nameservers:+ description: A list of DNS name server IP addresses.+ items:+ type: string+ type: array+ options:+ description: A list of DNS resolver options.+ items:+ description: PodDNSConfigOption defines DNS resolver options of a pod.+ properties:+ name:+ description: Required.+ type: string+ value:+ type: string+ type: object+ type: array+ searches:+ description: A list of DNS search domains for host-name lookup.+ items:+ type: string+ type: array+ type: object+ dnsPolicy:+ description: Set DNS policy for the pod. Defaults to "ClusterFirst".+ type: string+ enableServiceLinks:+ description: EnableServiceLinks indicates whether information about services should be inject+ type: boolean+ ephemeralContainers:+ description: List of ephemeral containers run in this pod.+ items:+ description: An EphemeralContainer is a temporary container that you may add to an existing P+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Lifecycle is not allowed for ephemeral containers.+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the ephemeral container specified as a DNS_LABEL.+ type: string+ ports:+ description: Ports are not allowed for ephemeral containers.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Resources are not allowed for ephemeral containers.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: 'Optional: SecurityContext defines the security options the ephemeral container s'+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ targetContainerName:+ description: If set, the name of the container from PodSpec that this ephemeral container tar+ type: string+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ hostAliases:+ description: 'HostAliases is an optional list of hosts and IPs that will be injected into the '+ items:+ description: HostAlias holds the mapping between IP and hostnames that will be injected as an+ properties:+ hostnames:+ description: Hostnames for the above IP address.+ items:+ type: string+ type: array+ ip:+ description: IP address of the host file entry.+ type: string+ type: object+ type: array+ hostIPC:+ description: 'Use the host''s ipc namespace. Optional: Default to false.'+ type: boolean+ hostNetwork:+ description: Host networking requested for this pod. Use the host's network namespace.+ type: boolean+ hostPID:+ description: 'Use the host''s pid namespace. Optional: Default to false.'+ type: boolean+ hostname:+ description: Specifies the hostname of the Pod If not specified, the pod's hostname will be s+ type: string+ imagePullSecrets:+ description: ImagePullSecrets is an optional list of references to secrets in the same namesp+ items:+ description: LocalObjectReference contains enough information to let you locate the reference+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ type: array+ initContainers:+ description: List of initialization containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ nodeName:+ description: NodeName is a request to schedule this pod onto a specific node.+ type: string+ nodeSelector:+ additionalProperties:+ type: string+ description: NodeSelector is a selector which must be true for the pod to fit on a node.+ type: object+ x-kubernetes-map-type: atomic+ os:+ description: Specifies the OS of the containers in the pod.+ properties:+ name:+ description: Name is the name of the operating system.+ type: string+ required:+ - name+ type: object+ overhead:+ 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: Overhead represents the resource overhead associated with running a pod for a gi+ type: object+ preemptionPolicy:+ description: PreemptionPolicy is the Policy for preempting pods with lower priority.+ type: string+ priority:+ description: The priority value.+ format: int32+ type: integer+ priorityClassName:+ description: If specified, indicates the pod's priority.+ type: string+ readinessGates:+ description: If specified, all readiness gates will be evaluated for pod readiness.+ items:+ description: PodReadinessGate contains the reference to a pod condition+ properties:+ conditionType:+ description: ConditionType refers to a condition in the pod's condition list with matching ty+ type: string+ required:+ - conditionType+ type: object+ type: array+ restartPolicy:+ description: Restart policy for all containers within the pod.+ type: string+ runtimeClassName:+ description: RuntimeClassName refers to a RuntimeClass object in the node.k8s.+ type: string+ schedulerName:+ description: If specified, the pod will be dispatched by specified scheduler.+ type: string+ securityContext:+ description: SecurityContext holds pod-level security attributes and common container setting+ properties:+ fsGroup:+ description: A special supplemental group that applies to all containers in a pod.+ format: int64+ type: integer+ fsGroupChangePolicy:+ description: fsGroupChangePolicy defines behavior of changing ownership and permission of the+ type: string+ runAsGroup:+ description: The GID to run the entrypoint of the container process.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to all containers.+ 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 use+ type: string+ type:+ description: type indicates which kind of seccomp profile will 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+ items:+ format: int64+ type: integer+ type: array+ sysctls:+ description: Sysctls hold a list of namespaced sysctls used for the pod.+ 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.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ serviceAccount:+ description: DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.+ type: string+ serviceAccountName:+ description: ServiceAccountName is the name of the ServiceAccount to use to run this pod.+ type: string+ setHostnameAsFQDN:+ description: If true the pod's hostname will be configured as the pod's FQDN, rather than the+ type: boolean+ shareProcessNamespace:+ description: Share a single process namespace between all of the containers in a pod.+ type: boolean+ subdomain:+ description: If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.+ type: string+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully.+ format: int64+ type: integer+ tolerations:+ description: If specified, the pod's tolerations.+ items:+ description: The pod this Toleration is attached to tolerates any taint that matches the trip+ properties:+ effect:+ description: Effect indicates the taint effect to match. Empty means match all taint effects.+ type: string+ key:+ description: Key is the taint key that the toleration applies to.+ type: string+ operator:+ description: Operator represents a key's relationship to the value.+ type: string+ tolerationSeconds:+ description: TolerationSeconds represents the period of time the toleration (which must be of+ format: int64+ type: integer+ value:+ description: Value is the taint value the toleration matches to.+ type: string+ type: object+ type: array+ topologySpreadConstraints:+ description: TopologySpreadConstraints describes how a group of pods ought to spread across t+ items:+ description: TopologySpreadConstraint specifies how to spread matching pods among the given t+ properties:+ labelSelector:+ description: LabelSelector is used to find matching pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ maxSkew:+ description: MaxSkew describes the degree to which pods may be unevenly distributed.+ format: int32+ type: integer+ topologyKey:+ description: TopologyKey is the key of node labels.+ type: string+ whenUnsatisfiable:+ description: WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spr+ type: string+ required:+ - maxSkew+ - topologyKey+ - whenUnsatisfiable+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - topologyKey+ - whenUnsatisfiable+ x-kubernetes-list-type: map+ volumes:+ description: List of volumes that can be mounted by containers belonging to the pod.+ items:+ description: 'Volume represents a named volume in a pod that may be accessed by any container '+ properties:+ awsElasticBlockStore:+ description: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubel+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ readOnly:+ description: Specify "true" to force and set the ReadOnly property in VolumeMounts to "true".+ type: boolean+ volumeID:+ description: Unique ID of the persistent disk resource in AWS (Amazon EBS volume).+ type: string+ required:+ - volumeID+ type: object+ azureDisk:+ description: 'AzureDisk represents an Azure Data Disk mount on the host and bind mount to the '+ 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.+ type: string+ kind:+ description: 'Expected values Shared: multiple blob disks per storage account Dedicated: sing'+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ required:+ - diskName+ - diskURI+ type: object+ azureFile:+ description: AzureFile represents an Azure File Service mount on the host and bind mount to t+ properties:+ readOnly:+ description: Defaults to false (read/write).+ 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.'+ items:+ type: string+ 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).'+ type: boolean+ secretFile:+ description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user'+ type: string+ secretRef:+ description: 'Optional: SecretRef is reference to the authentication secret for User, default '+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'Optional: User is the rados user name, default is admin More info: https://examp'+ type: string+ required:+ - monitors+ type: object+ cinder:+ description: Cinder represents a cinder volume attached and mounted on kubelets host machine.+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: points to a secret object containing parameters used to connect to Ope'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeID:+ description: 'volume id used to identify the volume in cinder. More info: https://examples.'+ 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.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ csi:+ description: CSI (Container Storage Interface) represents ephemeral storage that is handled b+ properties:+ driver:+ description: Driver is the name of the CSI driver that handles this volume.+ type: string+ fsType:+ description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs".+ type: string+ nodePublishSecretRef:+ description: NodePublishSecretRef is a reference to the secret object containing sensitive in+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ readOnly:+ description: Specifies a read-only configuration for the volume.+ type: boolean+ volumeAttributes:+ additionalProperties:+ type: string+ description: VolumeAttributes stores driver-specific properties that are passed to the CSI dr+ type: object+ required:+ - driver+ type: object+ downwardAPI:+ description: DownwardAPI represents downward API about the pod that should populate this volu+ properties:+ defaultMode:+ description: 'Optional: mode bits to use on created files by default.'+ format: int32+ type: integer+ items:+ description: Items is a list of downward API volume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ required:+ - path+ type: object+ type: array+ type: object+ emptyDir:+ description: EmptyDir represents a temporary directory that shares a pod's lifetime.+ properties:+ medium:+ description: What type of storage medium should back this directory.+ type: string+ sizeLimit:+ anyOf:+ - type: integer+ - type: string+ description: Total amount of local storage required for this EmptyDir volume.+ 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.+ properties:+ volumeClaimTemplate:+ description: Will be used to create a stand-alone PVC to provision the volume.+ properties:+ metadata:+ description: May contain labels and annotations that will be copied into the PVC when creatin+ type: object+ spec:+ description: The specification for the PersistentVolumeClaim.+ properties:+ accessModes:+ description: AccessModes contains the desired access modes the volume should have.+ items:+ type: string+ type: array+ dataSource:+ description: 'This field can be used to specify either: * An existing VolumeSnapshot object (s'+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ dataSourceRef:+ description: Specifies the object from which to populate the volume with data, if a non-empty+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ resources:+ description: Resources represents the minimum resources the volume should have.+ 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.+ 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.+ 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.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ storageClassName:+ description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.'+ type: string+ volumeMode:+ description: volumeMode defines what type of volume is required by the claim.+ 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 mach+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ lun:+ description: 'Optional: FC target lun number'+ format: int32+ type: integer+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ 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 o'+ items:+ type: string+ type: array+ type: object+ flexVolume:+ description: FlexVolume represents a generic volume resource that is provisioned/attached usi+ properties:+ driver:+ description: Driver is the name of the driver to use for this volume.+ type: string+ fsType:+ description: Filesystem type to mount.+ type: string+ options:+ additionalProperties:+ type: string+ description: 'Optional: Extra command options if any.'+ type: object+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: SecretRef is reference to the secret object containing sensitive infor'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ required:+ - driver+ type: object+ flocker:+ description: Flocker represents a Flocker volume attached to a kubelet's host machine.+ properties:+ datasetName:+ description: Name of the dataset stored as metadata -> name on the dataset for Flocker should+ 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+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ pdName:+ description: Unique name of the PD resource in GCE. Used to identify the disk in GCE.+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ required:+ - pdName+ type: object+ gitRepo:+ description: GitRepo represents a git repository at a particular revision.+ properties:+ directory:+ description: Target directory name. Must not contain or start with '..'. If '.+ 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.+ properties:+ endpoints:+ description: EndpointsName is the endpoint name that details Glusterfs topology.+ type: string+ path:+ description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the Glusterfs volume to be mounted with read-only permi+ type: boolean+ required:+ - endpoints+ - path+ type: object+ hostPath:+ description: HostPath represents a pre-existing file or directory on the host machine that is+ properties:+ path:+ description: Path of the directory on the host.+ type: string+ type:+ description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.'+ type: string+ required:+ - path+ type: object+ iscsi:+ description: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host mac+ 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.+ type: string+ initiatorName:+ description: Custom iSCSI Initiator Name.+ 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.+ items:+ type: string+ type: array+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: CHAP Secret for iSCSI target and initiator authentication+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ targetPortal:+ description: iSCSI Target Portal.+ type: string+ required:+ - iqn+ - lun+ - targetPortal+ type: object+ name:+ description: Volume's name. Must be a DNS_LABEL and unique within the pod.+ type: string+ nfs:+ description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: '+ properties:+ path:+ description: 'Path that is exported by the NFS server. More info: https://kubernetes.'+ type: string+ readOnly:+ description: ReadOnly here will force the NFS export to be mounted with read-only permissions+ type: boolean+ server:+ description: Server is the hostname or IP address of the NFS server.+ type: string+ required:+ - path+ - server+ type: object+ persistentVolumeClaim:+ description: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeCl+ properties:+ claimName:+ description: ClaimName is the name of a PersistentVolumeClaim in the same namespace as the po+ 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 '+ properties:+ fsType:+ description: Filesystem type to mount.+ 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 hos+ properties:+ fsType:+ description: FSType represents the filesystem type to mount Must be a filesystem type support+ type: string+ readOnly:+ description: Defaults to false (read/write).+ 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.+ 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 ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ downwardAPI:+ description: information about the downwardAPI data to project+ properties:+ items:+ description: Items is a list of DownwardAPIVolume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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 w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ serviceAccountToken:+ description: information about the serviceAccountToken data to project+ properties:+ audience:+ description: Audience is the intended audience of the token.+ type: string+ expirationSeconds:+ description: ExpirationSeconds is the requested duration of validity of the service account t+ format: int64+ type: integer+ path:+ description: Path is the path relative to the mount point of the file to project the token in+ 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 permiss+ type: boolean+ registry:+ description: 'Registry represents a single or multiple Quobyte Registry services specified as '+ type: string+ tenant:+ description: Tenant owning the given Quobyte volume in the Backend Used with dynamically prov+ 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 lifeti+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ image:+ description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.'+ type: string+ keyring:+ description: Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring.+ type: string+ monitors:+ description: 'A collection of Ceph monitors. More info: https://examples.k8s.'+ items:+ type: string+ type: array+ pool:+ description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: SecretRef is name of the authentication secret for RBDUser.+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'The rados user name. Default is admin. More info: https://examples.k8s.'+ type: string+ required:+ - image+ - monitors+ type: object+ scaleIO:+ description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernete+ properties:+ fsType:+ description: Filesystem type to mount.+ 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).+ type: boolean+ secretRef:+ description: SecretRef references to the secret for ScaleIO user and other sensitive informat+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ 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 ThinPro+ 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 wi+ type: string+ required:+ - gateway+ - secretRef+ - system+ type: object+ secret:+ description: Secret represents a secret that should populate this volume.+ properties:+ defaultMode:+ description: 'Optional: mode bits used to set permissions on created files by default.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced Secret w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ 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.'+ type: string+ type: object+ storageos:+ description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ secretRef:+ description: SecretRef specifies the secret to use for obtaining the StorageOS API credential+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeName:+ description: VolumeName is the human-readable name of the StorageOS volume.+ type: string+ volumeNamespace:+ description: VolumeNamespace specifies the scope of the volume within StorageOS.+ type: string+ type: object+ vsphereVolume:+ description: 'VsphereVolume represents a vSphere volume attached and mounted on kubelets host '+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ storagePolicyID:+ description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePol+ 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: null+ type: object+ type: object+ version:+ default: 3+ enum:+ - 0+ - 2+ - 3+ format: int32+ type: integer+ type: object+ type: object+ version:+ default: 3+ enum:+ - 3+ format: int32+ type: integer+ required:+ - backends+ type: object+ status:+ description: OnionBalancedServiceStatus defines the observed state of OnionBalancedService.+ properties:+ backends:+ additionalProperties:+ description: OnionServiceStatus defines the observed state of OnionService.+ properties:+ hostname:+ type: string+ targetClusterIP:+ type: string+ type: object+ type: object+ hostname:+ type: string+ targetClusterIP:+ type: string+ type: object+ type: object+ served: true+ storage: true+ subresources:+ status: {}+---+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ annotations:+ controller-gen.kubebuilder.io/version: v0.11.1+ creationTimestamp: null+ name: onionservices.tor.k8s.torproject.org+spec:+ group: tor.k8s.torproject.org+ names:+ kind: OnionService+ listKind: OnionServiceList+ plural: onionservices+ shortNames:+ - onion+ - os+ singular: onionservice+ scope: Namespaced+ versions:+ - additionalPrinterColumns:+ - jsonPath: .status.hostname+ name: Hostname+ type: string+ - jsonPath: .status.targetClusterIP+ name: TargetClusterIP+ type: string+ - jsonPath: .metadata.creationTimestamp+ name: Age+ type: date+ name: v1alpha1+ schema:+ openAPIV3Schema:+ description: OnionService is the Schema for the onionservices API.+ properties:+ apiVersion:+ description: APIVersion defines the versioned schema of this representation of an object.+ type: string+ kind:+ description: Kind is a string value representing the REST resource this object represents.+ type: string+ metadata:+ type: object+ spec:+ description: OnionServiceSpec defines the desired state of OnionService.+ properties:+ extraConfig:+ type: string+ ports:+ description: The list of ports that are exposed by this service.+ items:+ properties:+ name:+ description: Optional if only one ServicePort is defined on this service.+ type: string+ publicPort:+ description: The port that will be exposed by this service.+ format: int32+ type: integer+ targetPort:+ description: Number or name of the port to access on the pods targeted by the service.+ format: int32+ type: integer+ required:+ - publicPort+ type: object+ type: array+ privateKeySecret:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ selector:+ additionalProperties:+ type: string+ type: object+ version:+ enum:+ - 0+ - 2+ - 3+ format: int32+ type: integer+ required:+ - version+ type: object+ status:+ description: OnionServiceStatus defines the observed state of OnionService.+ properties:+ hostname:+ type: string+ targetClusterIP:+ type: string+ required:+ - hostname+ - targetClusterIP+ type: object+ type: object+ served: true+ storage: false+ subresources:+ status: {}+ - additionalPrinterColumns:+ - jsonPath: .status.hostname+ name: Hostname+ type: string+ - jsonPath: .metadata.creationTimestamp+ name: Age+ type: date+ name: v1alpha2+ schema:+ openAPIV3Schema:+ description: OnionService is the Schema for the onionservices API.+ properties:+ apiVersion:+ description: APIVersion defines the versioned schema of this representation of an object.+ type: string+ kind:+ description: Kind is a string value representing the REST resource this object represents.+ type: string+ metadata:+ type: object+ spec:+ description: OnionServiceSpec defines the desired state of OnionService.+ properties:+ authorizedClients:+ items:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ type: array+ extraConfig:+ type: string+ masterOnionAddress:+ type: string+ privateKeySecret:+ description: SecretReference represents a Secret Reference.+ properties:+ key:+ type: string+ name:+ description: Name is unique within a namespace to reference a secret resource.+ type: string+ type: object+ rules:+ items:+ properties:+ backend:+ description: Backend selector+ properties:+ resource:+ description: 'Resource is an ObjectRef to another Kubernetes resource in the namespace of the '+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ service:+ description: Service references a Service as a Backend.+ properties:+ name:+ description: Name is the referenced service.+ type: string+ port:+ description: Port of the referenced service.+ properties:+ name:+ description: Name is the name of the port on the Service.+ type: string+ number:+ description: Number is the numerical port number (e.g. 80) on the Service.+ format: int32+ type: integer+ type: object+ required:+ - name+ type: object+ type: object+ port:+ description: Port publish as+ properties:+ name:+ description: Name is the name of the port on the Service.+ type: string+ number:+ description: Number is the numerical port number (e.g. 80) on the Service.+ format: int32+ type: integer+ type: object+ type: object+ type: array+ serviceMonitor:+ default: false+ type: boolean+ template:+ description: Template describes the pods that will be created.+ properties:+ metadata:+ description: Metadata of the pods created from this template.+ type: object+ resources:+ description: Default resources for containers+ 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.+ 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.+ type: object+ type: object+ spec:+ description: Spec defines the behavior of a pod.+ properties:+ activeDeadlineSeconds:+ description: Optional duration in seconds the pod may be active on the node relative to Start+ format: int64+ type: integer+ affinity:+ description: If specified, the pod's scheduling constraints+ properties:+ nodeAffinity:+ description: Describes node affinity scheduling rules for the pod.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: An empty preferred scheduling term matches all objects with implicit weight 0 (i+ properties:+ preference:+ description: A node selector term, associated with the corresponding weight.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range+ format: int32+ type: integer+ required:+ - preference+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ properties:+ nodeSelectorTerms:+ description: Required. A list of node selector terms. The terms are ORed.+ items:+ description: A null or empty node selector term matches no objects.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ type: array+ required:+ - nodeSelectorTerms+ type: object+ x-kubernetes-map-type: atomic+ type: object+ podAffinity:+ description: Describes pod affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ podAntiAffinity:+ description: Describes pod anti-affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affini+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the anti-affinity requirements specified by this field are not met at schedul+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ type: object+ automountServiceAccountToken:+ description: AutomountServiceAccountToken indicates whether a service account token should be+ type: boolean+ containers:+ description: List of containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ dnsConfig:+ description: Specifies the DNS parameters of a pod.+ properties:+ nameservers:+ description: A list of DNS name server IP addresses.+ items:+ type: string+ type: array+ options:+ description: A list of DNS resolver options.+ items:+ description: PodDNSConfigOption defines DNS resolver options of a pod.+ properties:+ name:+ description: Required.+ type: string+ value:+ type: string+ type: object+ type: array+ searches:+ description: A list of DNS search domains for host-name lookup.+ items:+ type: string+ type: array+ type: object+ dnsPolicy:+ description: Set DNS policy for the pod. Defaults to "ClusterFirst".+ type: string+ enableServiceLinks:+ description: EnableServiceLinks indicates whether information about services should be inject+ type: boolean+ ephemeralContainers:+ description: List of ephemeral containers run in this pod.+ items:+ description: An EphemeralContainer is a temporary container that you may add to an existing P+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Lifecycle is not allowed for ephemeral containers.+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the ephemeral container specified as a DNS_LABEL.+ type: string+ ports:+ description: Ports are not allowed for ephemeral containers.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Resources are not allowed for ephemeral containers.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: 'Optional: SecurityContext defines the security options the ephemeral container s'+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ targetContainerName:+ description: If set, the name of the container from PodSpec that this ephemeral container tar+ type: string+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ hostAliases:+ description: 'HostAliases is an optional list of hosts and IPs that will be injected into the '+ items:+ description: HostAlias holds the mapping between IP and hostnames that will be injected as an+ properties:+ hostnames:+ description: Hostnames for the above IP address.+ items:+ type: string+ type: array+ ip:+ description: IP address of the host file entry.+ type: string+ type: object+ type: array+ hostIPC:+ description: 'Use the host''s ipc namespace. Optional: Default to false.'+ type: boolean+ hostNetwork:+ description: Host networking requested for this pod. Use the host's network namespace.+ type: boolean+ hostPID:+ description: 'Use the host''s pid namespace. Optional: Default to false.'+ type: boolean+ hostname:+ description: Specifies the hostname of the Pod If not specified, the pod's hostname will be s+ type: string+ imagePullSecrets:+ description: ImagePullSecrets is an optional list of references to secrets in the same namesp+ items:+ description: LocalObjectReference contains enough information to let you locate the reference+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ type: array+ initContainers:+ description: List of initialization containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ nodeName:+ description: NodeName is a request to schedule this pod onto a specific node.+ type: string+ nodeSelector:+ additionalProperties:+ type: string+ description: NodeSelector is a selector which must be true for the pod to fit on a node.+ type: object+ x-kubernetes-map-type: atomic+ os:+ description: Specifies the OS of the containers in the pod.+ properties:+ name:+ description: Name is the name of the operating system.+ type: string+ required:+ - name+ type: object+ overhead:+ 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: Overhead represents the resource overhead associated with running a pod for a gi+ type: object+ preemptionPolicy:+ description: PreemptionPolicy is the Policy for preempting pods with lower priority.+ type: string+ priority:+ description: The priority value.+ format: int32+ type: integer+ priorityClassName:+ description: If specified, indicates the pod's priority.+ type: string+ readinessGates:+ description: If specified, all readiness gates will be evaluated for pod readiness.+ items:+ description: PodReadinessGate contains the reference to a pod condition+ properties:+ conditionType:+ description: ConditionType refers to a condition in the pod's condition list with matching ty+ type: string+ required:+ - conditionType+ type: object+ type: array+ restartPolicy:+ description: Restart policy for all containers within the pod.+ type: string+ runtimeClassName:+ description: RuntimeClassName refers to a RuntimeClass object in the node.k8s.+ type: string+ schedulerName:+ description: If specified, the pod will be dispatched by specified scheduler.+ type: string+ securityContext:+ description: SecurityContext holds pod-level security attributes and common container setting+ properties:+ fsGroup:+ description: A special supplemental group that applies to all containers in a pod.+ format: int64+ type: integer+ fsGroupChangePolicy:+ description: fsGroupChangePolicy defines behavior of changing ownership and permission of the+ type: string+ runAsGroup:+ description: The GID to run the entrypoint of the container process.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to all containers.+ 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 use+ type: string+ type:+ description: type indicates which kind of seccomp profile will 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+ items:+ format: int64+ type: integer+ type: array+ sysctls:+ description: Sysctls hold a list of namespaced sysctls used for the pod.+ 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.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ serviceAccount:+ description: DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.+ type: string+ serviceAccountName:+ description: ServiceAccountName is the name of the ServiceAccount to use to run this pod.+ type: string+ setHostnameAsFQDN:+ description: If true the pod's hostname will be configured as the pod's FQDN, rather than the+ type: boolean+ shareProcessNamespace:+ description: Share a single process namespace between all of the containers in a pod.+ type: boolean+ subdomain:+ description: If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.+ type: string+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully.+ format: int64+ type: integer+ tolerations:+ description: If specified, the pod's tolerations.+ items:+ description: The pod this Toleration is attached to tolerates any taint that matches the trip+ properties:+ effect:+ description: Effect indicates the taint effect to match. Empty means match all taint effects.+ type: string+ key:+ description: Key is the taint key that the toleration applies to.+ type: string+ operator:+ description: Operator represents a key's relationship to the value.+ type: string+ tolerationSeconds:+ description: TolerationSeconds represents the period of time the toleration (which must be of+ format: int64+ type: integer+ value:+ description: Value is the taint value the toleration matches to.+ type: string+ type: object+ type: array+ topologySpreadConstraints:+ description: TopologySpreadConstraints describes how a group of pods ought to spread across t+ items:+ description: TopologySpreadConstraint specifies how to spread matching pods among the given t+ properties:+ labelSelector:+ description: LabelSelector is used to find matching pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ maxSkew:+ description: MaxSkew describes the degree to which pods may be unevenly distributed.+ format: int32+ type: integer+ topologyKey:+ description: TopologyKey is the key of node labels.+ type: string+ whenUnsatisfiable:+ description: WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spr+ type: string+ required:+ - maxSkew+ - topologyKey+ - whenUnsatisfiable+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - topologyKey+ - whenUnsatisfiable+ x-kubernetes-list-type: map+ volumes:+ description: List of volumes that can be mounted by containers belonging to the pod.+ items:+ description: 'Volume represents a named volume in a pod that may be accessed by any container '+ properties:+ awsElasticBlockStore:+ description: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubel+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ readOnly:+ description: Specify "true" to force and set the ReadOnly property in VolumeMounts to "true".+ type: boolean+ volumeID:+ description: Unique ID of the persistent disk resource in AWS (Amazon EBS volume).+ type: string+ required:+ - volumeID+ type: object+ azureDisk:+ description: 'AzureDisk represents an Azure Data Disk mount on the host and bind mount to the '+ 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.+ type: string+ kind:+ description: 'Expected values Shared: multiple blob disks per storage account Dedicated: sing'+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ required:+ - diskName+ - diskURI+ type: object+ azureFile:+ description: AzureFile represents an Azure File Service mount on the host and bind mount to t+ properties:+ readOnly:+ description: Defaults to false (read/write).+ 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.'+ items:+ type: string+ 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).'+ type: boolean+ secretFile:+ description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user'+ type: string+ secretRef:+ description: 'Optional: SecretRef is reference to the authentication secret for User, default '+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'Optional: User is the rados user name, default is admin More info: https://examp'+ type: string+ required:+ - monitors+ type: object+ cinder:+ description: Cinder represents a cinder volume attached and mounted on kubelets host machine.+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: points to a secret object containing parameters used to connect to Ope'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeID:+ description: 'volume id used to identify the volume in cinder. More info: https://examples.'+ 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.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ csi:+ description: CSI (Container Storage Interface) represents ephemeral storage that is handled b+ properties:+ driver:+ description: Driver is the name of the CSI driver that handles this volume.+ type: string+ fsType:+ description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs".+ type: string+ nodePublishSecretRef:+ description: NodePublishSecretRef is a reference to the secret object containing sensitive in+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ readOnly:+ description: Specifies a read-only configuration for the volume.+ type: boolean+ volumeAttributes:+ additionalProperties:+ type: string+ description: VolumeAttributes stores driver-specific properties that are passed to the CSI dr+ type: object+ required:+ - driver+ type: object+ downwardAPI:+ description: DownwardAPI represents downward API about the pod that should populate this volu+ properties:+ defaultMode:+ description: 'Optional: mode bits to use on created files by default.'+ format: int32+ type: integer+ items:+ description: Items is a list of downward API volume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ required:+ - path+ type: object+ type: array+ type: object+ emptyDir:+ description: EmptyDir represents a temporary directory that shares a pod's lifetime.+ properties:+ medium:+ description: What type of storage medium should back this directory.+ type: string+ sizeLimit:+ anyOf:+ - type: integer+ - type: string+ description: Total amount of local storage required for this EmptyDir volume.+ 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.+ properties:+ volumeClaimTemplate:+ description: Will be used to create a stand-alone PVC to provision the volume.+ properties:+ metadata:+ description: May contain labels and annotations that will be copied into the PVC when creatin+ type: object+ spec:+ description: The specification for the PersistentVolumeClaim.+ properties:+ accessModes:+ description: AccessModes contains the desired access modes the volume should have.+ items:+ type: string+ type: array+ dataSource:+ description: 'This field can be used to specify either: * An existing VolumeSnapshot object (s'+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ dataSourceRef:+ description: Specifies the object from which to populate the volume with data, if a non-empty+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ resources:+ description: Resources represents the minimum resources the volume should have.+ 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.+ 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.+ 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.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ storageClassName:+ description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.'+ type: string+ volumeMode:+ description: volumeMode defines what type of volume is required by the claim.+ 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 mach+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ lun:+ description: 'Optional: FC target lun number'+ format: int32+ type: integer+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ 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 o'+ items:+ type: string+ type: array+ type: object+ flexVolume:+ description: FlexVolume represents a generic volume resource that is provisioned/attached usi+ properties:+ driver:+ description: Driver is the name of the driver to use for this volume.+ type: string+ fsType:+ description: Filesystem type to mount.+ type: string+ options:+ additionalProperties:+ type: string+ description: 'Optional: Extra command options if any.'+ type: object+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: SecretRef is reference to the secret object containing sensitive infor'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ required:+ - driver+ type: object+ flocker:+ description: Flocker represents a Flocker volume attached to a kubelet's host machine.+ properties:+ datasetName:+ description: Name of the dataset stored as metadata -> name on the dataset for Flocker should+ 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+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ pdName:+ description: Unique name of the PD resource in GCE. Used to identify the disk in GCE.+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ required:+ - pdName+ type: object+ gitRepo:+ description: GitRepo represents a git repository at a particular revision.+ properties:+ directory:+ description: Target directory name. Must not contain or start with '..'. If '.+ 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.+ properties:+ endpoints:+ description: EndpointsName is the endpoint name that details Glusterfs topology.+ type: string+ path:+ description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the Glusterfs volume to be mounted with read-only permi+ type: boolean+ required:+ - endpoints+ - path+ type: object+ hostPath:+ description: HostPath represents a pre-existing file or directory on the host machine that is+ properties:+ path:+ description: Path of the directory on the host.+ type: string+ type:+ description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.'+ type: string+ required:+ - path+ type: object+ iscsi:+ description: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host mac+ 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.+ type: string+ initiatorName:+ description: Custom iSCSI Initiator Name.+ 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.+ items:+ type: string+ type: array+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: CHAP Secret for iSCSI target and initiator authentication+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ targetPortal:+ description: iSCSI Target Portal.+ type: string+ required:+ - iqn+ - lun+ - targetPortal+ type: object+ name:+ description: Volume's name. Must be a DNS_LABEL and unique within the pod.+ type: string+ nfs:+ description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: '+ properties:+ path:+ description: 'Path that is exported by the NFS server. More info: https://kubernetes.'+ type: string+ readOnly:+ description: ReadOnly here will force the NFS export to be mounted with read-only permissions+ type: boolean+ server:+ description: Server is the hostname or IP address of the NFS server.+ type: string+ required:+ - path+ - server+ type: object+ persistentVolumeClaim:+ description: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeCl+ properties:+ claimName:+ description: ClaimName is the name of a PersistentVolumeClaim in the same namespace as the po+ 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 '+ properties:+ fsType:+ description: Filesystem type to mount.+ 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 hos+ properties:+ fsType:+ description: FSType represents the filesystem type to mount Must be a filesystem type support+ type: string+ readOnly:+ description: Defaults to false (read/write).+ 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.+ 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 ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ downwardAPI:+ description: information about the downwardAPI data to project+ properties:+ items:+ description: Items is a list of DownwardAPIVolume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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 w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ serviceAccountToken:+ description: information about the serviceAccountToken data to project+ properties:+ audience:+ description: Audience is the intended audience of the token.+ type: string+ expirationSeconds:+ description: ExpirationSeconds is the requested duration of validity of the service account t+ format: int64+ type: integer+ path:+ description: Path is the path relative to the mount point of the file to project the token in+ 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 permiss+ type: boolean+ registry:+ description: 'Registry represents a single or multiple Quobyte Registry services specified as '+ type: string+ tenant:+ description: Tenant owning the given Quobyte volume in the Backend Used with dynamically prov+ 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 lifeti+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ image:+ description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.'+ type: string+ keyring:+ description: Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring.+ type: string+ monitors:+ description: 'A collection of Ceph monitors. More info: https://examples.k8s.'+ items:+ type: string+ type: array+ pool:+ description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: SecretRef is name of the authentication secret for RBDUser.+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'The rados user name. Default is admin. More info: https://examples.k8s.'+ type: string+ required:+ - image+ - monitors+ type: object+ scaleIO:+ description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernete+ properties:+ fsType:+ description: Filesystem type to mount.+ 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).+ type: boolean+ secretRef:+ description: SecretRef references to the secret for ScaleIO user and other sensitive informat+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ 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 ThinPro+ 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 wi+ type: string+ required:+ - gateway+ - secretRef+ - system+ type: object+ secret:+ description: Secret represents a secret that should populate this volume.+ properties:+ defaultMode:+ description: 'Optional: mode bits used to set permissions on created files by default.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced Secret w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ 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.'+ type: string+ type: object+ storageos:+ description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ secretRef:+ description: SecretRef specifies the secret to use for obtaining the StorageOS API credential+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeName:+ description: VolumeName is the human-readable name of the StorageOS volume.+ type: string+ volumeNamespace:+ description: VolumeNamespace specifies the scope of the volume within StorageOS.+ type: string+ type: object+ vsphereVolume:+ description: 'VsphereVolume represents a vSphere volume attached and mounted on kubelets host '+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ storagePolicyID:+ description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePol+ 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: null+ type: object+ type: object+ version:+ default: 3+ enum:+ - 0+ - 2+ - 3+ format: int32+ type: integer+ type: object+ status:+ description: OnionServiceStatus defines the observed state of OnionService.+ properties:+ hostname:+ type: string+ targetClusterIP:+ type: string+ type: object+ type: object+ served: true+ storage: true+ subresources:+ status: {}+---+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ annotations:+ controller-gen.kubebuilder.io/version: v0.7.0+ creationTimestamp: null+ name: projectconfigs.config.k8s.torproject.org+spec:+ group: config.k8s.torproject.org+ names:+ kind: ProjectConfig+ listKind: ProjectConfigList+ plural: projectconfigs+ singular: projectconfig+ scope: Namespaced+ versions:+ - name: v2+ schema:+ openAPIV3Schema:+ description: ProjectConfig is the Schema for the projectconfigs 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+ cacheNamespace:+ description: "CacheNamespace if specified restricts the manager's cache to watch objects in the desired namespace Defaults to all namespaces \n Note: If a namespace is specified, controllers can still Watch for a cluster-scoped resource (e.g Node). For namespaced resources the cache will only hold objects from the desired namespace."+ type: string+ controller:+ description: Controller contains global configuration options for controllers registered within this manager.+ properties:+ cacheSyncTimeout:+ description: CacheSyncTimeout refers to the time limit set to wait for syncing caches. Defaults to 2 minutes if not set.+ format: int64+ type: integer+ groupKindConcurrency:+ additionalProperties:+ type: integer+ description: "GroupKindConcurrency is a map from a Kind to the number of concurrent reconciliation allowed for that controller. \n When a controller is registered within this manager using the builder utilities, users have to specify the type the controller reconciles in the For(...) call. If the object's kind passed matches one of the keys in this map, the concurrency for that controller is set to the number specified. \n The key is expected to be consistent in form with GroupKind.String(), e.g. ReplicaSet in apps group (regardless of version) would be `ReplicaSet.apps`."+ type: object+ type: object+ gracefulShutDown:+ description: GracefulShutdownTimeout is the duration given to runnable to stop before the manager actually returns on stop. To disable graceful shutdown, set to time.Duration(0) To use graceful shutdown without timeout, set to a negative duration, e.G. time.Duration(-1) The graceful shutdown is skipped for safety reasons in case the leader election lease is lost.+ type: string+ health:+ description: Health contains the controller health configuration+ properties:+ healthProbeBindAddress:+ description: HealthProbeBindAddress is the TCP address that the controller should bind to for serving health probes+ type: string+ livenessEndpointName:+ description: LivenessEndpointName, defaults to "healthz"+ type: string+ readinessEndpointName:+ description: ReadinessEndpointName, defaults to "readyz"+ type: string+ type: object+ 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+ leaderElection:+ description: LeaderElection is the LeaderElection config to be used when configuring the manager.Manager leader election+ properties:+ leaderElect:+ description: leaderElect enables a leader election client to gain leadership before executing the main loop. Enable this when running replicated components for high availability.+ type: boolean+ leaseDuration:+ description: leaseDuration is the duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled.+ type: string+ renewDeadline:+ description: renewDeadline is the interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled.+ type: string+ resourceLock:+ description: resourceLock indicates the resource object type that will be used to lock during leader election cycles.+ type: string+ resourceName:+ description: resourceName indicates the name of resource object that will be used to lock during leader election cycles.+ type: string+ resourceNamespace:+ description: resourceName indicates the namespace of resource object that will be used to lock during leader election cycles.+ type: string+ retryPeriod:+ description: retryPeriod is the duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled.+ type: string+ required:+ - leaderElect+ - leaseDuration+ - renewDeadline+ - resourceLock+ - resourceName+ - resourceNamespace+ - retryPeriod+ type: object+ metrics:+ description: Metrics contains thw controller metrics configuration+ properties:+ bindAddress:+ description: BindAddress is the TCP address that the controller should bind to for serving prometheus metrics. It can be set to "0" to disable the metrics serving.+ type: string+ type: object+ syncPeriod:+ description: SyncPeriod determines the minimum frequency at which watched resources are reconciled. A lower period will correct entropy more quickly, but reduce responsiveness to change if there are many watched resources. Change this value only if you know what you are doing. Defaults to 10 hours if unset. there will a 10 percent jitter between the SyncPeriod of all controllers so that all controllers will not send list requests simultaneously.+ type: string+ torDaemonManager:+ properties:+ image:+ default: quay.io/bugfest/tor-daemon-manager:latest+ type: string+ type: object+ torOnionbalanceManager:+ properties:+ image:+ default: quay.io/bugfest/tor-onionbalance-manager:latest+ type: string+ type: object+ webhook:+ description: Webhook contains the controllers webhook configuration+ properties:+ certDir:+ description: CertDir is the directory that contains the server key and certificate. if not set, webhook server would look up the server key and certificate in {TempDir}/k8s-webhook-server/serving-certs. The server key and certificate must be named tls.key and tls.crt, respectively.+ type: string+ host:+ description: Host is the hostname that the webhook server binds to. It is used to set webhook.Server.Host.+ type: string+ port:+ description: Port is the port that the webhook server serves at. It is used to set webhook.Server.Port.+ type: integer+ type: object+ type: object+ served: true+ storage: true+status:+ acceptedNames:+ kind: ""+ plural: ""+ conditions: []+ storedVersions: []+---+apiVersion: apiextensions.k8s.io/v1+kind: CustomResourceDefinition+metadata:+ annotations:+ controller-gen.kubebuilder.io/version: v0.11.1+ creationTimestamp: null+ name: tors.tor.k8s.torproject.org+spec:+ group: tor.k8s.torproject.org+ names:+ kind: Tor+ listKind: TorList+ plural: tors+ shortNames:+ - tor+ singular: tor+ scope: Namespaced+ versions:+ - additionalPrinterColumns:+ - jsonPath: .metadata.creationTimestamp+ name: Age+ type: date+ name: v1alpha2+ schema:+ openAPIV3Schema:+ description: Tor is the Schema for the tor API.+ properties:+ apiVersion:+ description: APIVersion defines the versioned schema of this representation of an object.+ type: string+ kind:+ description: Kind is a string value representing the REST resource this object represents.+ type: string+ metadata:+ type: object+ spec:+ description: TorSpec defines the desired state of Tor.+ properties:+ client:+ description: Client type. Enabled by default if server options are not set.+ properties:+ dns:+ description: DNSPort [address:]port|auto [isolation flags]+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ httptunnel:+ description: HTTPTunnelPort [address:]port|auto [isolation flags]+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ natd:+ description: NATDPort [address:]port|auto [isolation flags]+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ socks:+ description: SocksPort [address:]port|unix:path|auto [flags] [isolation flags]+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ trans:+ description: TransPort [address:]port|auto [isolation flags]+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ transproxytype:+ description: TransProxyType default|TPROXY|ipfw|pf-divert+ type: string+ type: object+ config:+ description: 'Custom/advanced options. Tor latest man page (asciidoc): https://gitlab.'+ type: string+ configMapKeyRef:+ description: Custom/advanced options read from a ConfigMaps.+ items:+ description: Selects a key from a ConfigMap.+ properties:+ key:+ description: The key to select.+ type: string+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: array+ control:+ description: Control. Enabled by default.+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ secret:+ description: Allowed control passwords as string+ items:+ type: string+ type: array+ secretRef:+ description: Allowed Control passwords as Secret object references Reference to a key of a se+ items:+ 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+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: array+ type: object+ extraArgs:+ description: Extra arguments to pass Tor's executable+ items:+ type: string+ type: array+ metrics:+ description: Metrics. Enabled by default.+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ replicas:+ default: 1+ description: Replicas.+ format: int32+ type: integer+ server:+ description: Server (ORPort)+ properties:+ address:+ default:+ - 0.0.0.0+ - '::'+ items:+ type: string+ type: array+ enable:+ type: boolean+ flags:+ items:+ type: string+ type: array+ policy:+ default:+ - accept 0.0.0.0/0+ - accept ::/0+ description: Policy [address:]port|unix:path|auto [flags]+ items:+ type: string+ type: array+ port:+ default: 0+ format: int32+ type: integer+ type: object+ serviceMonitor:+ default: false+ description: Create service monitor.+ type: boolean+ template:+ description: Template describes the pods that will be created.+ properties:+ metadata:+ description: Metadata of the pods created from this template.+ type: object+ resources:+ description: Default resources for containers+ 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.+ 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.+ type: object+ type: object+ spec:+ description: Spec defines the behavior of a pod.+ properties:+ activeDeadlineSeconds:+ description: Optional duration in seconds the pod may be active on the node relative to Start+ format: int64+ type: integer+ affinity:+ description: If specified, the pod's scheduling constraints+ properties:+ nodeAffinity:+ description: Describes node affinity scheduling rules for the pod.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: An empty preferred scheduling term matches all objects with implicit weight 0 (i+ properties:+ preference:+ description: A node selector term, associated with the corresponding weight.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ weight:+ description: Weight associated with matching the corresponding nodeSelectorTerm, in the range+ format: int32+ type: integer+ required:+ - preference+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ properties:+ nodeSelectorTerms:+ description: Required. A list of node selector terms. The terms are ORed.+ items:+ description: A null or empty node selector term matches no objects.+ properties:+ matchExpressions:+ description: A list of node selector requirements by node's labels.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ matchFields:+ description: A list of node selector requirements by node's fields.+ items:+ description: A node selector requirement is a selector that contains values, a key, and an op+ 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.+ type: string+ values:+ description: An array of string values.+ items:+ type: string+ type: array+ required:+ - key+ - operator+ type: object+ type: array+ type: object+ x-kubernetes-map-type: atomic+ type: array+ required:+ - nodeSelectorTerms+ type: object+ x-kubernetes-map-type: atomic+ type: object+ podAffinity:+ description: Describes pod affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity ex+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the affinity requirements specified by this field are not met at scheduling t+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ podAntiAffinity:+ description: Describes pod anti-affinity scheduling rules (e.g.+ properties:+ preferredDuringSchedulingIgnoredDuringExecution:+ description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affini+ items:+ description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-n+ properties:+ podAffinityTerm:+ description: Required. A pod affinity term, associated with the corresponding weight.+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ weight:+ description: 'weight associated with matching the corresponding podAffinityTerm, in the range '+ format: int32+ type: integer+ required:+ - podAffinityTerm+ - weight+ type: object+ type: array+ requiredDuringSchedulingIgnoredDuringExecution:+ description: If the anti-affinity requirements specified by this field are not met at schedul+ items:+ description: Defines a set of pods (namely those matching the labelSelector relative to the g+ properties:+ labelSelector:+ description: A label query over a set of resources, in this case pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaceSelector:+ description: A label query over the set of namespaces that the term applies to.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ namespaces:+ description: namespaces specifies a static list of namespace names that the term applies to.+ items:+ type: string+ type: array+ topologyKey:+ description: 'This pod should be co-located (affinity) or not co-located (anti-affinity) with '+ type: string+ required:+ - topologyKey+ type: object+ type: array+ type: object+ type: object+ automountServiceAccountToken:+ description: AutomountServiceAccountToken indicates whether a service account token should be+ type: boolean+ containers:+ description: List of containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ dnsConfig:+ description: Specifies the DNS parameters of a pod.+ properties:+ nameservers:+ description: A list of DNS name server IP addresses.+ items:+ type: string+ type: array+ options:+ description: A list of DNS resolver options.+ items:+ description: PodDNSConfigOption defines DNS resolver options of a pod.+ properties:+ name:+ description: Required.+ type: string+ value:+ type: string+ type: object+ type: array+ searches:+ description: A list of DNS search domains for host-name lookup.+ items:+ type: string+ type: array+ type: object+ dnsPolicy:+ description: Set DNS policy for the pod. Defaults to "ClusterFirst".+ type: string+ enableServiceLinks:+ description: EnableServiceLinks indicates whether information about services should be inject+ type: boolean+ ephemeralContainers:+ description: List of ephemeral containers run in this pod.+ items:+ description: An EphemeralContainer is a temporary container that you may add to an existing P+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Lifecycle is not allowed for ephemeral containers.+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the ephemeral container specified as a DNS_LABEL.+ type: string+ ports:+ description: Ports are not allowed for ephemeral containers.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Resources are not allowed for ephemeral containers.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: 'Optional: SecurityContext defines the security options the ephemeral container s'+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: Probes are not allowed for ephemeral containers.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ targetContainerName:+ description: If set, the name of the container from PodSpec that this ephemeral container tar+ type: string+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ hostAliases:+ description: 'HostAliases is an optional list of hosts and IPs that will be injected into the '+ items:+ description: HostAlias holds the mapping between IP and hostnames that will be injected as an+ properties:+ hostnames:+ description: Hostnames for the above IP address.+ items:+ type: string+ type: array+ ip:+ description: IP address of the host file entry.+ type: string+ type: object+ type: array+ hostIPC:+ description: 'Use the host''s ipc namespace. Optional: Default to false.'+ type: boolean+ hostNetwork:+ description: Host networking requested for this pod. Use the host's network namespace.+ type: boolean+ hostPID:+ description: 'Use the host''s pid namespace. Optional: Default to false.'+ type: boolean+ hostname:+ description: Specifies the hostname of the Pod If not specified, the pod's hostname will be s+ type: string+ imagePullSecrets:+ description: ImagePullSecrets is an optional list of references to secrets in the same namesp+ items:+ description: LocalObjectReference contains enough information to let you locate the reference+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ type: array+ initContainers:+ description: List of initialization containers belonging to the pod.+ items:+ description: A single application container that you want to run within a pod.+ properties:+ args:+ description: Arguments to the entrypoint.+ items:+ type: string+ type: array+ command:+ description: Entrypoint array. Not executed within a shell.+ items:+ type: string+ type: array+ env:+ description: List of environment variables to set in the container. Cannot be updated.+ 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 previously defined enviro+ type: string+ valueFrom:+ description: Source for the environment variable's value.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ fieldRef:+ description: 'Selects a field of the pod: supports metadata.name, metadata.'+ 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+ x-kubernetes-map-type: atomic+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ required:+ - key+ type: object+ x-kubernetes-map-type: atomic+ type: object+ required:+ - name+ type: object+ type: array+ envFrom:+ description: List of sources to populate environment variables in the container.+ 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.'+ type: string+ optional:+ description: Specify whether the ConfigMap must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ prefix:+ description: An optional identifier to prepend to each key in the ConfigMap.+ type: string+ secretRef:+ description: The Secret to select from+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ type: object+ type: array+ image:+ description: 'Docker image name. More info: https://kubernetes.'+ type: string+ imagePullPolicy:+ description: Image pull policy. One of Always, Never, IfNotPresent.+ type: string+ lifecycle:+ description: Actions that the management system should take in response to container lifecycl+ properties:+ postStart:+ description: PostStart is called immediately after a container is created.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ 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 req+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ 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.+ 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.+ 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: Deprecated.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ type: object+ type: object+ livenessProbe:+ description: Periodic probe of container liveness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ name:+ description: Name of the container specified as a DNS_LABEL.+ type: string+ ports:+ description: List of ports to expose from the container.+ 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.+ 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.+ format: int32+ type: integer+ name:+ description: If specified, this must be an IANA_SVC_NAME and unique within the pod.+ type: string+ protocol:+ default: TCP+ description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".+ type: string+ required:+ - containerPort+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - containerPort+ - protocol+ x-kubernetes-list-type: map+ readinessProbe:+ description: Periodic probe of container service readiness.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ resources:+ description: Compute Resources required by this container. Cannot be updated.+ 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.+ 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.+ type: object+ type: object+ securityContext:+ description: SecurityContext defines the security options the container should be run with.+ properties:+ allowPrivilegeEscalation:+ description: AllowPrivilegeEscalation controls whether a process can gain more privileges tha+ type: boolean+ capabilities:+ description: The capabilities to add/drop when running containers.+ 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.+ type: boolean+ procMount:+ description: procMount denotes the type of proc mount to use for the containers.+ 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.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to the 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 this container.+ properties:+ localhostProfile:+ description: localhostProfile indicates a profile defined in a file on the node should be use+ type: string+ type:+ description: type indicates which kind of seccomp profile will be applied.+ type: string+ required:+ - type+ type: object+ windowsOptions:+ description: The Windows specific settings applied to all containers.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ startupProbe:+ description: StartupProbe indicates that the Pod has successfully initialized.+ properties:+ exec:+ description: Exec specifies the action to take.+ properties:+ command:+ description: Command is the command line to execute inside the container, the working directo+ items:+ type: string+ type: array+ type: object+ failureThreshold:+ description: 'Minimum consecutive failures for the probe to be considered failed after having '+ format: int32+ type: integer+ grpc:+ description: GRPC specifies an action involving a GRPC port.+ properties:+ port:+ description: Port number of the gRPC service. Number must be in the range 1 to 65535.+ format: int32+ type: integer+ service:+ description: 'Service is the name of the service to place in the gRPC HealthCheckRequest (see '+ type: string+ required:+ - port+ type: object+ httpGet:+ description: HTTPGet specifies the http request to perform.+ properties:+ host:+ description: Host name to connect to, defaults to the pod IP.+ 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.+ 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 ini+ format: int32+ type: integer+ periodSeconds:+ description: How often (in seconds) to perform the probe. Default to 10 seconds.+ format: int32+ type: integer+ successThreshold:+ description: Minimum consecutive successes for the probe to be considered successful after ha+ format: int32+ type: integer+ tcpSocket:+ description: TCPSocket specifies an action involving a TCP port.+ 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.+ x-kubernetes-int-or-string: true+ required:+ - port+ type: object+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully upon probe fa+ format: int64+ type: integer+ timeoutSeconds:+ description: Number of seconds after which the probe times out. Defaults to 1 second.+ format: int32+ type: integer+ type: object+ stdin:+ description: Whether this container should allocate a buffer for stdin in the container runti+ type: boolean+ stdinOnce:+ description: Whether the container runtime should close the stdin channel after it has been o+ type: boolean+ terminationMessagePath:+ description: 'Optional: Path at which the file to which the container''s termination message wi'+ type: string+ terminationMessagePolicy:+ description: Indicate how the termination message should be populated.+ type: string+ tty:+ description: Whether this container should allocate a TTY for itself, also requires 'stdin' t+ type: boolean+ volumeDevices:+ description: volumeDevices is the list of block devices to be used by the container.+ items:+ description: volumeDevice describes a mapping of a raw block device within a container.+ properties:+ devicePath:+ description: devicePath is the path inside of the container that the device will be mapped to+ type: string+ name:+ description: name must match the name of a persistentVolumeClaim in the pod+ type: string+ required:+ - devicePath+ - name+ type: object+ type: array+ volumeMounts:+ description: Pod volumes to mount into the container's filesystem. Cannot be updated.+ 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.+ type: string+ mountPropagation:+ description: mountPropagation determines how mounts are propagated from the host to container+ 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).+ type: boolean+ subPath:+ description: Path within the volume from which the container's volume should be mounted.+ type: string+ subPathExpr:+ description: Expanded path within the volume from which the container's volume should be moun+ type: string+ required:+ - mountPath+ - name+ type: object+ type: array+ workingDir:+ description: Container's working directory.+ type: string+ required:+ - name+ type: object+ type: array+ nodeName:+ description: NodeName is a request to schedule this pod onto a specific node.+ type: string+ nodeSelector:+ additionalProperties:+ type: string+ description: NodeSelector is a selector which must be true for the pod to fit on a node.+ type: object+ x-kubernetes-map-type: atomic+ os:+ description: Specifies the OS of the containers in the pod.+ properties:+ name:+ description: Name is the name of the operating system.+ type: string+ required:+ - name+ type: object+ overhead:+ 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: Overhead represents the resource overhead associated with running a pod for a gi+ type: object+ preemptionPolicy:+ description: PreemptionPolicy is the Policy for preempting pods with lower priority.+ type: string+ priority:+ description: The priority value.+ format: int32+ type: integer+ priorityClassName:+ description: If specified, indicates the pod's priority.+ type: string+ readinessGates:+ description: If specified, all readiness gates will be evaluated for pod readiness.+ items:+ description: PodReadinessGate contains the reference to a pod condition+ properties:+ conditionType:+ description: ConditionType refers to a condition in the pod's condition list with matching ty+ type: string+ required:+ - conditionType+ type: object+ type: array+ restartPolicy:+ description: Restart policy for all containers within the pod.+ type: string+ runtimeClassName:+ description: RuntimeClassName refers to a RuntimeClass object in the node.k8s.+ type: string+ schedulerName:+ description: If specified, the pod will be dispatched by specified scheduler.+ type: string+ securityContext:+ description: SecurityContext holds pod-level security attributes and common container setting+ properties:+ fsGroup:+ description: A special supplemental group that applies to all containers in a pod.+ format: int64+ type: integer+ fsGroupChangePolicy:+ description: fsGroupChangePolicy defines behavior of changing ownership and permission of the+ type: string+ runAsGroup:+ description: The GID to run the entrypoint of the container process.+ format: int64+ type: integer+ runAsNonRoot:+ description: Indicates that the container must run as a non-root user.+ type: boolean+ runAsUser:+ description: The UID to run the entrypoint of the container process.+ format: int64+ type: integer+ seLinuxOptions:+ description: The SELinux context to be applied to all containers.+ 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 use+ type: string+ type:+ description: type indicates which kind of seccomp profile will 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+ items:+ format: int64+ type: integer+ type: array+ sysctls:+ description: Sysctls hold a list of namespaced sysctls used for the pod.+ 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.+ properties:+ gmsaCredentialSpec:+ description: GMSACredentialSpec is where the GMSA admission webhook (https://github.+ type: string+ gmsaCredentialSpecName:+ description: GMSACredentialSpecName is the name of the GMSA credential spec to use.+ type: string+ hostProcess:+ description: HostProcess determines if a container should be run as a 'Host Process' containe+ type: boolean+ runAsUserName:+ description: The UserName in Windows to run the entrypoint of the container process.+ type: string+ type: object+ type: object+ serviceAccount:+ description: DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.+ type: string+ serviceAccountName:+ description: ServiceAccountName is the name of the ServiceAccount to use to run this pod.+ type: string+ setHostnameAsFQDN:+ description: If true the pod's hostname will be configured as the pod's FQDN, rather than the+ type: boolean+ shareProcessNamespace:+ description: Share a single process namespace between all of the containers in a pod.+ type: boolean+ subdomain:+ description: If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.+ type: string+ terminationGracePeriodSeconds:+ description: Optional duration in seconds the pod needs to terminate gracefully.+ format: int64+ type: integer+ tolerations:+ description: If specified, the pod's tolerations.+ items:+ description: The pod this Toleration is attached to tolerates any taint that matches the trip+ properties:+ effect:+ description: Effect indicates the taint effect to match. Empty means match all taint effects.+ type: string+ key:+ description: Key is the taint key that the toleration applies to.+ type: string+ operator:+ description: Operator represents a key's relationship to the value.+ type: string+ tolerationSeconds:+ description: TolerationSeconds represents the period of time the toleration (which must be of+ format: int64+ type: integer+ value:+ description: Value is the taint value the toleration matches to.+ type: string+ type: object+ type: array+ topologySpreadConstraints:+ description: TopologySpreadConstraints describes how a group of pods ought to spread across t+ items:+ description: TopologySpreadConstraint specifies how to spread matching pods among the given t+ properties:+ labelSelector:+ description: LabelSelector is used to find matching pods.+ properties:+ matchExpressions:+ description: matchExpressions is a list of label selector requirements.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ maxSkew:+ description: MaxSkew describes the degree to which pods may be unevenly distributed.+ format: int32+ type: integer+ topologyKey:+ description: TopologyKey is the key of node labels.+ type: string+ whenUnsatisfiable:+ description: WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spr+ type: string+ required:+ - maxSkew+ - topologyKey+ - whenUnsatisfiable+ type: object+ type: array+ x-kubernetes-list-map-keys:+ - topologyKey+ - whenUnsatisfiable+ x-kubernetes-list-type: map+ volumes:+ description: List of volumes that can be mounted by containers belonging to the pod.+ items:+ description: 'Volume represents a named volume in a pod that may be accessed by any container '+ properties:+ awsElasticBlockStore:+ description: AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubel+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ readOnly:+ description: Specify "true" to force and set the ReadOnly property in VolumeMounts to "true".+ type: boolean+ volumeID:+ description: Unique ID of the persistent disk resource in AWS (Amazon EBS volume).+ type: string+ required:+ - volumeID+ type: object+ azureDisk:+ description: 'AzureDisk represents an Azure Data Disk mount on the host and bind mount to the '+ 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.+ type: string+ kind:+ description: 'Expected values Shared: multiple blob disks per storage account Dedicated: sing'+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ required:+ - diskName+ - diskURI+ type: object+ azureFile:+ description: AzureFile represents an Azure File Service mount on the host and bind mount to t+ properties:+ readOnly:+ description: Defaults to false (read/write).+ 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.'+ items:+ type: string+ 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).'+ type: boolean+ secretFile:+ description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user'+ type: string+ secretRef:+ description: 'Optional: SecretRef is reference to the authentication secret for User, default '+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'Optional: User is the rados user name, default is admin More info: https://examp'+ type: string+ required:+ - monitors+ type: object+ cinder:+ description: Cinder represents a cinder volume attached and mounted on kubelets host machine.+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: points to a secret object containing parameters used to connect to Ope'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeID:+ description: 'volume id used to identify the volume in cinder. More info: https://examples.'+ 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.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ csi:+ description: CSI (Container Storage Interface) represents ephemeral storage that is handled b+ properties:+ driver:+ description: Driver is the name of the CSI driver that handles this volume.+ type: string+ fsType:+ description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs".+ type: string+ nodePublishSecretRef:+ description: NodePublishSecretRef is a reference to the secret object containing sensitive in+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ readOnly:+ description: Specifies a read-only configuration for the volume.+ type: boolean+ volumeAttributes:+ additionalProperties:+ type: string+ description: VolumeAttributes stores driver-specific properties that are passed to the CSI dr+ type: object+ required:+ - driver+ type: object+ downwardAPI:+ description: DownwardAPI represents downward API about the pod that should populate this volu+ properties:+ defaultMode:+ description: 'Optional: mode bits to use on created files by default.'+ format: int32+ type: integer+ items:+ description: Items is a list of downward API volume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ required:+ - path+ type: object+ type: array+ type: object+ emptyDir:+ description: EmptyDir represents a temporary directory that shares a pod's lifetime.+ properties:+ medium:+ description: What type of storage medium should back this directory.+ type: string+ sizeLimit:+ anyOf:+ - type: integer+ - type: string+ description: Total amount of local storage required for this EmptyDir volume.+ 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.+ properties:+ volumeClaimTemplate:+ description: Will be used to create a stand-alone PVC to provision the volume.+ properties:+ metadata:+ description: May contain labels and annotations that will be copied into the PVC when creatin+ type: object+ spec:+ description: The specification for the PersistentVolumeClaim.+ properties:+ accessModes:+ description: AccessModes contains the desired access modes the volume should have.+ items:+ type: string+ type: array+ dataSource:+ description: 'This field can be used to specify either: * An existing VolumeSnapshot object (s'+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ dataSourceRef:+ description: Specifies the object from which to populate the volume with data, if a non-empty+ 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:+ - kind+ - name+ type: object+ x-kubernetes-map-type: atomic+ resources:+ description: Resources represents the minimum resources the volume should have.+ 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.+ 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.+ 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.+ items:+ description: A label selector requirement is a selector that contains values, a key, and an o+ 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.+ type: string+ values:+ description: values is an array of string values.+ 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.+ type: object+ type: object+ x-kubernetes-map-type: atomic+ storageClassName:+ description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.'+ type: string+ volumeMode:+ description: volumeMode defines what type of volume is required by the claim.+ 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 mach+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ lun:+ description: 'Optional: FC target lun number'+ format: int32+ type: integer+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ 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 o'+ items:+ type: string+ type: array+ type: object+ flexVolume:+ description: FlexVolume represents a generic volume resource that is provisioned/attached usi+ properties:+ driver:+ description: Driver is the name of the driver to use for this volume.+ type: string+ fsType:+ description: Filesystem type to mount.+ type: string+ options:+ additionalProperties:+ type: string+ description: 'Optional: Extra command options if any.'+ type: object+ readOnly:+ description: 'Optional: Defaults to false (read/write).'+ type: boolean+ secretRef:+ description: 'Optional: SecretRef is reference to the secret object containing sensitive infor'+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ required:+ - driver+ type: object+ flocker:+ description: Flocker represents a Flocker volume attached to a kubelet's host machine.+ properties:+ datasetName:+ description: Name of the dataset stored as metadata -> name on the dataset for Flocker should+ 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+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ partition:+ description: The partition in the volume that you want to mount.+ format: int32+ type: integer+ pdName:+ description: Unique name of the PD resource in GCE. Used to identify the disk in GCE.+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ required:+ - pdName+ type: object+ gitRepo:+ description: GitRepo represents a git repository at a particular revision.+ properties:+ directory:+ description: Target directory name. Must not contain or start with '..'. If '.+ 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.+ properties:+ endpoints:+ description: EndpointsName is the endpoint name that details Glusterfs topology.+ type: string+ path:+ description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the Glusterfs volume to be mounted with read-only permi+ type: boolean+ required:+ - endpoints+ - path+ type: object+ hostPath:+ description: HostPath represents a pre-existing file or directory on the host machine that is+ properties:+ path:+ description: Path of the directory on the host.+ type: string+ type:+ description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.'+ type: string+ required:+ - path+ type: object+ iscsi:+ description: ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host mac+ 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.+ type: string+ initiatorName:+ description: Custom iSCSI Initiator Name.+ 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.+ items:+ type: string+ type: array+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: CHAP Secret for iSCSI target and initiator authentication+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ targetPortal:+ description: iSCSI Target Portal.+ type: string+ required:+ - iqn+ - lun+ - targetPortal+ type: object+ name:+ description: Volume's name. Must be a DNS_LABEL and unique within the pod.+ type: string+ nfs:+ description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: '+ properties:+ path:+ description: 'Path that is exported by the NFS server. More info: https://kubernetes.'+ type: string+ readOnly:+ description: ReadOnly here will force the NFS export to be mounted with read-only permissions+ type: boolean+ server:+ description: Server is the hostname or IP address of the NFS server.+ type: string+ required:+ - path+ - server+ type: object+ persistentVolumeClaim:+ description: PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeCl+ properties:+ claimName:+ description: ClaimName is the name of a PersistentVolumeClaim in the same namespace as the po+ 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 '+ properties:+ fsType:+ description: Filesystem type to mount.+ 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 hos+ properties:+ fsType:+ description: FSType represents the filesystem type to mount Must be a filesystem type support+ type: string+ readOnly:+ description: Defaults to false (read/write).+ 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.+ 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 ConfigMa+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the ConfigMap or its keys must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ downwardAPI:+ description: information about the downwardAPI data to project+ properties:+ items:+ description: Items is a list of DownwardAPIVolume file+ items:+ description: DownwardAPIVolumeFile represents information to create the file containing the p+ properties:+ fieldRef:+ description: 'Required: Selects a field of the pod: only annotations, labels, name and namespa'+ 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+ x-kubernetes-map-type: atomic+ mode:+ description: 'Optional: mode bits used to set permissions on this file, must be an octal value'+ format: int32+ type: integer+ path:+ description: 'Required: Path is the relative path name of the file to be created.'+ type: string+ resourceFieldRef:+ description: 'Selects a resource of the container: only resources limits and requests (limits.'+ 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+ x-kubernetes-map-type: atomic+ 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 w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ type: string+ required:+ - key+ - path+ type: object+ type: array+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ optional:+ description: Specify whether the Secret or its key must be defined+ type: boolean+ type: object+ x-kubernetes-map-type: atomic+ serviceAccountToken:+ description: information about the serviceAccountToken data to project+ properties:+ audience:+ description: Audience is the intended audience of the token.+ type: string+ expirationSeconds:+ description: ExpirationSeconds is the requested duration of validity of the service account t+ format: int64+ type: integer+ path:+ description: Path is the path relative to the mount point of the file to project the token in+ 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 permiss+ type: boolean+ registry:+ description: 'Registry represents a single or multiple Quobyte Registry services specified as '+ type: string+ tenant:+ description: Tenant owning the given Quobyte volume in the Backend Used with dynamically prov+ 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 lifeti+ properties:+ fsType:+ description: Filesystem type of the volume that you want to mount.+ type: string+ image:+ description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.'+ type: string+ keyring:+ description: Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring.+ type: string+ monitors:+ description: 'A collection of Ceph monitors. More info: https://examples.k8s.'+ items:+ type: string+ type: array+ pool:+ description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.'+ type: string+ readOnly:+ description: ReadOnly here will force the ReadOnly setting in VolumeMounts.+ type: boolean+ secretRef:+ description: SecretRef is name of the authentication secret for RBDUser.+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ user:+ description: 'The rados user name. Default is admin. More info: https://examples.k8s.'+ type: string+ required:+ - image+ - monitors+ type: object+ scaleIO:+ description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernete+ properties:+ fsType:+ description: Filesystem type to mount.+ 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).+ type: boolean+ secretRef:+ description: SecretRef references to the secret for ScaleIO user and other sensitive informat+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ 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 ThinPro+ 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 wi+ type: string+ required:+ - gateway+ - secretRef+ - system+ type: object+ secret:+ description: Secret represents a secret that should populate this volume.+ properties:+ defaultMode:+ description: 'Optional: mode bits used to set permissions on created files by default.'+ format: int32+ type: integer+ items:+ description: If unspecified, each key-value pair in the Data field of the referenced Secret w+ 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.'+ format: int32+ type: integer+ path:+ description: The relative path of the file to map the key to. May not be an absolute path.+ 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.'+ type: string+ type: object+ storageos:+ description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ readOnly:+ description: Defaults to false (read/write).+ type: boolean+ secretRef:+ description: SecretRef specifies the secret to use for obtaining the StorageOS API credential+ properties:+ name:+ description: 'Name of the referent. More info: https://kubernetes.'+ type: string+ type: object+ x-kubernetes-map-type: atomic+ volumeName:+ description: VolumeName is the human-readable name of the StorageOS volume.+ type: string+ volumeNamespace:+ description: VolumeNamespace specifies the scope of the volume within StorageOS.+ type: string+ type: object+ vsphereVolume:+ description: 'VsphereVolume represents a vSphere volume attached and mounted on kubelets host '+ properties:+ fsType:+ description: Filesystem type to mount.+ type: string+ storagePolicyID:+ description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePol+ 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: null+ type: object+ type: object+ type: object+ status:+ description: TorStatus defines the observed state of Tor.+ properties:+ config:+ description: 'INSERT ADDITIONAL STATUS FIELD - define observed state of cluster Important: Run'+ type: string+ type: object+ type: object+ served: true+ storage: true+ subresources:+ status: {}+---+apiVersion: v1+kind: ServiceAccount+metadata:+ name: tor-controller-controller-manager+ namespace: tor-controller-system+---+apiVersion: rbac.authorization.k8s.io/v1+kind: Role+metadata:+ name: tor-controller-leader-election-role+ namespace: tor-controller-system+rules:+- apiGroups:+ - ""+ resources:+ - configmaps+ verbs:+ - get+ - list+ - watch+ - create+ - update+ - patch+ - delete+- apiGroups:+ - coordination.k8s.io+ resources:+ - leases+ verbs:+ - get+ - list+ - watch+ - create+ - update+ - patch+ - delete+- apiGroups:+ - ""+ resources:+ - events+ verbs:+ - create+ - patch+---+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ creationTimestamp: null+ name: tor-controller-manager-role+rules:+- apiGroups:+ - ""+ resources:+ - configmaps+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - ""+ resources:+ - events+ verbs:+ - create+ - patch+ - update+- apiGroups:+ - ""+ resources:+ - secrets+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - ""+ resources:+ - serviceaccounts+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - ""+ resources:+ - services+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - apiextensions.k8s.io+ resources:+ - customresourcedefinitions+ verbs:+ - get+ - list+ - watch+- apiGroups:+ - apps+ resources:+ - deployments+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - monitoring.coreos.com+ resources:+ - servicemonitors+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - rbac.authorization.k8s.io+ resources:+ - rolebindings+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - rbac.authorization.k8s.io+ resources:+ - roles+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionbalancedservices+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionbalancedservices/finalizers+ verbs:+ - update+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionbalancedservices/status+ verbs:+ - get+ - patch+ - update+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionservices+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionservices/finalizers+ verbs:+ - update+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - onionservices/status+ verbs:+ - get+ - patch+ - update+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - tors+ verbs:+ - create+ - delete+ - get+ - list+ - patch+ - update+ - watch+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - tors/finalizers+ verbs:+ - update+- apiGroups:+ - tor.k8s.torproject.org+ resources:+ - tors/status+ verbs:+ - get+ - patch+ - update+---+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: tor-controller-metrics-reader+rules:+- nonResourceURLs:+ - /metrics+ verbs:+ - get+---+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRole+metadata:+ name: tor-controller-proxy-role+rules:+- apiGroups:+ - authentication.k8s.io+ resources:+ - tokenreviews+ verbs:+ - create+- apiGroups:+ - authorization.k8s.io+ resources:+ - subjectaccessreviews+ verbs:+ - create+---+apiVersion: rbac.authorization.k8s.io/v1+kind: RoleBinding+metadata:+ name: tor-controller-leader-election-rolebinding+ namespace: tor-controller-system+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: Role+ name: tor-controller-leader-election-role+subjects:+- kind: ServiceAccount+ name: tor-controller-controller-manager+ namespace: tor-controller-system+---+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: tor-controller-manager-rolebinding+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: tor-controller-manager-role+subjects:+- kind: ServiceAccount+ name: tor-controller-controller-manager+ namespace: tor-controller-system+---+apiVersion: rbac.authorization.k8s.io/v1+kind: ClusterRoleBinding+metadata:+ name: tor-controller-proxy-rolebinding+roleRef:+ apiGroup: rbac.authorization.k8s.io+ kind: ClusterRole+ name: tor-controller-proxy-role+subjects:+- kind: ServiceAccount+ name: tor-controller-controller-manager+ namespace: tor-controller-system+---+apiVersion: v1+data:+ controller_manager_config.yaml: |+ apiVersion: config.k8s.torproject.org/v2+ kind: ProjectConfig+ meta:+ name: tor-controller-config+ health:+ healthProbeBindAddress: :8081+ metrics:+ bindAddress: 127.0.0.1:8080+ webhook:+ port: 9443+ leaderElection:+ leaderElect: true+ resourceName: 59806307.k8s.torproject.org+ torDaemon:+ image: quay.io/bugfest/tor-daemon:latest+ torDaemonManager:+ image: quay.io/bugfest/tor-daemon-manager:latest+ torOnionbalanceManager:+ image: quay.io/bugfest/tor-onionbalance-manager:latest+kind: ConfigMap+metadata:+ name: tor-controller-manager-config+ namespace: tor-controller-system+---+apiVersion: v1+kind: Service+metadata:+ labels:+ control-plane: controller-manager+ name: tor-controller-controller-manager-metrics-service+ namespace: tor-controller-system+spec:+ ports:+ - name: https+ port: 8443+ protocol: TCP+ targetPort: https+ selector:+ control-plane: controller-manager+---+apiVersion: apps/v1+kind: Deployment+metadata:+ labels:+ control-plane: controller-manager+ name: tor-controller-controller-manager+ namespace: tor-controller-system+spec:+ replicas: 1+ selector:+ matchLabels:+ control-plane: controller-manager+ template:+ metadata:+ annotations:+ kubectl.kubernetes.io/default-container: manager+ labels:+ control-plane: controller-manager+ spec:+ containers:+ - args:+ - --config=/controller_manager_config.yaml+ command:+ - /app/manager+ image: quay.io/bugfest/tor-controller:latest+ imagePullPolicy: Always+ livenessProbe:+ httpGet:+ path: /healthz+ port: 8081+ initialDelaySeconds: 15+ periodSeconds: 20+ name: manager+ readinessProbe:+ httpGet:+ path: /readyz+ port: 8081+ initialDelaySeconds: 5+ periodSeconds: 10+ resources:+ limits:+ cpu: 500m+ memory: 128Mi+ requests:+ cpu: 10m+ memory: 64Mi+ securityContext:+ allowPrivilegeEscalation: false+ volumeMounts:+ - mountPath: /controller_manager_config.yaml+ name: manager-config+ subPath: controller_manager_config.yaml+ - args:+ - --secure-listen-address=0.0.0.0:8443+ - --upstream=http://127.0.0.1:8080/+ - --logtostderr=true+ - --v=10+ image: gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0+ name: kube-rbac-proxy+ ports:+ - containerPort: 8443+ name: https+ protocol: TCP+ securityContext:+ runAsNonRoot: true+ serviceAccountName: tor-controller-controller-manager+ terminationGracePeriodSeconds: 10+ volumes:+ - configMap:+ name: tor-controller-manager-config+ name: manager-config
@@ -0,0 +1,317 @@+package main++import (+ "embed"+ "encoding/json"+ "errors"+ "flag"+ "fmt"+ "io"+ "log"+ "os"++ "github.com/yokecd/yoke/pkg/flight"+ externaldns "go.techaro.lol/hypercloud/helm/external-dns"+ "k8s.io/apimachinery/pkg/util/yaml"++ acmev1 "github.com/cert-manager/cert-manager/pkg/apis/acme/v1"+ certmanagerv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"+ certmanagermetav1 "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"+ corev1 "k8s.io/api/core/v1"+ metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"+ "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"+)++type Config struct {+ ACME *ACME `json:"acme"`+ ExternalDNS map[string]any `json:"externalDNS"`+ ExternalIP IP `json:"externalIP"`+}++type IP struct {+ IPv4 *string `json:"ipv4,omitempty"`+ IPv6 *string `json:"ipv6,omitempty"`+}++func (ip IP) Valid() error {+ var errs []error+ if ip.IPv4 == nil && ip.IPv6 == nil {+ errs = append(errs, fmt.Errorf("ipv4 or ipv6 is required"))+ }+ if len(errs) > 0 {+ return fmt.Errorf("ip is invalid: %v", errors.Join(errs...))+ }++ return nil+}++func (c Config) Valid() error {+ var errs []error+ if c.ACME == nil {+ errs = append(errs, fmt.Errorf("acme is required"))+ } else {+ if err := c.ACME.Valid(); err != nil {+ errs = append(errs, fmt.Errorf("acme is invalid: %w", err))+ }+ }+ if c.ExternalDNS == nil {+ errs = append(errs, fmt.Errorf("externalDNS is required"))+ }+ if c.ExternalDNS["extraArgs"] == nil {+ errs = append(errs, fmt.Errorf("externalDNS.extraArgs is required"))+ }+ if _, ok := c.ExternalDNS["extraArgs"].([]any); !ok {+ errs = append(errs, fmt.Errorf("externalDNS.extraArgs must be a list of strings, it is %T", c.ExternalDNS["extraArgs"]))+ }+ if err := c.ExternalIP.Valid(); err != nil {+ errs = append(errs, fmt.Errorf("externalIP is invalid: %w", err))+ }+ if len(errs) > 0 {+ return fmt.Errorf("config is invalid: %v", errors.Join(errs...))+ }++ return nil+}++type ACME struct {+ Email string `json:"email"`+ Directories []ACMEDirectory `json:"directories"`+ Solvers []acmev1.ACMEChallengeSolver `json:"solvers"`+}++func (acme ACME) Valid() error {+ var errs []error+ if acme.Email == "" {+ errs = append(errs, fmt.Errorf("email is required"))+ }+ if len(acme.Directories) == 0 {+ errs = append(errs, fmt.Errorf("directories are required"))+ }+ for _, directory := range acme.Directories {+ if err := directory.Valid(); err != nil {+ errs = append(errs, fmt.Errorf("directory %s is invalid: %w", directory.Name, err))+ }+ }++ if len(errs) > 0 {+ return fmt.Errorf("acme is invalid: %v", errors.Join(errs...))+ }++ return nil+}++type ACMEDirectory struct {+ URL string `json:"url"`+ Name string `json:"name"`+}++func (ad ACMEDirectory) Valid() error {+ var errs []error+ if ad.URL == "" {+ errs = append(errs, fmt.Errorf("url is required"))+ }+ if ad.Name == "" {+ errs = append(errs, fmt.Errorf("name is required"))+ }+ if len(errs) > 0 {+ return fmt.Errorf("acme directory is invalid: %v", errors.Join(errs...))+ }++ return nil+}++//go:embed data/*.yaml+var data embed.FS++func main() {+ flag.Parse()+ if err := run(); err != nil {+ log.Fatal(err)+ }+}++func run() error {+ var cfg Config+ fin, err := data.Open("data/default-config.yaml")+ if err != nil {+ return fmt.Errorf("failed to open default-config.yaml: %w", err)+ }+ defer fin.Close()++ if err := yaml.NewYAMLToJSONDecoder(fin).Decode(&cfg); err != nil {+ return fmt.Errorf("failed to decode default-config.yaml: %w", err)+ }++ if err := yaml.NewYAMLToJSONDecoder(os.Stdin).Decode(&cfg); err != nil && err != io.EOF {+ return fmt.Errorf("failed to decode stdin: %w", err)+ }++ if err := cfg.Valid(); err != nil {+ return fmt.Errorf("config is invalid: %w", err)+ }++ var result []any++ result = append(result, []any{corev1.Namespace{+ TypeMeta: metav1.TypeMeta{+ APIVersion: "v1",+ Kind: "Namespace",+ },+ ObjectMeta: metav1.ObjectMeta{+ Name: "tor-controller-system",+ },+ }})++ fin, err = data.Open("data/tor-controller.yaml")+ if err != nil {+ return fmt.Errorf("failed to open tor-controller.yaml: %w", err)+ }+ defer fin.Close()++ torController, err := readEveryDocument(fin)+ if err != nil {+ return fmt.Errorf("failed to read tor-controller.yaml: %w", err)+ }++ result = append(result, torController)++ result = append(result, []any{corev1.Namespace{+ TypeMeta: metav1.TypeMeta{+ APIVersion: "v1",+ Kind: "Namespace",+ },+ ObjectMeta: metav1.ObjectMeta{+ Name: "cert-manager",+ },+ }})++ fin, err = data.Open("data/cert-manager.yaml")+ if err != nil {+ return fmt.Errorf("failed to open cert-manager.yaml: %w", err)+ }+ defer fin.Close()++ certManager, err := readEveryDocument(fin)+ if err != nil {+ return fmt.Errorf("failed to read cert-manager.yaml: %w", err)+ }++ result = append(result, certManager)++ var directories []any++ for _, directory := range cfg.ACME.Directories {+ directories = append(directories, makeClusterIssuer(cfg.ACME, directory))+ }++ result = append(result, directories)++ fin, err = data.Open("data/external-dns-crd.yaml")+ if err != nil {+ return fmt.Errorf("failed to open external-dns-crd.yaml: %w", err)+ }+ defer fin.Close()++ extDNSCRD, err := readEveryDocument(fin)+ if err != nil {+ return fmt.Errorf("failed to read external-dns-crd.yaml: %w", err)+ }++ result = append(result, extDNSCRD)++ result = append(result, []any{corev1.Namespace{+ TypeMeta: metav1.TypeMeta{+ APIVersion: "v1",+ Kind: "Namespace",+ },+ ObjectMeta: metav1.ObjectMeta{+ Name: "external-dns",+ },+ }})++ extraArgs, ok := cfg.ExternalDNS["extraArgs"].([]any)+ if !ok {+ return fmt.Errorf("externalDNS.extraArgs must be a list of something")+ }++ for _, recordType := range []string{"A", "AAAA", "CNAME", "TXT"} {+ extraArgs = append(extraArgs, "--managed-record-types="+recordType)+ }++ if cfg.ExternalIP.IPv4 != nil {+ extraArgs = append(extraArgs, "--default-targets="+*cfg.ExternalIP.IPv4)+ }+ if cfg.ExternalIP.IPv6 != nil {+ extraArgs = append(extraArgs, "--default-targets="+*cfg.ExternalIP.IPv6)+ }++ cfg.ExternalDNS["extraArgs"] = extraArgs++ externalDNS, err := externaldns.RenderChart(flight.Release(), "external-dns", cfg.ExternalDNS)+ if err != nil {+ return fmt.Errorf("failed to render external-dns chart: %w", err)+ }++ // Filter out PodDisruptionBudgets from externalDNS+ var filteredExternalDNS []*unstructured.Unstructured+ for _, obj := range externalDNS {+ if obj.GetKind() == "PodDisruptionBudget" {+ // Skip PodDisruptionBudgets+ continue+ }+ filteredExternalDNS = append(filteredExternalDNS, obj)+ }++ result = append(result, filteredExternalDNS)++ return json.NewEncoder(os.Stdout).Encode(result)+}++func makeClusterIssuer(acme *ACME, directory ACMEDirectory) any {+ return certmanagerv1.ClusterIssuer{+ TypeMeta: metav1.TypeMeta{+ APIVersion: certmanagerv1.SchemeGroupVersion.Identifier(),+ Kind: "ClusterIssuer",+ },+ ObjectMeta: metav1.ObjectMeta{+ Name: directory.Name,+ },+ Spec: certmanagerv1.IssuerSpec{+ IssuerConfig: certmanagerv1.IssuerConfig{+ ACME: &acmev1.ACMEIssuer{+ Server: directory.URL,+ Email: acme.Email,+ PrivateKey: certmanagermetav1.SecretKeySelector{+ LocalObjectReference: certmanagermetav1.LocalObjectReference{+ Name: directory.Name + "-private-key",+ },+ },+ Solvers: acme.Solvers,+ },+ },+ },+ }+}++func readEveryDocument(r io.Reader) ([]unstructured.Unstructured, error) {+ var result []unstructured.Unstructured++ dec := yaml.NewYAMLToJSONDecoder(r)+ for {+ var doc unstructured.Unstructured+ if err := dec.Decode(&doc); err != nil {+ if err == io.EOF {+ break+ }+ return nil, err+ }++ if doc.GetAPIVersion() == "" {+ continue+ }++ result = append(result, doc)+ }++ return result, nil+}
ADDED
go.mod
ADDED
go.mod
@@ -0,0 +1,71 @@+module go.techaro.lol/hypercloud++go 1.24.0++require (+ github.com/cert-manager/cert-manager v1.17.1+ github.com/yokecd/yoke v0.10.0+ k8s.io/api v0.32.2+ k8s.io/apimachinery v0.32.2+)++require (+ dario.cat/mergo v1.0.1 // indirect+ github.com/BurntSushi/toml v1.4.0 // indirect+ github.com/Masterminds/goutils v1.1.1 // indirect+ github.com/Masterminds/semver/v3 v3.3.1 // indirect+ github.com/Masterminds/sprig/v3 v3.3.0 // indirect+ github.com/cyphar/filepath-securejoin v0.4.1 // indirect+ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect+ github.com/davidmdm/ansi v0.0.6 // indirect+ github.com/davidmdm/x/xerr v0.0.3 // indirect+ github.com/emicklei/go-restful/v3 v3.12.1 // indirect+ github.com/fxamacker/cbor/v2 v2.7.0 // indirect+ github.com/go-logr/logr v1.4.2 // indirect+ github.com/go-openapi/jsonpointer v0.21.0 // indirect+ github.com/go-openapi/jsonreference v0.21.0 // indirect+ github.com/go-openapi/swag v0.23.0 // indirect+ github.com/gobwas/glob v0.2.3 // indirect+ github.com/gogo/protobuf v1.3.2 // indirect+ github.com/golang/protobuf v1.5.4 // indirect+ github.com/google/gnostic-models v0.6.9 // indirect+ github.com/google/go-cmp v0.6.0 // indirect+ github.com/google/gofuzz v1.2.0 // indirect+ github.com/google/uuid v1.6.0 // indirect+ github.com/huandu/xstrings v1.5.0 // indirect+ github.com/josharian/intern v1.0.0 // indirect+ github.com/json-iterator/go v1.1.12 // indirect+ github.com/mailru/easyjson v0.9.0 // indirect+ github.com/mitchellh/copystructure v1.2.0 // indirect+ github.com/mitchellh/reflectwalk v1.0.2 // indirect+ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect+ github.com/modern-go/reflect2 v1.0.2 // indirect+ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect+ github.com/pkg/errors v0.9.1 // indirect+ github.com/shopspring/decimal v1.4.0 // indirect+ github.com/spf13/cast v1.7.1 // indirect+ github.com/x448/float16 v0.8.4 // indirect+ github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect+ github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect+ github.com/xeipuuv/gojsonschema v1.2.0 // indirect+ golang.org/x/crypto v0.33.0 // indirect+ golang.org/x/net v0.35.0 // indirect+ golang.org/x/oauth2 v0.26.0 // indirect+ golang.org/x/sys v0.30.0 // indirect+ golang.org/x/term v0.29.0 // indirect+ golang.org/x/text v0.22.0 // indirect+ golang.org/x/time v0.10.0 // indirect+ google.golang.org/protobuf v1.36.5 // indirect+ gopkg.in/inf.v0 v0.9.1 // indirect+ gopkg.in/yaml.v3 v3.0.1 // indirect+ helm.sh/helm/v3 v3.17.1 // indirect+ k8s.io/apiextensions-apiserver v0.32.2 // indirect+ k8s.io/client-go v0.32.2 // indirect+ k8s.io/klog/v2 v2.130.1 // indirect+ k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect+ k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect+ sigs.k8s.io/gateway-api v1.1.0 // indirect+ sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect+ sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect+ sigs.k8s.io/yaml v1.4.0 // indirect+)
ADDED
go.sum
ADDED
go.sum
@@ -0,0 +1,193 @@+dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s=+dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=+github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 h1:bvDV9vkmnHYOMsOr4WLk+Vo07yKIzd94sVoIqshQ4bU=+github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8=+github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0=+github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=+github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=+github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=+github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=+github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=+github.com/Masterminds/sprig/v3 v3.3.0 h1:mQh0Yrg1XPo6vjYXgtf5OtijNAKJRNcTdOOGZe3tPhs=+github.com/Masterminds/sprig/v3 v3.3.0/go.mod h1:Zy1iXRYNqNLUolqCpL4uhk6SHUMAOSCzdgBfDb35Lz0=+github.com/cert-manager/cert-manager v1.17.1 h1:Aig+lWMoLsmpGd9TOlTvO4t0Ah3D+/vGB37x/f+ZKt0=+github.com/cert-manager/cert-manager v1.17.1/go.mod h1:zeG4D+AdzqA7hFMNpYCJgcQ2VOfFNBa+Jzm3kAwiDU4=+github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s=+github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI=+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=+github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=+github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=+github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=+github.com/davidmdm/ansi v0.0.6 h1:syP/vheqacPk4lI4c+Z01IKHbOax4FpcLu5sYXMIHUg=+github.com/davidmdm/ansi v0.0.6/go.mod h1:En92c514AKUGa+HLY43mQfVImaVtBtAr5fako6mQa6w=+github.com/davidmdm/x/xerr v0.0.3 h1:WwHvo6qzR+eRmHq69Ftgb7PL9832iwy313XpQyJRGtM=+github.com/davidmdm/x/xerr v0.0.3/go.mod h1:nEfdhUc3O/FmGUGLiJp2hHRhBeANkon7PJexIQ1DlAE=+github.com/emicklei/go-restful/v3 v3.12.1 h1:PJMDIM/ak7btuL8Ex0iYET9hxM3CI2sjZtzpL63nKAU=+github.com/emicklei/go-restful/v3 v3.12.1/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=+github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8=+github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=+github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E=+github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ=+github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=+github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=+github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1rr/O9oNQ=+github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY=+github.com/go-openapi/jsonreference v0.21.0 h1:Rs+Y7hSXT83Jacb7kFyjn4ijOuVGSvOdF2+tg1TRrwQ=+github.com/go-openapi/jsonreference v0.21.0/go.mod h1:LmZmgsrTkVg9LG4EaHeY8cBDslNPMo06cago5JNLkm4=+github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE=+github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ=+github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=+github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=+github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=+github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8=+github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=+github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=+github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=+github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=+github.com/google/gnostic-models v0.6.9 h1:MU/8wDLif2qCXZmzncUQ/BOfxWfthHi63KqpoNbWqVw=+github.com/google/gnostic-models v0.6.9/go.mod h1:CiWsm0s6BSQd1hRn8/QmxqB6BesYcbSZxsz9b0KuDBw=+github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=+github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=+github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=+github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=+github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=+github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=+github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db h1:097atOisP2aRj7vFgYQBbFN4U4JNXUNYpxael3UzMyo=+github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db/go.mod h1:vavhavw2zAxS5dIdcRluK6cSGGPlZynqzFM8NdvU144=+github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=+github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=+github.com/huandu/xstrings v1.5.0 h1:2ag3IFq9ZDANvthTwTiqSSZLjDc+BedvHPAp5tJy2TI=+github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=+github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=+github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=+github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=+github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=+github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=+github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=+github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=+github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=+github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=+github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=+github.com/mailru/easyjson v0.9.0 h1:PrnmzHw7262yW8sTBwxi1PdJA3Iw/EKBa8psRf7d9a4=+github.com/mailru/easyjson v0.9.0/go.mod h1:1+xMtQp2MRNVL/V1bOzuP3aP8VNwRW55fQUto+XFtTU=+github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=+github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s=+github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ=+github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw=+github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=+github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=+github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=+github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=+github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=+github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=+github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=+github.com/onsi/ginkgo/v2 v2.21.0 h1:7rg/4f3rB88pb5obDgNZrNHrQ4e6WpjonchcpuBRnZM=+github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo=+github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=+github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog=+github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=+github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=+github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=+github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=+github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=+github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=+github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=+github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME=+github.com/spf13/cast v1.7.1 h1:cuNEagBQEHWN1FnbGEjCXL2szYEXqfJPbP2HNUaca9Y=+github.com/spf13/cast v1.7.1/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=+github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=+github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=+github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=+github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=+github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=+github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=+github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=+github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=+github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=+github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo=+github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=+github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=+github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=+github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=+github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=+github.com/yokecd/yoke v0.10.0 h1:6z957CuL8JsWHRtmn6fZOlGdzpeihQy5xwOJRcBUcto=+github.com/yokecd/yoke v0.10.0/go.mod h1:zTllkmHi1o9YScqs/laL3vGO+KZIB65nea4FWiFSQWU=+github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=+github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=+golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=+golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=+golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=+golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=+golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=+golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=+golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=+golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=+golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=+golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=+golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=+golang.org/x/oauth2 v0.26.0 h1:afQXWNNaeC4nvZ0Ed9XvCCzXM6UHJG7iCg0W4fPqSBE=+golang.org/x/oauth2 v0.26.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=+golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=+golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=+golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=+golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=+golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=+golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=+golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=+golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=+golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=+golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=+golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=+golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=+golang.org/x/time v0.10.0 h1:3usCWA8tQn0L8+hFJQNgzpWbd89begxN66o1Ojdn5L4=+golang.org/x/time v0.10.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=+golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=+golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=+golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=+golang.org/x/tools v0.30.0 h1:BgcpHewrV5AUp2G9MebG4XPFI1E2W41zU1SaqVA9vJY=+golang.org/x/tools v0.30.0/go.mod h1:c347cR/OJfw5TI+GfX7RUPNMdDRRbjvYTS0jPyvsVtY=+golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=+golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=+golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=+google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=+google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=+gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=+gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=+gopkg.in/evanphx/json-patch.v4 v4.12.0 h1:n6jtcsulIzXPJaxegRbvFNNrZDjbij7ny3gmSPG+6V4=+gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M=+gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=+gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=+gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=+helm.sh/helm/v3 v3.17.1 h1:gzVoAD+qVuoJU6KDMSAeo0xRJ6N1znRxz3wyuXRmJDk=+helm.sh/helm/v3 v3.17.1/go.mod h1:nvreuhuR+j78NkQcLC3TYoprCKStLyw5P4T7E5itv2w=+k8s.io/api v0.32.2 h1:bZrMLEkgizC24G9eViHGOPbW+aRo9duEISRIJKfdJuw=+k8s.io/api v0.32.2/go.mod h1:hKlhk4x1sJyYnHENsrdCWw31FEmCijNGPJO5WzHiJ6Y=+k8s.io/apiextensions-apiserver v0.32.2 h1:2YMk285jWMk2188V2AERy5yDwBYrjgWYggscghPCvV4=+k8s.io/apiextensions-apiserver v0.32.2/go.mod h1:GPwf8sph7YlJT3H6aKUWtd0E+oyShk/YHWQHf/OOgCA=+k8s.io/apimachinery v0.32.2 h1:yoQBR9ZGkA6Rgmhbp/yuT9/g+4lxtsGYwW6dR6BDPLQ=+k8s.io/apimachinery v0.32.2/go.mod h1:GpHVgxoKlTxClKcteaeuF1Ul/lDVb74KpZcxcmLDElE=+k8s.io/client-go v0.32.2 h1:4dYCD4Nz+9RApM2b/3BtVvBHw54QjMFUl1OLcJG5yOA=+k8s.io/client-go v0.32.2/go.mod h1:fpZ4oJXclZ3r2nDOv+Ux3XcJutfrwjKTCHz2H3sww94=+k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=+k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=+k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 h1:hcha5B1kVACrLujCKLbr8XWMxCxzQx42DY8QKYJrDLg=+k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7/go.mod h1:GewRfANuJ70iYzvn+i4lezLDAFzvjxZYK1gn1lWcfas=+k8s.io/utils v0.0.0-20241210054802-24370beab758 h1:sdbE21q2nlQtFh65saZY+rRM6x6aJJI8IUa1AmH/qa0=+k8s.io/utils v0.0.0-20241210054802-24370beab758/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=+sigs.k8s.io/gateway-api v1.1.0 h1:DsLDXCi6jR+Xz8/xd0Z1PYl2Pn0TyaFMOPPZIj4inDM=+sigs.k8s.io/gateway-api v1.1.0/go.mod h1:ZH4lHrL2sDi0FHZ9jjneb8kKnGzFWyrTya35sWUTrRs=+sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=+sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=+sigs.k8s.io/structured-merge-diff/v4 v4.5.0 h1:nbCitCK2hfnhyiKo6uf2HxUPTCodY6Qaf85SbDIaMBk=+sigs.k8s.io/structured-merge-diff/v4 v4.5.0/go.mod h1:N8f93tFZh9U6vpxwRArLiikrE5/2tiu1w1AGfACIGE4=+sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=+sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=
@@ -0,0 +1,23 @@+package externaldns++import (+ _ "embed"+ "fmt"++ "github.com/yokecd/yoke/pkg/helm"+ "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"+)++//go:embed external-dns-1.15.2.tgz+var archive []byte++// RenderChart renders the chart downloaded from https://kubernetes-sigs.github.io/external-dns/external-dns+// Producing version: 1.15.2+func RenderChart(release, namespace string, values map[string]any) ([]*unstructured.Unstructured, error) {+ chart, err := helm.LoadChartFromZippedArchive(archive)+ if err != nil {+ return nil, fmt.Errorf("failed to load chart from zipped archive: %w", err)+ }++ return chart.Render(release, namespace, values)+}
ADDED
helm/vcluster/flight.go
ADDED
helm/vcluster/flight.go
@@ -0,0 +1,23 @@+package vcluster++import (+ _ "embed"+ "fmt"++ "github.com/yokecd/yoke/pkg/helm"+ "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"+)++//go:embed vcluster-0.23.0.tgz+var archive []byte++// RenderChart renders the chart downloaded from https://charts.loft.sh/vcluster+// Producing version: 0.23.0+func RenderChart(release, namespace string, values map[string]any) ([]*unstructured.Unstructured, error) {+ chart, err := helm.LoadChartFromZippedArchive(archive)+ if err != nil {+ return nil, fmt.Errorf("failed to load chart from zipped archive: %w", err)+ }++ return chart.Render(release, namespace, values)+}