github.com/giantswarm/apiextensions/v6@v6.6.0/pkg/label/kubernetes.go (about) 1 package label 2 3 // App label is used to identify Kubernetes resources. It is considered 4 // deprecated by upstream and is replaced by `app.kubernetes.io/name`. 5 const App = "app" 6 7 // AppKubernetesInstance is a unique name identifying an instance of an app. 8 const AppKubernetesInstance = "app.kubernetes.io/instance" 9 10 // AppKubernetesName label is used to identify Kubernetes resources. 11 const AppKubernetesName = "app.kubernetes.io/name" 12 13 // AppKubernetesVersion label is used to identify the version of Kubernetes 14 // resources. 15 const AppKubernetesVersion = "app.kubernetes.io/version"