alvis9515
(Alvis Sanchez)
1
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;
kurokobo
(kurokobo)
2
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