config

package
v2.0.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 17, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	// HTTP server configuration
	Server ServerConfig `json:"server"`

	// Kubernetes configuration
	Kubernetes KubernetesConfig `json:"kubernetes"`
}

Config holds the configuration for the Secret service

func GetConfig

func GetConfig() *Config

GetConfig returns the parsed secret service configuration

func (Config) GetPFlagSet

func (cfg Config) GetPFlagSet(prefix string) *pflag.FlagSet

GetPFlagSet will return strongly types pflags for all fields in Config and its nested types. The format of the flags is json-name.json-sub-name... etc.

type KubernetesConfig

type KubernetesConfig struct {
	// Namespace where secrets are managed
	Namespace string `json:"namespace" pflag:",Kubernetes namespace for secret operations"`

	// ClusterName is the logical name of this cluster, used in secret status reporting
	ClusterName string `json:"clusterName" pflag:",Logical name of the cluster for secret status reporting"`

	// KubeConfig path (optional - if empty, uses in-cluster config)
	KubeConfig string `json:"kubeconfig" pflag:",Path to kubeconfig file (optional)"`

	// QPS is the maximum number of queries per second to the API server
	QPS int `json:"qps" pflag:",Maximum queries per second to the Kubernetes API server"`

	// Burst is the maximum burst above QPS allowed when talking to the API server
	Burst int `json:"burst" pflag:",Maximum burst above QPS for Kubernetes API server requests"`

	// Timeout is the request timeout for Kubernetes API server calls (e.g. "30s")
	Timeout string `json:"timeout" pflag:",Request timeout for Kubernetes API server calls"`
}

KubernetesConfig holds Kubernetes client configuration

type ServerConfig

type ServerConfig struct {
	Port int    `json:"port" pflag:",Port to bind the HTTP server"`
	Host string `json:"host" pflag:",Host to bind the HTTP server"`
}

ServerConfig holds HTTP server configuration

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL