Merge pull request #22457 from ctron/patch-1
Fix the example values in the first examplespull/22486/head
commit
ea75275dcc
|
@ -35,7 +35,7 @@ on every resource object.
|
||||||
| Key | Description | Example | Type |
|
| Key | Description | Example | Type |
|
||||||
| ----------------------------------- | --------------------- | -------- | ---- |
|
| ----------------------------------- | --------------------- | -------- | ---- |
|
||||||
| `app.kubernetes.io/name` | The name of the application | `mysql` | string |
|
| `app.kubernetes.io/name` | The name of the application | `mysql` | string |
|
||||||
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `wordpress-abcxzy` | string |
|
| `app.kubernetes.io/instance` | A unique name identifying the instance of an application | `mysql-abcxzy` | string |
|
||||||
| `app.kubernetes.io/version` | The current version of the application (e.g., a semantic version, revision hash, etc.) | `5.7.21` | string |
|
| `app.kubernetes.io/version` | The current version of the application (e.g., a semantic version, revision hash, etc.) | `5.7.21` | string |
|
||||||
| `app.kubernetes.io/component` | The component within the architecture | `database` | string |
|
| `app.kubernetes.io/component` | The component within the architecture | `database` | string |
|
||||||
| `app.kubernetes.io/part-of` | The name of a higher level application this one is part of | `wordpress` | string |
|
| `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
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: mysql
|
app.kubernetes.io/name: mysql
|
||||||
app.kubernetes.io/instance: wordpress-abcxzy
|
app.kubernetes.io/instance: mysql-abcxzy
|
||||||
app.kubernetes.io/version: "5.7.21"
|
app.kubernetes.io/version: "5.7.21"
|
||||||
app.kubernetes.io/component: database
|
app.kubernetes.io/component: database
|
||||||
app.kubernetes.io/part-of: wordpress
|
app.kubernetes.io/part-of: wordpress
|
||||||
|
|
Loading…
Reference in New Issue