Go Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
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=
Line 6: Line 7:
<font color=darkkhaki>
<font color=darkkhaki>
* Configuration in Go https://sergey.kamardin.org/articles/configuration-in-go/
* Configuration in Go https://sergey.kamardin.org/articles/configuration-in-go/
* Link to [[Kubernetes_Cluster_Configuration_Concepts#Configuration_Patterns|Kubernetes Cluster Configuration Concepts &#124; Configuration Patterns]]
</font>
</font>
=Overview=
=Overview=



Latest revision as of 20:12, 14 May 2024

Internal

TODO

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.