File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ Changelog
44master
55------
66
7+ v1.7.0
8+ ------
9+
710* Fix: nil pointer dereference when Network was not found
8- * Update hcloud-go to 1.18.1
11+ * Update hcloud-go to 1.20.0
912* Add ` HCLOUD_LOAD_BALANCERS_ENABLED ` env variable to disable the Load
1013 Balancer feature, per default the Load Balancers are enabled.
1114* Use defaults if health check annotations are not set.
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ kubectl -n kube-system create secret generic hcloud --from-literal=token=<hcloud
1031037 . Deploy the ` hcloud-cloud-controller-manager ` :
104104
105105```
106- kubectl apply -f https://raw.githubusercontent.com/hetznercloud/hcloud-cloud-controller-manager/master/deploy/v1.6.1 .yaml
106+ kubectl apply -f https://raw.githubusercontent.com/hetznercloud/hcloud-cloud-controller-manager/master/deploy/v1.7.0 .yaml
107107
108108```
109109
Original file line number Diff line number Diff line change 5454 effect : " NoSchedule"
5555 hostNetwork : true
5656 containers :
57- - image : hetznercloud/hcloud-cloud-controller-manager:v1.6.1
57+ - image : hetznercloud/hcloud-cloud-controller-manager:v1.7.0
5858 name : hcloud-cloud-controller-manager
5959 command :
6060 - " /bin/hcloud-cloud-controller-manager"
Original file line number Diff line number Diff line change 5454 - key : " node.kubernetes.io/not-ready"
5555 effect : " NoSchedule"
5656 containers :
57- - image : hetznercloud/hcloud-cloud-controller-manager:v1.6.1
57+ - image : hetznercloud/hcloud-cloud-controller-manager:v1.7.0
5858 name : hcloud-cloud-controller-manager
5959 command :
6060 - " /bin/hcloud-cloud-controller-manager"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/NYTimes/gziphandler v1.1.1 // indirect
77 github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
88 github.com/golang/groupcache v0.0.0-20171101203131-84a468cf14b4 // indirect
9- github.com/hetznercloud/hcloud-go v1.19 .0
9+ github.com/hetznercloud/hcloud-go v1.20 .0
1010 github.com/stretchr/testify v1.6.1
1111 github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
1212 gopkg.in/square/go-jose.v2 v2.3.0 // indirect
Original file line number Diff line number Diff line change @@ -298,8 +298,8 @@ github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce/go.mod h1:oZtUIOe8dh
298298github.com/hashicorp/hcl v1.0.0 /go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ =
299299github.com/heketi/heketi v9.0.1-0.20190917153846-c2e2a4ab7ab9+incompatible /go.mod h1:bB9ly3RchcQqsQ9CpyaQwvva7RS5ytVoSoholZQON6o =
300300github.com/heketi/tests v0.0.0-20151005000721-f3775cbcefd6 /go.mod h1:xGMAM8JLi7UkZt1i4FQeQy0R2T8GLUwQhOP5M1gBhy4 =
301- github.com/hetznercloud/hcloud-go v1.19 .0 h1:8g28MQg8Eg97K7GASKUnaTZSNKo9CB73Xfxbt/NjvnU =
302- github.com/hetznercloud/hcloud-go v1.19 .0 /go.mod h1:EhElojlVU1biA5JgBaV8rRU1vE5+iYke402kXC9pooE =
301+ github.com/hetznercloud/hcloud-go v1.20 .0 h1:4EFRCoOlEUdg4qv4doVOKkGRpJhZlh/l6sUSJpConpw =
302+ github.com/hetznercloud/hcloud-go v1.20 .0 /go.mod h1:EhElojlVU1biA5JgBaV8rRU1vE5+iYke402kXC9pooE =
303303github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI =
304304github.com/hpcloud/tail v1.0.0 /go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU =
305305github.com/imdario/mergo v0.3.5 h1:JboBksRwiiAJWvIYJVo46AfV+IAIKZpfrSzVKj42R4Q =
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const (
3636 hcloudLoadBalancersEnabledENVVar = "HCLOUD_LOAD_BALANCERS_ENABLED"
3737 nodeNameENVVar = "NODE_NAME"
3838 providerName = "hcloud"
39- providerVersion = "v1.6.1 "
39+ providerVersion = "v1.7.0 "
4040)
4141
4242type cloud struct {
You can’t perform that action at this time.
0 commit comments