Skip to content

Commit

Permalink
📖 Fix hcloud ccm secret key ref. (#1468)
Browse files Browse the repository at this point in the history
🌱 Fix hcloud ccm secret key ref.

Fixes #1444 Thank you @timkrase for reporting and providing a solution.
  • Loading branch information
guettli authored Aug 30, 2024
1 parent 5aeae0b commit c05f7aa
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ For a cluster without a private network, use the following command:
helm repo add hcloud https://charts.hetzner.cloud
helm repo update hcloud

KUBECONFIG=$CAPH_WORKER_CLUSTER_KUBECONFIG helm upgrade --install hccm hcloud/hcloud-cloud-controller-manager --version 1.20.0 \
--namespace kube-system \
--set secret.name=hetzner \
--set secret.tokenKeyName=hcloud \
--set privateNetwork.enabled=false
KUBECONFIG=$CAPH_WORKER_CLUSTER_KUBECONFIG helm upgrade --install hccm hcloud/hcloud-cloud-controller-manager \
--namespace kube-system \
--set env.HCLOUD_TOKEN.valueFrom.secretKeyRef.name=hetzner \
--set env.HCLOUD_TOKEN.valueFrom.secretKeyRef.key=hcloud \
--set privateNetwork.enabled=false
```

## Deploying the CSI (optional)
Expand Down

0 comments on commit c05f7aa

Please sign in to comment.