Documentation
¶
Overview ¶
Package config contains configuration settings.
Index ¶
Constants ¶
View Source
const ( ContextStageNone string = "none" ContextStageInit string = "pre-start" ContextStageStart string = "post-start" ContextStateConfigLoad string = "config-load" ContextStageStop string = "pre-stop" )
View Source
const ( DiagnosticAPIKey string = "api_key_valid" //nolint:gosec // false positive for G101: Potential hardcoded credentials DiagnosticK8sVersion string = "k8s_version" DiagnosticK8sNamespace string = "k8s_namespace" DiagnosticK8sProvider string = "k8s_provider" DiagnosticKMS string = "kube_state_metrics_reachable" DiagnosticPrometheusVersion string = "prometheus_version" DiagnosticScrapeConfig string = "scrape_cfg" DiagnosticInsightsIngress string = "webhook_server_reachable" DiagnosticAgentSettings string = "agent_settings" )
View Source
const ( DiagnosticInternalInitStart string = "init_start" DiagnosticInternalInitStop string = "init_ok" DiagnosticInternalInitFailed string = "init_failed" DiagnosticInternalPodStart string = "pod_start" DiagnosticInternalPodStop string = "pod_stop" DiagnosticInternalConfigLoad string = "config_load" )
View Source
const ( ErrNoLifecycleStageMsg = "missing Lifecycle Stage" ErrNoEnvFileMsg = "missing Env File" ErrNoKeyFileMsg = "missing Key File" ErrNoCloudZeroHostMsg = "missing CloudZero Host" ErrNoAccountIDMsg = "missing AWS Account ID" ErrNoClusterNameMsg = "missing Cluster Name" ErrNoRegionMsg = "missing AWS Region" ErrNoSecretFilePathMsg = "missing Secret File" ErrNoAgentVersionMsg = "missing Agent Version" ErrNoChartVersionMsg = "missing Chart Version" ErrNoScrapeConfigLocationMsg = "missing Scrape Config Location" ErrNoKubeStateMetricsServiceEndpointMsg = "missing Kube State Metrics Service Endpoint" )
View Source
const ( FlagEnvFile = "env-file" FlagDescEnvFile = "environment variable configuration file" FlagConfigFile = "config-file" FlagDescConfFile = "configuration file location" FlagAccountID = "account" FlagDescAccountID = "cloud account ID" FlagClusterName = "cluster" FlagDescClusterName = "kubernetes cluster name" FlagRegion = "region" FlagDescRegion = "deployment region matching the dimension in the CloudZero dashboard" FlagConfigFileWebhook = "config-webhook" FlagConfigFileAggregator = "config-aggregator" )
Variables ¶
This section is empty.
Functions ¶
func IsValidDiagnostic ¶
func IsValidStage ¶
Types ¶
type Cloudzero ¶
type Cloudzero struct {
Host string `yaml:"host" default:"https://api.cloudzero.com" env:"CZ_HOST" env-description:"CloudZero API host"`
Credential string
CredentialsFile string `` /* 165-byte string literal not displayed */
DisableTelemetry bool `yaml:"disable_telemetry" default:"false" env:"CZ_DISABLE_TELEMETRY" env-description:"Disable telemetry"`
}
Cloudzero is the configuration for the CloudZero checker
type Deployment ¶
type Deployment struct {
AccountID string `yaml:"account_id" env:"ACCOUNT_ID" required:"true" env-description:"AWS Account ID"`
ClusterName string `yaml:"cluster_name" env:"CLUSTER_NAME" required:"true" env-description:"Cluster Name"`
Region string `yaml:"region" env:"REGION" required:"true" env-description:"AWS Region"`
// contains filtered or unexported fields
}
func (*Deployment) SetScout ¶ added in v1.2.3
func (s *Deployment) SetScout(scout types.Scout)
SetScout provides a way to specify a scout. By default, an auto scout will be used.
func (*Deployment) Validate ¶
func (s *Deployment) Validate() error
type Diagnostics ¶
type Diagnostics struct {
Stages []Stage `yaml:"stages"`
}
func (*Diagnostics) Validate ¶
func (s *Diagnostics) Validate() error
type Logging ¶
type Prometheus ¶
type Prometheus struct {
Executable string `yaml:"executable" default:"/bin/prometheus" env:"PROMETHEUS_EXECUTABLE" env-description:"Prometheus Executable Path"`
KubeStateMetricsServiceEndpoint string `` /* 129-byte string literal not displayed */
Configurations []string `yaml:"configurations"`
KubeMetrics []string `yaml:"kube_metrics"`
}
func (*Prometheus) Validate ¶
func (s *Prometheus) Validate() error
type Settings ¶
type Settings struct {
ExecutionContext Context
Logging Logging `yaml:"logging"`
Deployment Deployment `yaml:"deployment"`
Versions Versions `yaml:"versions"`
Cloudzero Cloudzero `yaml:"cloudzero"`
Prometheus Prometheus `yaml:"prometheus"`
Diagnostics Diagnostics `yaml:"diagnostics"`
Services Services `yaml:"services"`
}
func NewSettings ¶
Click to show internal directories.
Click to hide internal directories.