From 0fd5783bb7e3fa1ffb37ab5e617e22481bb56f68 Mon Sep 17 00:00:00 2001 From: Ekaterina Kazakova Date: Tue, 11 Feb 2025 19:13:34 +0400 Subject: [PATCH] Skip ControlPlaneIsStable preflight check for worker machines Closes #932 --- config/dev/aws-clusterdeployment.yaml | 2 +- config/dev/azure-clusterdeployment.yaml | 2 +- config/dev/openstack-clusterdeployment.yaml | 2 +- config/dev/vsphere-clusterdeployment.yaml | 2 +- templates/cluster/aws-hosted-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ templates/cluster/aws-standalone-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ templates/cluster/azure-hosted-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ templates/cluster/azure-standalone-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ .../cluster/openstack-standalone-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ templates/cluster/vsphere-hosted-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ .../cluster/vsphere-standalone-cp/Chart.yaml | 2 +- .../templates/machinedeployment.yaml | 3 +++ ...ted-cp-0-1-1.yaml => aws-hosted-cp-0-1-2.yaml} | 4 ++-- ...cp-0-1-1.yaml => aws-standalone-cp-0-1-2.yaml} | 4 ++-- ...d-cp-0-1-1.yaml => azure-hosted-cp-0-1-2.yaml} | 4 ++-- ...-0-1-1.yaml => azure-standalone-cp-0-1-2.yaml} | 4 ++-- .../templates/openstack-standalone-cp-0-1-2.yaml | 15 --------------- ...-1.yaml => openstack-standalone-cp-0-1-3.yaml} | 4 ++-- ...cp-0-1-1.yaml => vsphere-hosted-cp-0-1-2.yaml} | 4 ++-- ...-1-1.yaml => vsphere-standalone-cp-0-1-2.yaml} | 4 ++-- 26 files changed, 46 insertions(+), 40 deletions(-) rename templates/provider/kcm-templates/files/templates/{aws-hosted-cp-0-1-1.yaml => aws-hosted-cp-0-1-2.yaml} (84%) rename templates/provider/kcm-templates/files/templates/{aws-standalone-cp-0-1-1.yaml => aws-standalone-cp-0-1-2.yaml} (84%) rename templates/provider/kcm-templates/files/templates/{azure-hosted-cp-0-1-1.yaml => azure-hosted-cp-0-1-2.yaml} (84%) rename templates/provider/kcm-templates/files/templates/{azure-standalone-cp-0-1-1.yaml => azure-standalone-cp-0-1-2.yaml} (83%) delete mode 100644 templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-2.yaml rename templates/provider/kcm-templates/files/templates/{openstack-standalone-cp-0-1-1.yaml => openstack-standalone-cp-0-1-3.yaml} (82%) rename templates/provider/kcm-templates/files/templates/{vsphere-hosted-cp-0-1-1.yaml => vsphere-hosted-cp-0-1-2.yaml} (84%) rename templates/provider/kcm-templates/files/templates/{vsphere-standalone-cp-0-1-1.yaml => vsphere-standalone-cp-0-1-2.yaml} (83%) diff --git a/config/dev/aws-clusterdeployment.yaml b/config/dev/aws-clusterdeployment.yaml index e5b37fe8a..b4e31a695 100644 --- a/config/dev/aws-clusterdeployment.yaml +++ b/config/dev/aws-clusterdeployment.yaml @@ -4,7 +4,7 @@ metadata: name: aws-${CLUSTER_NAME_SUFFIX} namespace: ${NAMESPACE} spec: - template: aws-standalone-cp-0-1-0 + template: aws-standalone-cp-0-1-2 credential: aws-cluster-identity-cred config: clusterLabels: {} diff --git a/config/dev/azure-clusterdeployment.yaml b/config/dev/azure-clusterdeployment.yaml index 992b93ad5..f28d02623 100644 --- a/config/dev/azure-clusterdeployment.yaml +++ b/config/dev/azure-clusterdeployment.yaml @@ -4,7 +4,7 @@ metadata: name: azure-${CLUSTER_NAME_SUFFIX} namespace: ${NAMESPACE} spec: - template: azure-standalone-cp-0-1-0 + template: azure-standalone-cp-0-1-2 credential: azure-cluster-identity-cred config: clusterLabels: {} diff --git a/config/dev/openstack-clusterdeployment.yaml b/config/dev/openstack-clusterdeployment.yaml index 02306444c..99708e9ab 100644 --- a/config/dev/openstack-clusterdeployment.yaml +++ b/config/dev/openstack-clusterdeployment.yaml @@ -4,7 +4,7 @@ metadata: name: openstack-${CLUSTER_NAME_SUFFIX} namespace: ${NAMESPACE} spec: - template: openstack-standalone-cp-0-1-1 + template: openstack-standalone-cp-0-1-3 credential: openstack-cluster-identity-cred config: clusterLabels: {} diff --git a/config/dev/vsphere-clusterdeployment.yaml b/config/dev/vsphere-clusterdeployment.yaml index 874894893..321e6a796 100644 --- a/config/dev/vsphere-clusterdeployment.yaml +++ b/config/dev/vsphere-clusterdeployment.yaml @@ -4,7 +4,7 @@ metadata: name: vsphere-${CLUSTER_NAME_SUFFIX} namespace: ${NAMESPACE} spec: - template: vsphere-standalone-cp-0-1-0 + template: vsphere-standalone-cp-0-1-2 credential: vsphere-cluster-identity-cred config: clusterLabels: {} diff --git a/templates/cluster/aws-hosted-cp/Chart.yaml b/templates/cluster/aws-hosted-cp/Chart.yaml index 2766cc9a3..bde43836f 100644 --- a/templates/cluster/aws-hosted-cp/Chart.yaml +++ b/templates/cluster/aws-hosted-cp/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/aws-hosted-cp/templates/machinedeployment.yaml b/templates/cluster/aws-hosted-cp/templates/machinedeployment.yaml index f47c05094..e8053bb72 100644 --- a/templates/cluster/aws-hosted-cp/templates/machinedeployment.yaml +++ b/templates/cluster/aws-hosted-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/aws-standalone-cp/Chart.yaml b/templates/cluster/aws-standalone-cp/Chart.yaml index 281ca28c2..bf8406671 100644 --- a/templates/cluster/aws-standalone-cp/Chart.yaml +++ b/templates/cluster/aws-standalone-cp/Chart.yaml @@ -6,7 +6,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/aws-standalone-cp/templates/machinedeployment.yaml b/templates/cluster/aws-standalone-cp/templates/machinedeployment.yaml index 5c51c1045..72ddf042c 100644 --- a/templates/cluster/aws-standalone-cp/templates/machinedeployment.yaml +++ b/templates/cluster/aws-standalone-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/azure-hosted-cp/Chart.yaml b/templates/cluster/azure-hosted-cp/Chart.yaml index a7f6db06b..bcce1805a 100644 --- a/templates/cluster/azure-hosted-cp/Chart.yaml +++ b/templates/cluster/azure-hosted-cp/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/azure-hosted-cp/templates/machinedeployment.yaml b/templates/cluster/azure-hosted-cp/templates/machinedeployment.yaml index e5995a1fb..7f9c3a0f3 100644 --- a/templates/cluster/azure-hosted-cp/templates/machinedeployment.yaml +++ b/templates/cluster/azure-hosted-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/azure-standalone-cp/Chart.yaml b/templates/cluster/azure-standalone-cp/Chart.yaml index 7ef303140..e68eed65a 100644 --- a/templates/cluster/azure-standalone-cp/Chart.yaml +++ b/templates/cluster/azure-standalone-cp/Chart.yaml @@ -6,7 +6,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/azure-standalone-cp/templates/machinedeployment.yaml b/templates/cluster/azure-standalone-cp/templates/machinedeployment.yaml index 464ae0ceb..8ed444075 100644 --- a/templates/cluster/azure-standalone-cp/templates/machinedeployment.yaml +++ b/templates/cluster/azure-standalone-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/openstack-standalone-cp/Chart.yaml b/templates/cluster/openstack-standalone-cp/Chart.yaml index 41adad7da..f26045713 100644 --- a/templates/cluster/openstack-standalone-cp/Chart.yaml +++ b/templates/cluster/openstack-standalone-cp/Chart.yaml @@ -6,7 +6,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.2 +version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/openstack-standalone-cp/templates/machinedeployment.yaml b/templates/cluster/openstack-standalone-cp/templates/machinedeployment.yaml index 487bca781..3b1962cf7 100644 --- a/templates/cluster/openstack-standalone-cp/templates/machinedeployment.yaml +++ b/templates/cluster/openstack-standalone-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/vsphere-hosted-cp/Chart.yaml b/templates/cluster/vsphere-hosted-cp/Chart.yaml index f287eec4f..98bbac41b 100644 --- a/templates/cluster/vsphere-hosted-cp/Chart.yaml +++ b/templates/cluster/vsphere-hosted-cp/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/vsphere-hosted-cp/templates/machinedeployment.yaml b/templates/cluster/vsphere-hosted-cp/templates/machinedeployment.yaml index 83599c25e..4215004b6 100644 --- a/templates/cluster/vsphere-hosted-cp/templates/machinedeployment.yaml +++ b/templates/cluster/vsphere-hosted-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/cluster/vsphere-standalone-cp/Chart.yaml b/templates/cluster/vsphere-standalone-cp/Chart.yaml index 6446d4c82..b88da7edf 100644 --- a/templates/cluster/vsphere-standalone-cp/Chart.yaml +++ b/templates/cluster/vsphere-standalone-cp/Chart.yaml @@ -6,7 +6,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/templates/cluster/vsphere-standalone-cp/templates/machinedeployment.yaml b/templates/cluster/vsphere-standalone-cp/templates/machinedeployment.yaml index 64d8fc8e5..7c711dc28 100644 --- a/templates/cluster/vsphere-standalone-cp/templates/machinedeployment.yaml +++ b/templates/cluster/vsphere-standalone-cp/templates/machinedeployment.yaml @@ -2,6 +2,9 @@ apiVersion: cluster.x-k8s.io/v1beta1 kind: MachineDeployment metadata: name: {{ include "machinedeployment.name" . }} + annotations: + # Temporary fix to address https://github.com/k0sproject/k0smotron/issues/911 + machineset.cluster.x-k8s.io/skip-preflight-checks: "ControlPlaneIsStable" spec: clusterName: {{ include "cluster.name" . }} replicas: {{ .Values.workersNumber }} diff --git a/templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-2.yaml similarity index 84% rename from templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-2.yaml index 34f863f0b..af8c2d48c 100644 --- a/templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/aws-hosted-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: aws-hosted-cp-0-1-1 + name: aws-hosted-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: aws-hosted-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-2.yaml similarity index 84% rename from templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-2.yaml index bcc79c0f1..892861cf0 100644 --- a/templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/aws-standalone-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: aws-standalone-cp-0-1-1 + name: aws-standalone-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: aws-standalone-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-2.yaml similarity index 84% rename from templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-2.yaml index 7a5742249..186b87a28 100644 --- a/templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/azure-hosted-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: azure-hosted-cp-0-1-1 + name: azure-hosted-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: azure-hosted-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-2.yaml similarity index 83% rename from templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-2.yaml index ac3fd7203..da8fc9bc7 100644 --- a/templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/azure-standalone-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: azure-standalone-cp-0-1-1 + name: azure-standalone-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: azure-standalone-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-2.yaml b/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-2.yaml deleted file mode 100644 index 9c38b3978..000000000 --- a/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-2.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: k0rdent.mirantis.com/v1alpha1 -kind: ClusterTemplate -metadata: - name: openstack-standalone-cp-0-1-2 - annotations: - helm.sh/resource-policy: keep -spec: - helm: - chartSpec: - chart: openstack-standalone-cp - version: 0.1.2 - interval: 10m0s - sourceRef: - kind: HelmRepository - name: kcm-templates diff --git a/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-3.yaml similarity index 82% rename from templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-3.yaml index 7bf007020..04d7bff5d 100644 --- a/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/openstack-standalone-cp-0-1-3.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: openstack-standalone-cp-0-1-1 + name: openstack-standalone-cp-0-1-3 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: openstack-standalone-cp - version: 0.1.1 + version: 0.1.3 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-2.yaml similarity index 84% rename from templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-2.yaml index 48406d53d..49eae1db8 100644 --- a/templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/vsphere-hosted-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: vsphere-hosted-cp-0-1-1 + name: vsphere-hosted-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: vsphere-hosted-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository diff --git a/templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-1.yaml b/templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-2.yaml similarity index 83% rename from templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-1.yaml rename to templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-2.yaml index f48690159..f9e1a138f 100644 --- a/templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-1.yaml +++ b/templates/provider/kcm-templates/files/templates/vsphere-standalone-cp-0-1-2.yaml @@ -1,14 +1,14 @@ apiVersion: k0rdent.mirantis.com/v1alpha1 kind: ClusterTemplate metadata: - name: vsphere-standalone-cp-0-1-1 + name: vsphere-standalone-cp-0-1-2 annotations: helm.sh/resource-policy: keep spec: helm: chartSpec: chart: vsphere-standalone-cp - version: 0.1.1 + version: 0.1.2 interval: 10m0s sourceRef: kind: HelmRepository