Skip to content

Commit

Permalink
chore: separate user agent from HCCM
Browse files Browse the repository at this point in the history
  • Loading branch information
apricote committed Sep 2, 2024
1 parent a5282a4 commit 152c393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hcloud/cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 152c393

Please sign in to comment.