Hi,
I've been using AWX since version 3.0.0 with local docker which is easy to manage but since development moved to kubernetes I've been struggling to configure AWX correctly.
This guide works by exposing port 8080 and port-forward a given port [30000-33000].
I've searched github, stackoverflow and google but found no useful guide that shows how to implement https with custom certificate in regards to AWX and minikube.
The official operator documentation briefly shows a ingress and loadbalancer configuration but nothing about what to do in detail.
Tried:
---
kind: AWX
metadata:
name: awx
namespace: awx
spec:
ingress_type: ingress
ingress_tls_secret: awx-ingress-tls
hostname: awx.local.domain
service_type: LoadBalancer
loadbalancer_protocol: https
loadbalancer_port: 443
projects_persistence: true
projects_storage_size: 15Gi
It is however unclear what to expose and port-forward.
Any help much appreciated :-/
Thanks