Skip to content

Commit ea75275

Browse files
authored
Merge pull request #22457 from ctron/patch-1
Fix the example values in the first examples
2 parents df12f9a + f4d296d commit ea75275

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on every resource object.
3535
| Key | Description | Example | Type |
3636
| ----------------------------------- | --------------------- | -------- | ---- |
3737
| `app.kubernetes.io/name` | The name of the application | `mysql` | string |
38-
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `wordpress-abcxzy` | string |
38+
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `mysql-abcxzy` | string |
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 |
@@ -49,7 +49,7 @@ kind: StatefulSet
4949
metadata:
5050
labels:
5151
app.kubernetes.io/name: mysql
52-
app.kubernetes.io/instance: wordpress-abcxzy
52+
app.kubernetes.io/instance: mysql-abcxzy
5353
app.kubernetes.io/version: "5.7.21"
5454
app.kubernetes.io/component: database
5555
app.kubernetes.io/part-of: wordpress

0 commit comments

Comments
 (0)