Konvoy deploys all cluster lifecycle services to a bootstrap cluster, which then deploys a workload cluster. When the workload cluster is ready, move the cluster lifecycle services to the workload cluster, which is now self-managed. This guide describes how to make a workload cluster self-managed.
Before you start, make sure you have created a workload cluster, as described in Create the Cluster.
Make the new Kubernetes cluster manage itself
-
Deploy cluster lifecycle services on the workload cluster:
dkp create capi-components --kubeconfig ${CLUSTER_NAME}.conf
✓ Initializing new CAPI components
-
Move the Cluster API objects from the bootstrap to the workload cluster:
The cluster lifecycle services on the workload cluster are ready, but the workload cluster configuration is on the bootstrap cluster. The
move
command moves the configuration, which takes the form of Cluster API Custom Resource objects, from the bootstrap to the workload cluster. This process is also called a Pivot.dkp move capi-resources --to-kubeconfig ${CLUSTER_NAME}.conf
✓ Moving cluster resources You can now view resources in the moved cluster by using the --kubeconfig flag with kubectl. For example: kubectl --kubeconfig=preprovisioned-example.conf get nodes
-
Wait for the cluster control-plane to be ready:
kubectl --kubeconfig ${CLUSTER_NAME}.conf wait --for=condition=ControlPlaneReady "clusters/${CLUSTER_NAME}" --timeout=20m
cluster.cluster.x-k8s.io preprovisioned-example condition met
-
Use the cluster lifecycle services on the workload cluster to check the workload cluster status:
dkp describe cluster --kubeconfig ${CLUSTER_NAME}.conf -c ${CLUSTER_NAME}
NAME READY SEVERITY REASON SINCE MESSAGE Cluster/preprovisioned-example True 2m31s ├─ClusterInfrastructure - PreprovisionedCluster/preprovisioned-example ├─ControlPlane - KubeadmControlPlane/preprovisioned-example-control-plane True 2m31s │ ├─Machine/preprovisioned-example-control-plane-6g6nr True 2m33s │ ├─Machine/preprovisioned-example-control-plane-8lhcv True 2m33s │ └─Machine/preprovisioned-example-control-plane-kk2kg True 2m33s └─Workers └─MachineDeployment/preprovisioned-example-md-0 True 2m34s └─Machine/preprovisioned-example-md-0-77f667cd9-tnctd True 2m33s
-
Remove the bootstrap cluster, as the workload cluster is now self-managed:
dkp delete bootstrap
✓ Deleting bootstrap cluster
Known Limitations
- DKP supports moving only one set of cluster objects from the bootstrap cluster to the workload cluster, or vice-versa.
- DKP only supports moving all namespaces in the cluster; DKP does not support migration of individual namespaces.