mirror of
https://github.com/ansible/awx-operator.git
synced 2026-04-05 18:23:11 +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>
20 lines
813 B
Markdown
20 lines
813 B
Markdown
# Disable IPv6
|
|
|
|
Starting with AWX Operator release 0.24.0, [IPv6 was enabled in ngnix configuration](https://github.com/ansible/awx-operator/pull/950) which causes
|
|
upgrades and installs to fail in environments where IPv6 is not allowed. Starting in 1.1.1 release, you can set the `ipv6_disabled` flag on the AWX
|
|
spec. If you need to use an AWX operator version between 0.24.0 and 1.1.1 in an IPv6 disabled environment, it is suggested to enabled ipv6 on worker
|
|
nodes.
|
|
|
|
In order to disable ipv6 on ngnix configuration (awx-web container), add following to the AWX spec.
|
|
|
|
The following variables are customizable:
|
|
|
|
| Name | Description | Default |
|
|
| ------------- | ---------------------- | ------- |
|
|
| ipv6_disabled | Flag to disable ipv6 | false |
|
|
|
|
```yaml
|
|
spec:
|
|
ipv6_disabled: true
|
|
```
|