mirror of
https://github.com/ansible/awx-operator.git
synced 2026-04-19 23:30:55 +00:00
* docs: simplify README.md and make index.md to refer to it * docs: change order for pages in navigation and add missing pages * docs: fix headings to improve navigation, transform notes to admonition, fix indentation, linting issues and minor issues * docs: merge docs for using images from private registries * docs: add example to integrate LDAP configuration via extra_settings_files * Apply suggestions from code review docs: apply suggested changes Co-authored-by: Don Naro <dnaro@redhat.com> * docs: update the doc site url as same as the url in https://www.ansible.com/ecosystem/ * docs: minor fixes for hpa page * docs: expand note block * docs: apply #1904 to README.md --------- Co-authored-by: Don Naro <dnaro@redhat.com>
32 lines
1.2 KiB
Markdown
32 lines
1.2 KiB
Markdown
# Exporting Environment Variables to Containers
|
|
|
|
If you need to export custom environment variables to your containers.
|
|
|
|
| Name | Description | Default |
|
|
| ----------------- | ------------------------------------------------------ | ------- |
|
|
| task_extra_env | Environment variables to be added to Task container | '' |
|
|
| web_extra_env | Environment variables to be added to Web container | '' |
|
|
| rsyslog_extra_env | Environment variables to be added to Rsyslog container | '' |
|
|
| ee_extra_env | Environment variables to be added to EE container | '' |
|
|
|
|
!!! warning
|
|
The `ee_extra_env` will only take effect to the globally available Execution Environments. For custom `ee`, please [customize the Pod spec](https://docs.ansible.com/ansible-tower/latest/html/administration/external_execution_envs.html#customize-the-pod-spec).
|
|
|
|
Example configuration of environment variables
|
|
|
|
```yaml
|
|
spec:
|
|
task_extra_env: |
|
|
- name: MYCUSTOMVAR
|
|
value: foo
|
|
web_extra_env: |
|
|
- name: MYCUSTOMVAR
|
|
value: foo
|
|
rsyslog_extra_env: |
|
|
- name: MYCUSTOMVAR
|
|
value: foo
|
|
ee_extra_env: |
|
|
- name: MYCUSTOMVAR
|
|
value: foo
|
|
```
|