1 package v1 2 3 // This file contains consts that are not shared between components and set just internally. 4 // They will likely be removed in (near) future. 5 6 const ( 7 // DeployerPodCreatedAtAnnotation is an annotation on a deployment that 8 // records the time in RFC3339 format of when the deployer pod for this particular 9 // deployment was created. 10 // This is set by deployer controller, but not consumed by any command or internally. 11 // DEPRECATED: will be removed soon 12 DeployerPodCreatedAtAnnotation = "openshift.io/deployer-pod.created-at" 13 14 // DeployerPodStartedAtAnnotation is an annotation on a deployment that 15 // records the time in RFC3339 format of when the deployer pod for this particular 16 // deployment was started. 17 // This is set by deployer controller, but not consumed by any command or internally. 18 // DEPRECATED: will be removed soon 19 DeployerPodStartedAtAnnotation = "openshift.io/deployer-pod.started-at" 20 21 // DeployerPodCompletedAtAnnotation is an annotation on deployment that records 22 // the time in RFC3339 format of when the deployer pod finished. 23 // This is set by deployer controller, but not consumed by any command or internally. 24 // DEPRECATED: will be removed soon 25 DeployerPodCompletedAtAnnotation = "openshift.io/deployer-pod.completed-at" 26 27 // DesiredReplicasAnnotation represents the desired number of replicas for a 28 // new deployment. 29 // This is set by deployer controller, but not consumed by any command or internally. 30 // DEPRECATED: will be removed soon 31 DesiredReplicasAnnotation = "kubectl.kubernetes.io/desired-replicas" 32 33 // DeploymentAnnotation is an annotation on a deployer Pod. The annotation value is the name 34 // of the deployment (a ReplicationController) on which the deployer Pod acts. 35 // This is set by deployer controller and consumed internally and in oc adm top command. 36 // DEPRECATED: will be removed soon 37 DeploymentAnnotation = "openshift.io/deployment.name" 38 ) 39