Skip to content

Commit

Permalink
update csi and upgrade controller
Browse files Browse the repository at this point in the history
  • Loading branch information
BerndDA committed Dec 17, 2023
1 parent 1ea7a2e commit 8a8d970
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k3s/csi.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ resource "null_resource" "csi" {
command = local.csi_secret
}
provisioner "local-exec" {
command = "kubectl apply --kubeconfig ${var.kubeconfig_file} -f https://raw.githubusercontent.com/hetznercloud/csi-driver/v2.3.2/deploy/kubernetes/hcloud-csi.yml"
command = "helm repo add hcloud https://charts.hetzner.cloud && helm repo update hcloud && helm install hcloud-csi hcloud/hcloud-csi -n kube-system --kubeconfig ${var.kubeconfig_file}"
}
}
2 changes: 1 addition & 1 deletion k3s/upgrade_controller.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ resource "null_resource" "upgrade_controller" {
first_main_ip = var.main_ips[0]
}
provisioner "local-exec" {
command = "kubectl apply --kubeconfig ${var.kubeconfig_file} -f https://github.com/rancher/system-upgrade-controller/releases/download/v0.9.1/system-upgrade-controller.yaml"
command = "kubectl apply --kubeconfig ${var.kubeconfig_file} -f https://github.com/rancher/system-upgrade-controller/releases/download/v0.13.2/system-upgrade-controller.yaml"
}
}

Expand Down

0 comments on commit 8a8d970

Please sign in to comment.