Go Configuration: Difference between revisions
Jump to navigation
Jump to search
(→TODO) |
|||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Go Engineering#Subjects|Go Engineering]] | * [[Go Engineering#Subjects|Go Engineering]] | ||
* [[Kubernetes_Cluster_Configuration_Concepts#Overview|Kubernetes Cluster Configuration Concepts]] | |||
=TODO= | =TODO= |
Latest revision as of 20:12, 14 May 2024
Internal
TODO
- Configuration in Go https://sergey.kamardin.org/articles/configuration-in-go/
- Link to Kubernetes Cluster Configuration Concepts | Configuration Patterns
Overview
In-line help-supported flags are the best way to configure your program, rather than environment variables.
Environment variables and configuration files are useful in addition to flags.
Explicit command line flags always take precedence over environment variables and configuration files.