From 152c393d195a96e3de2ec12b7da57ff5c31f856d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Mon, 2 Sep 2024 09:44:52 +0200 Subject: [PATCH] chore: separate user agent from HCCM --- hcloud/cloud.go | 2 +- tests/e2e/testing.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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