@@ -19,7 +19,7 @@ This document serves both as a reference to the values and as a coordination poi
19
19
20
20
Example: ` app.kubernetes.io/component: "database" `
21
21
22
- Used on: All Objects
22
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
23
23
24
24
The component within the architecture.
25
25
@@ -29,7 +29,7 @@ One of the [recommended labels](/docs/concepts/overview/working-with-objects/com
29
29
30
30
Example: ` app.kubernetes.io/created-by: "controller-manager" `
31
31
32
- Used on: All Objects
32
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
33
33
34
34
The controller/user who created this resource.
35
35
@@ -41,17 +41,17 @@ Starting from v1.9, this label is deprecated.
41
41
42
42
Example: ` app.kubernetes.io/instance: "mysql-abcxzy" `
43
43
44
- Used on: All Objects
44
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
45
45
46
- A unique name identifying the instance of an application.
46
+ A unique name identifying the instance of an application. To assign a non-unique name, use [ app.kubernetes.io/name ] ( #app-kubernetes-io-name ) .
47
47
48
48
One of the [ recommended labels] ( /docs/concepts/overview/working-with-objects/common-labels/#labels ) .
49
49
50
50
### app.kubernetes.io/managed-by
51
51
52
52
Example: ` app.kubernetes.io/managed-by: "helm" `
53
53
54
- Used on: All Objects
54
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
55
55
56
56
The tool being used to manage the operation of an application.
57
57
@@ -61,7 +61,7 @@ One of the [recommended labels](/docs/concepts/overview/working-with-objects/com
61
61
62
62
Example: ` app.kubernetes.io/name: "mysql" `
63
63
64
- Used on: All Objects
64
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
65
65
66
66
The name of the application.
67
67
@@ -71,19 +71,24 @@ One of the [recommended labels](/docs/concepts/overview/working-with-objects/com
71
71
72
72
Example: ` app.kubernetes.io/part-of: "wordpress" `
73
73
74
- Used on: All Objects
74
+ Used on: All Objects (typically used on [ workload resources ] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
75
75
76
- The name of a higher level application this one is part of.
76
+ The name of a higher- level application this one is part of.
77
77
78
78
One of the [ recommended labels] ( /docs/concepts/overview/working-with-objects/common-labels/#labels ) .
79
79
80
80
### app.kubernetes.io/version
81
81
82
82
Example: ` app.kubernetes.io/version: "5.7.21" `
83
83
84
- Used on: All Objects
84
+ Used on: All Objects (typically used on [ workload resources] ( /docs/reference/kubernetes-api/workload-resources/ ) ).
85
+
86
+ The current version of the application.
87
+
88
+ Common forms of values include:
85
89
86
- The current version of the application (e.g., a semantic version, revision hash, etc.).
90
+ - [ semantic version] ( https://semver.org/spec/v1.0.0.html )
91
+ - the Git [ revision hash] ( https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection#_single_revisions ) for the source code.
87
92
88
93
One of the [ recommended labels] ( /docs/concepts/overview/working-with-objects/common-labels/#labels ) .
89
94
0 commit comments