diff --git a/hcloud/cloud.go b/hcloud/cloud.go index 3650b6134..228f4779b 100644 --- a/hcloud/cloud.go +++ b/hcloud/cloud.go @@ -129,7 +129,7 @@ func newCloud(_ io.Reader) (cloudprovider.Interface, error) { opts := []hcloud.ClientOption{ hcloud.WithToken(token), - hcloud.WithApplication("hcloud-cloud-controller", providerVersion), + hcloud.WithApplication("hetzner-cloud-controller", providerVersion), } // start metrics server if enabled (enabled by default) diff --git a/tests/e2e/testing.go b/tests/e2e/testing.go index 6f6b67be1..91ff7d0e1 100644 --- a/tests/e2e/testing.go +++ b/tests/e2e/testing.go @@ -62,7 +62,7 @@ func (tc *TestCluster) Start() error { opts := []hcloud.ClientOption{ hcloud.WithToken(token), - hcloud.WithApplication("hcloud-ccm-testsuite", "1.0"), + hcloud.WithApplication("hetzner-ccm-testsuite", "1.0"), } hcloudClient := hcloud.NewClient(opts...) tc.hcloud = hcloudClient