Skip to content

Commit

Permalink
pdate doc to reflect latest version, add helm link
Browse files Browse the repository at this point in the history
  • Loading branch information
jichenjc committed Jun 23, 2022
1 parent 7a8c2e8 commit 0ab5543
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/book/src/topics/external-cloud-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@

# External Cloud Provider

To deploy a cluster using [external cloud provider](https://github.com/kubernetes/cloud-provider-openstack), create a cluster configuration with the [external cloud provider template](https://github.com/kubernetes-sigs/cluster-api-provider-openstack/blob/main/templates/cluster-template-external-cloud-provider.yaml).
To deploy a cluster using [external cloud provider](https://github.com/kubernetes/cloud-provider-openstack), create a cluster configuration with the [external cloud provider template](https://github.com/kubernetes-sigs/cluster-api-provider-openstack/blob/main/templates/cluster-template-external-cloud-provider.yaml) or refer to [helm chart](https://github.com/kubernetes/cloud-provider-openstack/tree/master/charts/openstack-cloud-controller-manager).

## Steps
## Steps of using external cloud provider template

- After control plane is up and running, retrieve the workload cluster Kubeconfig:

```shell
clusterctl get kubeconfig ${CLUSTER_NAME} --namespace default > ./${CLUSTER_NAME}.kubeconfig
```

- Deploy a CNI solution
- Deploy a CNI solution (using Calico now)

Note: choose desired version by replace <v3.23> below

```shell
curl https://docs.projectcalico.org/v3.19/manifests/calico.yaml | sed "s/veth_mtu:.*/veth_mtu: \"1430\"/g" | kubectl --kubeconfig=./${CLUSTER_NAME}.kubeconfig apply -f -
kubectl --kubeconfig=./${CLUSTER_NAME}.kubeconfig apply -f https://docs.projectcalico.org/v3.23/manifests/calico.yaml
```

- Create a secret containing the cloud configuration
Expand Down

0 comments on commit 0ab5543

Please sign in to comment.