From 3b9a4371fc8ae3d6827841b9455326ea1488a3f9 Mon Sep 17 00:00:00 2001 From: Drew Flower Date: Sun, 10 Sep 2023 08:28:39 -0700 Subject: [PATCH] add missing 'bundlesRef: null' to generated cluster config --- .../en/docs/getting-started/docker/_index.md | 53 ++++++++++--------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/docs/content/en/docs/getting-started/docker/_index.md b/docs/content/en/docs/getting-started/docker/_index.md index d24f8b442936..66a22d63847c 100644 --- a/docs/content/en/docs/getting-started/docker/_index.md +++ b/docs/content/en/docs/getting-started/docker/_index.md @@ -93,37 +93,38 @@ sudo chmod +x /usr/local/bin/kubectl apiVersion: anywhere.eks.amazonaws.com/v1alpha1 kind: Cluster metadata: - name: mgmt + name: mgmt spec: - clusterNetwork: - cniConfig: - cilium: {} - pods: - cidrBlocks: - - 192.168.0.0/16 - services: - cidrBlocks: - - 10.96.0.0/12 - controlPlaneConfiguration: - count: 1 - datacenterRef: - kind: DockerDatacenterConfig - name: mgmt - externalEtcdConfiguration: - count: 1 - kubernetesVersion: "1.27" - managementCluster: - name: mgmt - workerNodeGroupConfigurations: - - count: 1 - name: md-0 + bundlesRef: null + clusterNetwork: + cniConfig: + cilium: {} + pods: + cidrBlocks: + - 192.168.0.0/16 + services: + cidrBlocks: + - 10.96.0.0/12 + controlPlaneConfiguration: + count: 1 + datacenterRef: + kind: DockerDatacenterConfig + name: mgmt + externalEtcdConfiguration: + count: 1 + kubernetesVersion: "1.27" + managementCluster: + name: mgmt + workerNodeGroupConfigurations: + - count: 1 + name: md-0 + --- apiVersion: anywhere.eks.amazonaws.com/v1alpha1 kind: DockerDatacenterConfig metadata: - name: mgmt - spec: {} - + name: mgmt + spec: {}: ``` 1. Create Docker Cluster. Note the following command may take several minutes to complete. You can run the command with -v 6 to increase logging verbosity to see the progress of the command.