Hello!
I like to try to Update my Test AWX, but i have a few questions before i start:
1:
in this guide they use docker run, but not kubectl to set the awx_operator to the new version(?)
2.1:
I used this guide to get my AWX with kustomize running.
Does this code always install the most recent version?
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
# Find the latest tag here: https://github.com/ansible/awx-operator/releases
- github.com/ansible/awx-operator/config/default?ref=2.12.2
- awx-manifest.yaml
# Set the image tags to match the git version from above
images:
- name: quay.io/ansible/awx-operator
newTag: 2.12.2
# Specify a custom namespace in which to install AWX
namespace: awx
2.2:
And whats does this “newTag: 2.12.2” mean?
3:
Is there a method to copy the data from the live awx version to the new updated testserver?
So i could build a Playbook which installs the current version and tranfer the data from the “old server” so i could switch them if everything went as intendet?
4:
I had a sw in docker you could set the file directory and Database to a local one - so if you created a new container with the new version and tell where the files/db is, you dont have to use backups all the time just to get the newest version to run.
Is it posssible/recommendet to do something like this?
Thank you!