utilsk8s.io/utils/env Index | Files

package env

import "k8s.io/utils/env"

Package env provides utility functions for using environment variables.

Index

Functions

func GetBool

func GetBool(key string, defaultValue bool) (bool, error)

GetBool returns the env variable (parsed as bool) for the given key and falls back to the given defaultValue if not set

func GetFloat64

func GetFloat64(key string, defaultValue float64) (float64, error)

GetFloat64 returns the env variable (parsed as float64) for the given key and falls back to the given defaultValue if not set

func GetInt

func GetInt(key string, defaultValue int) (int, error)

GetInt returns the env variable (parsed as integer) for the given key and falls back to the given defaultValue if not set

func GetString

func GetString(key, defaultValue string) string

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.