Skip to content

Commit

Permalink
add note about creating the secret for the CCM
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine committed Feb 14, 2024
1 parent c07158b commit 8dc19b3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/book/src/developers/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,21 @@ clusterctl generate cluster $CLUSTER_NAME \
This will provision the cluster with the CNI defaulted to [cilium](../topics/addons.md#cilium)
and the [linode-ccm](../topics/addons.md#ccm) installed.
Next, obtain the provisioned cluster kubeconfig:
```bash
clusterctl get kubeconfig $CLUSTER_NAME > $CLUSTER_NAME-kubeconfig
```
Once the cluster is reachable, create the Kubernetes Secret on the provisioned
cluster for the linode-ccm:
```bash
kubectl -n kube-system --kubeconfig $CLUSTER_NAME-kubeconfig \
create secret generic \
linode-token-region \
--from-literal=token=$LINODE_TOKEN \
--from-literal=region=$LINODE_REGION
```
```admonish question title=""
For any issues, please refer to the [troubleshooting guide](../topics/troubleshooting.md).
```
Expand Down

0 comments on commit 8dc19b3

Please sign in to comment.