-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow to choose hostname and FQDN to be lowercased or not
providers.LowercaseHostname and providers.SetLowerHostname allow to control hostname case sensitivity This addresses the behavior change introduced in v1.11.0 and reverted in v1.14.1. By default, hostnames are not lowercased.
- Loading branch information
Showing
9 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:enhancement | ||
Allow to choose hostname and FQDN to be lowercased or not | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Package providers | ||
// | ||
// # Hostname Behavior | ||
// | ||
// Starting from version v1.11.0, the host provider started automatically | ||
// lowercasing hostnames. This behavior was reverted in v1.14.1. | ||
// | ||
// To provide flexibility and allow users to control this behavior, the | ||
// `LowercaseHostname` and `SetLowerHostname` functions were added. | ||
// | ||
// By default, hostnames are not lowercased. If you require hostnames to be | ||
// lowercased, explicitly set this using `SetLowerHostname(true)`. | ||
package providers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package providers | ||
|
||
import "sync/atomic" | ||
|
||
var lowerHostname atomic.Bool | ||
|
||
// LowercaseHostname returns if the hostname should be lowercased or not. | ||
func LowercaseHostname() bool { | ||
return lowerHostname.Load() | ||
} | ||
|
||
// SetLowerHostname instruct the host provider to lowercase the hostname. | ||
// The LowercaseHostname and SetLowerHostname exist as a fix to allow the user | ||
// to choose or not this behaviour introduced on v1.11.0 and reverted on v1.14.1. | ||
func SetLowerHostname(lower bool) { | ||
lowerHostname.Store(lower) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters