Skip to content

Commit bca8c4b

Browse files
Add created by label (#27612)
* Add created by label * Update content/en/docs/concepts/overview/working-with-objects/common-labels.md
1 parent 3316bae commit bca8c4b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/en/docs/concepts/overview/working-with-objects/common-labels.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ on every resource object.
3939
| `app.kubernetes.io/version` | The current version of the application (e.g., a semantic version, revision hash, etc.) | `5.7.21` | string |
4040
| `app.kubernetes.io/component` | The component within the architecture | `database` | string |
4141
| `app.kubernetes.io/part-of` | The name of a higher level application this one is part of | `wordpress` | string |
42-
| `app.kubernetes.io/managed-by` | The tool being used to manage the operation of an application | `helm` | string |
42+
| `app.kubernetes.io/managed-by` | The tool being used to manage the operation of an application | `helm` | string |
43+
| `app.kubernetes.io/created-by` | The controller/user who created this resource | `controller-manager` | string |
4344

4445
To illustrate these labels in action, consider the following StatefulSet object:
4546

@@ -54,6 +55,7 @@ metadata:
5455
app.kubernetes.io/component: database
5556
app.kubernetes.io/part-of: wordpress
5657
app.kubernetes.io/managed-by: helm
58+
app.kubernetes.io/created-by: controller-manager
5759
```
5860
5961
## Applications And Instances Of Applications
@@ -170,4 +172,3 @@ metadata:
170172

171173
With the MySQL `StatefulSet` and `Service` you'll notice information about both MySQL and WordPress, the broader application, are included.
172174

173-

0 commit comments

Comments
 (0)