1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 21:32:10 +00:00

AddonDeploy condition and some more constants

This commit is contained in:
Darren Shepherd
2018-02-26 16:15:12 -07:00
parent 44ce312ada
commit ff78d28af9
3 changed files with 10 additions and 3 deletions

View File

@@ -25,8 +25,10 @@ const (
ClusterConditionconditionDefautlProjectCreated condition.Cond = "DefaultProjectCreated"
// ClusterConditionDefaultNamespaceAssigned true when cluster's default namespace has been initially assigned
ClusterConditionDefaultNamespaceAssigned condition.Cond = "DefaultNamespaceAssigned"
ClusterConditionAddonDeploy condition.Cond = "AddonDeploy"
ClusterDriverImported = "imported"
ClusterDriverLocal = "local"
ClusterDriverRKE = "rancherKubernetesEngine"
)

View File

@@ -1,5 +1,9 @@
package v3
const (
K8sV1_8 = "v1.8.7-rancher1-1"
)
var (
K8sVersionToRKESystemImages = map[string]RKESystemImages{
"v1.8.7-rancher1-1": v187SystemImages,