blob: 896d3690ffee8c4d03c1c6dbe8e774b69722ada5 [file] [log] [blame]
= Environment Trait
// Start of autogenerated code - DO NOT EDIT! (description)
The environment trait is used internally to inject standard environment variables in the integration container,
such as `NAMESPACE`, `POD_NAME` and others.
This trait is available in the following profiles: **Kubernetes, Knative, OpenShift**.
WARNING: The environment trait is a *platform trait*: disabling it may compromise the platform functionality.
// End of autogenerated code - DO NOT EDIT! (description)
// Start of autogenerated code - DO NOT EDIT! (configuration)
== Configuration
Trait properties can be specified when running any integration with the CLI:
[source,console]
----
$ kamel run --trait environment.[key]=[value] --trait environment.[key2]=[value2] integration.groovy
----
The following configuration options are available:
[cols="2m,1m,5a"]
|===
|Property | Type | Description
| environment.enabled
| bool
| Can be used to enable or disable a trait. All traits share this common property.
| environment.container-meta
| bool
| Enables injection of `NAMESPACE` and `POD_NAME` environment variables (default `true`)
|===
// End of autogenerated code - DO NOT EDIT! (configuration)