File: deprecated_consts.go

package info (click to toggle)
golang-github-openshift-api 4.0%2Bgit20190508.81d064c-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 14,040 kB
  • sloc: sh: 171; makefile: 32
file content (38 lines) | stat: -rw-r--r-- 1,929 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package v1

// This file contains consts that are not shared between components and set just internally.
// They will likely be removed in (near) future.

const (
	// DeployerPodCreatedAtAnnotation is an annotation on a deployment that
	// records the time in RFC3339 format of when the deployer pod for this particular
	// deployment was created.
	// This is set by deployer controller, but not consumed by any command or internally.
	// DEPRECATED: will be removed soon
	DeployerPodCreatedAtAnnotation = "openshift.io/deployer-pod.created-at"

	// DeployerPodStartedAtAnnotation is an annotation on a deployment that
	// records the time in RFC3339 format of when the deployer pod for this particular
	// deployment was started.
	// This is set by deployer controller, but not consumed by any command or internally.
	// DEPRECATED: will be removed soon
	DeployerPodStartedAtAnnotation = "openshift.io/deployer-pod.started-at"

	// DeployerPodCompletedAtAnnotation is an annotation on deployment that records
	// the time in RFC3339 format of when the deployer pod finished.
	// This is set by deployer controller, but not consumed by any command or internally.
	// DEPRECATED: will be removed soon
	DeployerPodCompletedAtAnnotation = "openshift.io/deployer-pod.completed-at"

	// DesiredReplicasAnnotation represents the desired number of replicas for a
	// new deployment.
	// This is set by deployer controller, but not consumed by any command or internally.
	// DEPRECATED: will be removed soon
	DesiredReplicasAnnotation = "kubectl.kubernetes.io/desired-replicas"

	// DeploymentAnnotation is an annotation on a deployer Pod. The annotation value is the name
	// of the deployment (a ReplicationController) on which the deployer Pod acts.
	// This is set by deployer controller and consumed internally and in oc adm top command.
	// DEPRECATED: will be removed soon
	DeploymentAnnotation = "openshift.io/deployment.name"
)