k8c.io/api/v3@v3.0.0-20230904060738-b0a93889c0b6/pkg/apis/apps.kubermatic/v1/types.go (about) 1 /* 2 Copyright 2023 The Kubermatic Kubernetes Platform contributors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package v1 18 19 const ( 20 // ApplicationDefinitionSeedCleanupFinalizer indicates that synced application definition on seed clusters need cleanup. 21 ApplicationDefinitionSeedCleanupFinalizer = "kubermatic.k8c.io/cleanup-seed-application-definition" 22 23 // ApplicationInstallationCleanupFinalizer indicates that application installed on user-cluster need cleanup 24 // ie uninstall the application, remove namespace where application were installed ... 25 ApplicationInstallationCleanupFinalizer = "kubermatic.k8c.io/cleanup-application-installation" 26 27 // ApplicationManagedByLabel indicates the ownership of the application definition / application installation. 28 ApplicationManagedByLabel = "apps.kubermatic.k8c.io/managed-by" 29 30 // ApplicationManagedByKKPValue can be used as a value for the ApplicationManagedByLabel to indicate that the 31 // application definition / application installation is managed by KKP (i.e. it is KKP-internal). 32 ApplicationManagedByKKPValue = "kkp" 33 34 // ApplicationTypeLabel indicated the type of the application definition / application installation. 35 ApplicationTypeLabel = "apps.kubermatic.k8c.io/type" 36 37 // ApplicationTypeCNIValue can be used as a value for the ApplicationTypeLabel to indicate that the 38 // application definition / application installation type if CNI (Container Network Interface). 39 ApplicationTypeCNIValue = "cni" 40 )