Christian Adams
Christian Adams
So let me see if I have this right: * The goal here is for the user to have a deployment that does not have the PG Password exposed in...
I built and deployed an operator image from this PR and created a 21.5.0 AWX deployment with it to check if there was any backwards compatibility issues. I was able...
These changes merged as part of https://github.com/ansible/awx-operator/pull/977/files, which also had the needed CSV parameter entries.
@miles-w-3 I added the gh-pages branch and staged and promoted a fake release on my fork using this PR and it worked for me. * https://github.com/rooftopcellist/awx-operator/releases/tag/0.26.1 ``` [chadams@chadams-work tmp]$ helm...
@fosterseth This task was added for the following scenario: * User changes the password in the admin_password secret after deploying AWX * User expects that the password is updated for...
The current behavior is undesirable because a user may want to change the admin password for security reasons, but currently it would be reset to the value in the awx-admin-password...
The fix has been merged. All ldap group types classes are now imported, making the hack mentioned above no longer need. https://github.com/ansible/awx-operator/pull/961 Thank you @mac-chaffee !
Hi @d-rupp, I like your idea of contributing back a playbook to install the operator and deploy an example AWX instance. FYI, we already have a playbook [here](https://github.com/ansible/awx-operator/blob/devel/ansible/instantiate-awx-deployment.yml) that just...
Could you also move this to `./ansible` instead of `./playbooks`? The `./playbooks` directory is somewhat managed by the operator-sdk, and may be modified when doing operator-sdk upgrades. To avoid any...
@d-rupp ``` # Deploy AWX ansible-playbook ansible/instantiate-awx-deployment.yml -e namespace=$NAMESPACE -e image=quay.io/ansible/awx -e image_version=latest -e service_type=clusterip -e ingress_type=route # Deploy operator using kustomization ansible-playbook ansible/deploy-awx-operator-kustomization.yml -e awx_namespace=ca-awx # Deploy both using...