-
Notifications
You must be signed in to change notification settings - Fork 637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README.md #1197
Merged
Merged
Update README.md #1197
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -55,6 +55,7 @@ An [Ansible AWX](https://github.com/ansible/awx) operator for Kubernetes built w | |||||
* [Cluster-scope to Namespace-scope considerations](#cluster-scope-to-namespace-scope-considerations) | ||||||
* [Project is now based on v1.x of the operator-sdk project](#project-is-now-based-on-v1x-of-the-operator-sdk-project) | ||||||
* [Steps to upgrade](#steps-to-upgrade) | ||||||
* [Disable IPV6](#IPV6) | ||||||
* [Add Execution Nodes](#adding-execution-nodes) | ||||||
* [Custom Receptor CA](#custom-receptor-ca) | ||||||
* [Contributing](#contributing) | ||||||
|
@@ -1285,6 +1286,26 @@ Then install the new AWX Operator by following the instructions in [Basic Instal | |||||
|
||||||
Once the new AWX Operator is up and running, your AWX deployment will also be upgraded. | ||||||
|
||||||
### 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, tou can set the `ipv6_disabled` flag on the AWX | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a small typo here:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you very much @rooftopcellist can you please check now. |
||||||
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 | ||||||
``` | ||||||
|
||||||
### Adding Execution Nodes | ||||||
Starting with AWX Operator v0.30.0 and AWX v21.7.0, standalone execution nodes can be added to your deployments. | ||||||
See [AWX execution nodes docs](https://github.com/ansible/awx/blob/devel/docs/execution_nodes.md) for information about this feature. | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make this link work properly, you'll need:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much @rooftopcellist can you please check now.