You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`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 |
40
40
|`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 |
41
41
|`app.kubernetes.io/component`| The component within the architecture |`database`| string |
42
42
|`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
51
51
metadata:
52
52
labels:
53
53
app.kubernetes.io/name: mysql
54
-
app.kubernetes.io/instance: mysql-abcxzy
54
+
app.kubernetes.io/instance: mysql-abcxyz
55
55
app.kubernetes.io/version: "5.7.21"
56
56
app.kubernetes.io/component: database
57
57
app.kubernetes.io/part-of: wordpress
@@ -67,7 +67,7 @@ than once where different websites are different installations of WordPress.
67
67
The name of an application and the instance name are recorded separately. For
68
68
example, WordPress has a `app.kubernetes.io/name` of `wordpress` while it has
69
69
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
71
71
to be identifiable. Every instance of an application must have a unique name.
0 commit comments