awx 12 upgrade

Hello everyone , I need to upgrade my awx 12 to the latest version and I need help

Hi,

What did you need help with specifically?

You’re probably going to want to follow this guide for migrating from the older docker based installs to awx-operator installs

https://github.com/ansible/awx-operator/blob/devel/docs/migration.md

Seth

Hey Seth

I have two issues one as you suggested I am going to migrate away from a docker based AWX instance to an operator one ,
the other thing is that when I spun up the operator it is in load balancer mode and the IP range is absolutely not in the range of my network , so in order to get to webUI on the operator I have to be on the Linux VM
what am I doing wrong?

(attachments)

image002.png

Hey Bram - can you share a copy of your deployment config and any relevant logs/snippets of logs showing what address your AWX instance is getting ?

Would you let me know how can I get those info ?

(attachments)


I believe default service type for Kubernetes based AWX deployment is ClusterIP. Is your AWX installation on-premise or cloud?
You may want to share the awx instance YAML configuration that you ‘apply’ after the operator install.

Thanks

Bram,

Looks like you’ve used nodeport – we just pushed in a fix that allows you to specific the nodeport_port (so do VERSION=devel make deploy). You can choose the port the service runs on. Note that it must be in the 30000-32767 range. https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport

You can type minikube service awx-demo-service --namespace=mynamespace --url to get the exposed external URL

Seth