├── .github ├── dependabot.yml └── workflows │ ├── ci.yaml │ ├── committed-chart.yaml │ ├── release.yml │ └── reusable-nox.yml ├── .gitignore ├── .helm └── starter │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── awx-deploy.yaml │ ├── extra-list.yaml │ ├── operator-controller │ │ ├── _container-override.tpl │ │ ├── _operator-controller.tpl │ │ └── controller-overlay.yaml │ ├── postgres-config.yaml │ ├── secrets │ │ ├── _helpers.tpl │ │ ├── admin-password-secret.yaml │ │ ├── cp-pull-credentials-secret.yaml │ │ ├── custom-certs-secret.yaml │ │ ├── ee-pull-credentials-secret.yaml │ │ ├── ingress-tls-secret.yaml │ │ ├── ldap-password-secret.yaml │ │ ├── route-tls-secret.yaml │ │ └── secret-key-secret.yaml │ └── storage │ │ ├── _helpers.tpl │ │ ├── postgres-pv.yaml │ │ └── projects-pv.yaml │ └── values.yaml ├── .readthedocs.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── DCO ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── SECURITY.md ├── charts ├── .gitkeep └── awx-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── crds │ ├── customresourcedefinition-awxbackups.awx.ansible.com.yaml │ ├── customresourcedefinition-awxmeshingresses.awx.ansible.com.yaml │ ├── customresourcedefinition-awxrestores.awx.ansible.com.yaml │ └── customresourcedefinition-awxs.awx.ansible.com.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── awx-deploy.yaml │ ├── clusterrole-awx-operator-metrics-reader.yaml │ ├── clusterrole-awx-operator-proxy-role.yaml │ ├── clusterrolebinding-awx-operator-proxy-rolebinding.yaml │ ├── configmap-awx-operator-awx-manager-config.yaml │ ├── extra-list.yaml │ ├── operator-controller │ │ ├── _container-override.tpl │ │ ├── _operator-controller.tpl │ │ └── controller-overlay.yaml │ ├── postgres-config.yaml │ ├── role-awx-operator-awx-manager-role.yaml │ ├── role-awx-operator-leader-election-role.yaml │ ├── rolebinding-awx-operator-awx-manager-rolebinding.yaml │ ├── rolebinding-awx-operator-leader-election-rolebinding.yaml │ ├── secrets │ │ ├── _helpers.tpl │ │ ├── admin-password-secret.yaml │ │ ├── cp-pull-credentials-secret.yaml │ │ ├── custom-certs-secret.yaml │ │ ├── ee-pull-credentials-secret.yaml │ │ ├── ingress-tls-secret.yaml │ │ ├── ldap-password-secret.yaml │ │ ├── route-tls-secret.yaml │ │ └── secret-key-secret.yaml │ ├── service-awx-operator-controller-manager-metrics-service.yaml │ ├── serviceaccount-awx-operator-controller-manager.yaml │ └── storage │ │ ├── _helpers.tpl │ │ ├── postgres-pv.yaml │ │ └── projects-pv.yaml │ └── values.yaml ├── clone-awx-operator.py ├── docs ├── contributing.md ├── helm-install-on-existing-cluster.md ├── index.md ├── requirements.in └── requirements.txt ├── mkdocs.yml └── noxfile.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/committed-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.github/workflows/committed-chart.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-nox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.github/workflows/reusable-nox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /.helm/starter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/.helmignore -------------------------------------------------------------------------------- /.helm/starter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/Chart.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/_helpers.tpl -------------------------------------------------------------------------------- /.helm/starter/templates/awx-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/awx-deploy.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/extra-list.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/operator-controller/_container-override.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/operator-controller/_container-override.tpl -------------------------------------------------------------------------------- /.helm/starter/templates/operator-controller/_operator-controller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/operator-controller/_operator-controller.tpl -------------------------------------------------------------------------------- /.helm/starter/templates/operator-controller/controller-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/operator-controller/controller-overlay.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/postgres-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/postgres-config.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/_helpers.tpl -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/admin-password-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/admin-password-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/cp-pull-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/cp-pull-credentials-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/custom-certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/custom-certs-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/ee-pull-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/ee-pull-credentials-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/ingress-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/ingress-tls-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/ldap-password-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/ldap-password-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/route-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/route-tls-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/secrets/secret-key-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/secrets/secret-key-secret.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/storage/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/storage/_helpers.tpl -------------------------------------------------------------------------------- /.helm/starter/templates/storage/postgres-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/storage/postgres-pv.yaml -------------------------------------------------------------------------------- /.helm/starter/templates/storage/projects-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/templates/storage/projects-pv.yaml -------------------------------------------------------------------------------- /.helm/starter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.helm/starter/values.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/COPYING -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/SECURITY.md -------------------------------------------------------------------------------- /charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/awx-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/.helmignore -------------------------------------------------------------------------------- /charts/awx-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/awx-operator/crds/customresourcedefinition-awxbackups.awx.ansible.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/crds/customresourcedefinition-awxbackups.awx.ansible.com.yaml -------------------------------------------------------------------------------- /charts/awx-operator/crds/customresourcedefinition-awxmeshingresses.awx.ansible.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/crds/customresourcedefinition-awxmeshingresses.awx.ansible.com.yaml -------------------------------------------------------------------------------- /charts/awx-operator/crds/customresourcedefinition-awxrestores.awx.ansible.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/crds/customresourcedefinition-awxrestores.awx.ansible.com.yaml -------------------------------------------------------------------------------- /charts/awx-operator/crds/customresourcedefinition-awxs.awx.ansible.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/crds/customresourcedefinition-awxs.awx.ansible.com.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/awx-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/awx-operator/templates/awx-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/awx-deploy.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/clusterrole-awx-operator-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/clusterrole-awx-operator-metrics-reader.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/clusterrole-awx-operator-proxy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/clusterrole-awx-operator-proxy-role.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/clusterrolebinding-awx-operator-proxy-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/clusterrolebinding-awx-operator-proxy-rolebinding.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/configmap-awx-operator-awx-manager-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/configmap-awx-operator-awx-manager-config.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/extra-list.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/operator-controller/_container-override.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/operator-controller/_container-override.tpl -------------------------------------------------------------------------------- /charts/awx-operator/templates/operator-controller/_operator-controller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/operator-controller/_operator-controller.tpl -------------------------------------------------------------------------------- /charts/awx-operator/templates/operator-controller/controller-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/operator-controller/controller-overlay.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/postgres-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/postgres-config.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/role-awx-operator-awx-manager-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/role-awx-operator-awx-manager-role.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/role-awx-operator-leader-election-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/role-awx-operator-leader-election-role.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/rolebinding-awx-operator-awx-manager-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/rolebinding-awx-operator-awx-manager-rolebinding.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/rolebinding-awx-operator-leader-election-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/rolebinding-awx-operator-leader-election-rolebinding.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/_helpers.tpl -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/admin-password-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/admin-password-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/cp-pull-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/cp-pull-credentials-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/custom-certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/custom-certs-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/ee-pull-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/ee-pull-credentials-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/ingress-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/ingress-tls-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/ldap-password-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/ldap-password-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/route-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/route-tls-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/secrets/secret-key-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/secrets/secret-key-secret.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/service-awx-operator-controller-manager-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/service-awx-operator-controller-manager-metrics-service.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/serviceaccount-awx-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/serviceaccount-awx-operator-controller-manager.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/storage/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/storage/_helpers.tpl -------------------------------------------------------------------------------- /charts/awx-operator/templates/storage/postgres-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/storage/postgres-pv.yaml -------------------------------------------------------------------------------- /charts/awx-operator/templates/storage/projects-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/templates/storage/projects-pv.yaml -------------------------------------------------------------------------------- /charts/awx-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/charts/awx-operator/values.yaml -------------------------------------------------------------------------------- /clone-awx-operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/clone-awx-operator.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/helm-install-on-existing-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/docs/helm-install-on-existing-cluster.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/awx-operator-helm/HEAD/noxfile.py --------------------------------------------------------------------------------