Skip to content

Commit add6a0a

Browse files
authored
Merge pull request #45585 from HwangTaehyun/patch-1
Update en/docs
2 parents 9e1fd64 + 04c5c84 commit add6a0a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ on every resource object.
3636
| Key | Description | Example | Type |
3737
| ----------------------------------- | --------------------- | -------- | ---- |
3838
| `app.kubernetes.io/name` | The name of the application | `mysql` | string |
39-
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `mysql-abcxzy` | string |
39+
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `mysql-abcxyz` | string |
4040
| `app.kubernetes.io/version` | The current version of the application (e.g., a [SemVer 1.0](https://semver.org/spec/v1.0.0.html), revision hash, etc.) | `5.7.21` | string |
4141
| `app.kubernetes.io/component` | The component within the architecture | `database` | string |
4242
| `app.kubernetes.io/part-of` | The name of a higher level application this one is part of | `wordpress` | string |
@@ -51,7 +51,7 @@ kind: StatefulSet
5151
metadata:
5252
labels:
5353
app.kubernetes.io/name: mysql
54-
app.kubernetes.io/instance: mysql-abcxzy
54+
app.kubernetes.io/instance: mysql-abcxyz
5555
app.kubernetes.io/version: "5.7.21"
5656
app.kubernetes.io/component: database
5757
app.kubernetes.io/part-of: wordpress
@@ -67,7 +67,7 @@ than once where different websites are different installations of WordPress.
6767
The name of an application and the instance name are recorded separately. For
6868
example, WordPress has a `app.kubernetes.io/name` of `wordpress` while it has
6969
an instance name, represented as `app.kubernetes.io/instance` with a value of
70-
`wordpress-abcxzy`. This enables the application and instance of the application
70+
`wordpress-abcxyz`. This enables the application and instance of the application
7171
to be identifiable. Every instance of an application must have a unique name.
7272

7373
## Examples
@@ -85,7 +85,7 @@ kind: Deployment
8585
metadata:
8686
labels:
8787
app.kubernetes.io/name: myservice
88-
app.kubernetes.io/instance: myservice-abcxzy
88+
app.kubernetes.io/instance: myservice-abcxyz
8989
...
9090
```
9191

@@ -96,7 +96,7 @@ kind: Service
9696
metadata:
9797
labels:
9898
app.kubernetes.io/name: myservice
99-
app.kubernetes.io/instance: myservice-abcxzy
99+
app.kubernetes.io/instance: myservice-abcxyz
100100
...
101101
```
102102

@@ -114,7 +114,7 @@ kind: Deployment
114114
metadata:
115115
labels:
116116
app.kubernetes.io/name: wordpress
117-
app.kubernetes.io/instance: wordpress-abcxzy
117+
app.kubernetes.io/instance: wordpress-abcxyz
118118
app.kubernetes.io/version: "4.9.4"
119119
app.kubernetes.io/managed-by: Helm
120120
app.kubernetes.io/component: server
@@ -130,7 +130,7 @@ kind: Service
130130
metadata:
131131
labels:
132132
app.kubernetes.io/name: wordpress
133-
app.kubernetes.io/instance: wordpress-abcxzy
133+
app.kubernetes.io/instance: wordpress-abcxyz
134134
app.kubernetes.io/version: "4.9.4"
135135
app.kubernetes.io/managed-by: Helm
136136
app.kubernetes.io/component: server
@@ -146,7 +146,7 @@ kind: StatefulSet
146146
metadata:
147147
labels:
148148
app.kubernetes.io/name: mysql
149-
app.kubernetes.io/instance: mysql-abcxzy
149+
app.kubernetes.io/instance: mysql-abcxyz
150150
app.kubernetes.io/version: "5.7.21"
151151
app.kubernetes.io/managed-by: Helm
152152
app.kubernetes.io/component: database
@@ -162,7 +162,7 @@ kind: Service
162162
metadata:
163163
labels:
164164
app.kubernetes.io/name: mysql
165-
app.kubernetes.io/instance: mysql-abcxzy
165+
app.kubernetes.io/instance: mysql-abcxyz
166166
app.kubernetes.io/version: "5.7.21"
167167
app.kubernetes.io/managed-by: Helm
168168
app.kubernetes.io/component: database

content/en/docs/reference/labels-annotations-taints/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Starting from v1.9, this label is deprecated.
6666

6767
Type: Label
6868

69-
Example: `app.kubernetes.io/instance: "mysql-abcxzy"`
69+
Example: `app.kubernetes.io/instance: "mysql-abcxyz"`
7070

7171
Used on: All Objects (typically used on
7272
[workload resources](/docs/reference/kubernetes-api/workload-resources/)).

0 commit comments

Comments
 (0)