How to enable https in awx

Hello team, I have installed awx with k3s, but now I want to enable https in awx, would I like to know what steps to follow for said execution?

In awx 2.6

Regards;

To enable HTTPS for AWX, you should use Ingress with TLS configuration.

Create TLS Secret first,

then specify following three lines for AWX CR and apply it.

---
spec:
  ...
  ingress_type: ingress
  ingress_tls_secret: <your tls secret>
  hostname: <your fqdn>
  ...

Refer to the AWX Operator docs for details for the specs:

3 Likes