package env
import "k8s.io/utils/env"
Package env provides utility functions for using environment variables.
Index ¶
- func GetBool(key string, defaultValue bool) (bool, error)
- func GetFloat64(key string, defaultValue float64) (float64, error)
- func GetInt(key string, defaultValue int) (int, error)
- func GetString(key, defaultValue string) string
Functions ¶
func GetBool ¶
GetBool returns the env variable (parsed as bool) for the given key and falls back to the given defaultValue if not set
func GetFloat64 ¶
GetFloat64 returns the env variable (parsed as float64) for the given key and falls back to the given defaultValue if not set
func GetInt ¶
GetInt returns the env variable (parsed as integer) for the given key and falls back to the given defaultValue if not set
func GetString ¶
GetString returns the env variable for the given key and falls back to the given defaultValue if not set
Source Files ¶
doc.go env.go
- Version
- v0.0.0-20250321185631-1f6e0b77f77e (latest)
- Published
- Mar 21, 2025
- Platform
- linux/amd64
- Imports
- 2 packages
- Last checked
- 1 month ago –
Tools for package owners.