Add bootstrapper base

This commit is contained in:
2022-12-10 22:08:07 +01:00
commit 88d112b47b
20 changed files with 258 additions and 0 deletions

15
clusterapi/add-csi.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
. variables.sh
cat << EOF > output/csi-values.yaml
storageClasses:
- name: hcloud-volumes
defaultStorageClass: true
reclaimPolicy: Retain
EOF
KUBECONFIG=$CAPH_WORKER_CLUSTER_KUBECONFIG helm upgrade --install csi syself/csi-hcloud --version 0.2.0 \
--namespace kube-system -f output/csi-values.yaml