Documentation ¶
Index ¶
- func GetEnvBool(key string, defaultValue bool, log logr.Logger) bool
- func GetEnvDuration(key string, defaultValue time.Duration, log logr.Logger) time.Duration
- func GetEnvFloat(key string, defaultValue float64, log logr.Logger) float64
- func GetEnvInt(key string, defaultValue int, log logr.Logger) int
- func GetEnvInt32(key string, defaultValue int32, log logr.Logger) int32
- func GetEnvString(key string, defaultValue string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetEnvBool ¶
Returns the bool value of environment variable "key" or the default value if "key" is not set. Note if the environment variable is set to a non boolean, including an empty string, this will fail and exit.
func GetEnvDuration ¶ added in v0.9.0
Returns the duration value of environment variable "key" or a default value Note if the environment variable cannot be parsed as a duration, including an empty string, this will fail and exit.
func GetEnvInt ¶
Returns the integer of value environment variable "key" or the default value if "key" is not set. Note if the environment variable is set to a non integer, including an empty string, this will fail and exit.
func GetEnvInt32 ¶ added in v0.11.2
func GetEnvString ¶
Returns the string value of environment variable "key" or the default value if "key" is not set. Note if the environment variable is set to an empty string, this will return an empty string, not defaultValue.
Types ¶
This section is empty.