Envvar Naming Scopes
The scope of an environment variable can be derived from its name. Therefore, it is important to follow the correct naming scheme to enable easy and proper identification. This is important when either:
- a new local envvar is introduced.
- a new global envvar is added to an existing local envvar.
- A variable that is only used in a particular service is a local envvar.
- A variable that is used in more than one service is a global envvar.
- Mandatory when used in a service, a global envvar must have a local counterpart.
- Variables that do not belong to any service are by definition global.
A local envvar always starts with the service name like POSTPROCESSING_LOG_FILE
.
A global envvar always starts with OCIS_
like OCIS_LOG_FILE
.
Note that this envvar is the global representation of the local example from above.
To get a list of global envvars used in all services, see the Global Environment Variables table in the ocis admin documentation.
The envvar struct tag contains at maximum the following key/value pairs to document the lifecycle of a config variable:
introductionVersion
deprecationVersion
removalVersion
deprecationInfo
deprecationReplacement
If a new envvar is introduced, only the introductionVersion
is required.
During the development cycle, the value for theintroductionVersion
must be set to%%NEXT%%
. This placeholder will be removed by the real version number during the production releasing process.
For the documentation to show the correct value for the IV
(introduction version), our docs helper scripts will automatically generate the correct version to be printed in the documentation. If %%NEXT%%
is found in the query, it will be replaced with next
, else the value found is used.
During the releasing process for a production release, the placeholder %%NEXT%%
has to be replaced with the new production version number like %%NEXT%%
→ 7.0.0
.
If an envvar has been introduced with a particular version, the introductionVersion
gets a value accordingly. If an additional envvar like a global one is added to this existing envvar later on, the introduction version will not be changed.
See the deprecation rules documentation for more details.
When multiple envvars are defined for one purpose like a global and local one, use ;
(semicolon) to properly separate the envvars in go code. Though it is possible to separate with ,
(comma) according go rules, the current implementation of the docs generation process only recognizes semicolons as separator.