Documentation
¶
Index ¶
Constants ¶
View Source
const ( // ForcedRotationReasonAnnotationName is the name of an annotation indicating // the most recent reason that a service CA rotation was forced. The annotation // will be set on the signing secret after the successful completion of a forced // rotation. ForcedRotationReasonAnnotationName = "service-ca.operators.openshift.io/forced-rotation-reason" // BundleDataKey is the key used to identify the CA bundle in the signing // secret. BundleDataKey = "ca-bundle.crt" // IntermediateDataKey is the key used to identify the post-rotation // trust-bridging certificate in the signing secret. IntermediateDataKey = "intermediate-ca.crt" // OwningJiraComponent is the name of the jira component owns the operator, operand, and the resource its creating OwningJiraComponent = "service-ca" )
Constants for Service CA
View Source
const ( InjectCABundleAnnotationName = "service.beta.openshift.io/inject-cabundle" AlphaInjectCABundleAnnotationName = "service.alpha.openshift.io/inject-cabundle" InjectionDataKey = "service-ca.crt" // VulnerableLegacyInjectCABundleAnnotationName is only honored on configmaps intended for bound token injection in // migrated/upgraded clusters that have not switched to a tighter verification bundle. VulnerableLegacyInjectCABundleAnnotationName = "service.alpha.openshift.io/inject-vulnerable-legacy-cabundle" )
Constants for CA bundle injection
View Source
const ( // ServingCertSecretAnnotation stores the name of the secret to generate into. ServingCertSecretAnnotation = "service.beta.openshift.io/serving-cert-secret-name" AlphaServingCertSecretAnnotation = "service.alpha.openshift.io/serving-cert-secret-name" // ServingCertCreatedByAnnotation stores the of the signer common name. This could be used later to see if the // services need to have the the serving certs regenerated. The presence and matching of this annotation prevents // regeneration ServingCertCreatedByAnnotation = "service.beta.openshift.io/serving-cert-signed-by" AlphaServingCertCreatedByAnnotation = "service.alpha.openshift.io/serving-cert-signed-by" // ServingCertErrorAnnotation stores the error that caused cert generation failures. ServingCertErrorAnnotation = "service.beta.openshift.io/serving-cert-generation-error" AlphaServingCertErrorAnnotation = "service.alpha.openshift.io/serving-cert-generation-error" // ServingCertErrorNumAnnotation stores how many consecutive errors we've hit. A value of the maxRetries will prevent // the controller from reattempting until it is cleared. ServingCertErrorNumAnnotation = "service.beta.openshift.io/serving-cert-generation-error-num" AlphaServingCertErrorNumAnnotation = "service.alpha.openshift.io/serving-cert-generation-error-num" )
Annotations on service
View Source
const ( // ServiceUIDAnnotation is an annotation on a secret that indicates which service created it, by UID ServiceUIDAnnotation = "service.beta.openshift.io/originating-service-uid" AlphaServiceUIDAnnotation = "service.alpha.openshift.io/originating-service-uid" // ServiceNameAnnotation is an annotation on a secret that indicates which service created it, by Name to allow reverse lookups on services // for comparison against UIDs ServiceNameAnnotation = "service.beta.openshift.io/originating-service-name" AlphaServiceNameAnnotation = "service.alpha.openshift.io/originating-service-name" // ServingCertExpiryAnnotation is an annotation that holds the expiry time of the certificate. It accepts time in the // RFC3339 format: 2018-11-29T17:44:39Z ServingCertExpiryAnnotation = "service.beta.openshift.io/expiry" AlphaServingCertExpiryAnnotation = "service.alpha.openshift.io/expiry" )
Annotations on secret
View Source
const ( // Config instance OperatorConfigInstanceName = "cluster" // ConfigMaps SigningCABundleConfigMapName = "signing-cabundle" // SAs ServiceCASAName = "service-ca" // Deployments ServiceCADeploymentName = "service-ca" // Secrets ServiceCASecretName = "signing-key" )
Common controller/operator resource names
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.