mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-16 05:52:15 +11:00
feat: bump operator version to 0.15.0
This commit is contained in:
parent
e98a6fed27
commit
45775b06cf
5 changed files with 18 additions and 18 deletions
18
README.md
18
README.md
|
|
@ -33,15 +33,15 @@ An example implementation of AWX on single node K3s using AWX Operator, with eas
|
||||||
- Tested on:
|
- Tested on:
|
||||||
- CentOS 8 (Minimal)
|
- CentOS 8 (Minimal)
|
||||||
- Products that will be deployed:
|
- Products that will be deployed:
|
||||||
- AWX Operator 0.14.0
|
- AWX Operator 0.15.0
|
||||||
- AWX 19.4.0
|
- AWX 19.5.0
|
||||||
- PostgreSQL 12
|
- PostgreSQL 12
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
- [K3s - Lightweight Kubernetes](https://rancher.com/docs/k3s/latest/en/)
|
- [K3s - Lightweight Kubernetes](https://rancher.com/docs/k3s/latest/en/)
|
||||||
- [INSTALL.md on ansible/awx](https://github.com/ansible/awx/blob/19.4.0/INSTALL.md) @19.4.0
|
- [INSTALL.md on ansible/awx](https://github.com/ansible/awx/blob/19.5.0/INSTALL.md) @19.5.0
|
||||||
- [README.md on ansible/awx-operator](https://github.com/ansible/awx-operator/blob/0.14.0/README.md) @0.14.0
|
- [README.md on ansible/awx-operator](https://github.com/ansible/awx-operator/blob/0.15.0/README.md) @0.15.0
|
||||||
|
|
||||||
## Procedure
|
## Procedure
|
||||||
|
|
||||||
|
|
@ -75,7 +75,7 @@ Install specified version of AWX Operator. Note that this procedure is applicabl
|
||||||
cd ~
|
cd ~
|
||||||
git clone https://github.com/ansible/awx-operator.git
|
git clone https://github.com/ansible/awx-operator.git
|
||||||
cd awx-operator
|
cd awx-operator
|
||||||
git checkout 0.14.0
|
git checkout 0.15.0
|
||||||
```
|
```
|
||||||
|
|
||||||
Export the name of the namespace where you want to deploy AWX Operator as the environment variable `NAMESPACE` and run `make deploy`. The default namespace is `awx`.
|
Export the name of the namespace where you want to deploy AWX Operator as the environment variable `NAMESPACE` and run `make deploy`. The default namespace is `awx`.
|
||||||
|
|
@ -184,7 +184,7 @@ kubectl apply -k base
|
||||||
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager
|
||||||
...
|
...
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
|
|
@ -281,7 +281,7 @@ kubectl apply -f backup/awxbackup.yaml
|
||||||
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWXBackup, awxbackup-2021-06-06/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWXBackup, awxbackup-2021-06-06/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
localhost : ok=3 changed=0 unreachable=0 failed=0 skipped=7 rescued=0 ignored=0
|
localhost : ok=3 changed=0 unreachable=0 failed=0 skipped=7 rescued=0 ignored=0
|
||||||
|
|
@ -381,7 +381,7 @@ kubectl apply -f restore/awxrestore.yaml
|
||||||
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
localhost : ok=56 changed=0 unreachable=0 failed=0 skipped=35 rescued=0 ignored=0
|
localhost : ok=56 changed=0 unreachable=0 failed=0 skipped=35 rescued=0 ignored=0
|
||||||
|
|
@ -430,4 +430,4 @@ kubectl apply -f awx-secret-tls.yaml
|
||||||
- [📝Redirect HTTP to HTTPS](tips/https-redirection.md)
|
- [📝Redirect HTTP to HTTPS](tips/https-redirection.md)
|
||||||
- [📝Uninstall deployed resouces](tips/uninstall.md)
|
- [📝Uninstall deployed resouces](tips/uninstall.md)
|
||||||
- [📝Deploy older version of AWX Operator](tips/deploy-older-operator.md)
|
- [📝Deploy older version of AWX Operator](tips/deploy-older-operator.md)
|
||||||
- [📝Upgrade AWX Operator to 0.14.0 or later](tips/upgrade-operator.md)
|
- [📝Upgrade AWX Operator from 0.13.0 or earlier to 0.14.0 or later](tips/upgrade-operator.md)
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,10 @@ metadata:
|
||||||
name: awx
|
name: awx
|
||||||
spec:
|
spec:
|
||||||
# These parameters are designed for use with:
|
# These parameters are designed for use with:
|
||||||
# - AWX Operator: 0.14.0
|
# - AWX Operator: 0.15.0
|
||||||
# https://github.com/ansible/awx-operator/blob/0.14.0/README.md
|
# https://github.com/ansible/awx-operator/blob/0.15.0/README.md
|
||||||
# - AWX: 19.4.0
|
# - AWX: 19.5.0
|
||||||
# https://github.com/ansible/awx/blob/19.4.0/INSTALL.md
|
# https://github.com/ansible/awx/blob/19.5.0/INSTALL.md
|
||||||
|
|
||||||
admin_user: admin
|
admin_user: admin
|
||||||
admin_password_secret: awx-admin-password
|
admin_password_secret: awx-admin-password
|
||||||
|
|
|
||||||
|
|
@ -4,4 +4,4 @@
|
||||||
- [📝Redirect HTTP to HTTPS](https-redirection.md)
|
- [📝Redirect HTTP to HTTPS](https-redirection.md)
|
||||||
- [📝Uninstall deployed resouces](uninstall.md)
|
- [📝Uninstall deployed resouces](uninstall.md)
|
||||||
- [📝Deploy older version of AWX Operator](deploy-older-operator.md)
|
- [📝Deploy older version of AWX Operator](deploy-older-operator.md)
|
||||||
- [📝Upgrade AWX Operator to 0.14.0 or later](upgrade-operator.md)
|
- [📝Upgrade AWX Operator from 0.13.0 or earlier to 0.14.0 or later](upgrade-operator.md)
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ awx.awx.ansible.com/awx configured 👈👈👈
|
||||||
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager --tail=100
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager --tail=100
|
||||||
...
|
...
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
|
|
@ -115,7 +115,7 @@ kubectl -n awx patch awx awx --type=merge \
|
||||||
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
Once this completed, the logs of `deployments/awx-operator-controller-manager` end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager --tail=100
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager --tail=100
|
||||||
...
|
...
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<!-- omit in toc -->
|
<!-- omit in toc -->
|
||||||
# Upgrade AWX Operator to 0.14.0 or later
|
# Upgrade AWX Operator from 0.13.0 or earlier to 0.14.0 or later
|
||||||
|
|
||||||
[As described in the documentation](https://github.com/ansible/awx-operator/blob/0.14.0/README.md#v0140), AWX Operator changed from cluster scope to namespace scope in `0.14.0`. Also, the Operator SDK `1.x` is used.
|
[As described in the documentation](https://github.com/ansible/awx-operator/blob/0.14.0/README.md#v0140), AWX Operator changed from cluster scope to namespace scope in `0.14.0`. Also, the Operator SDK `1.x` is used.
|
||||||
|
|
||||||
|
|
@ -110,7 +110,7 @@ Once AWX Operator is up and running, it will start rolling out a new version of
|
||||||
We can monitor the progress in the logs of `deployments/awx-operator-controller-manager`. Once this completed, the logs end with:
|
We can monitor the progress in the logs of `deployments/awx-operator-controller-manager`. Once this completed, the logs end with:
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c manager
|
$ kubectl -n awx logs -f deployments/awx-operator-controller-manager -c awx-manager
|
||||||
...
|
...
|
||||||
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx) -----
|
||||||
PLAY RECAP *********************************************************************
|
PLAY RECAP *********************************************************************
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue