--
You received this message because you are subscribed to a topic in the Google Groups "AWX Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/awx-project/fdaImwZsqMs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to awx-project...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/awx-project/e5d14c50-207a-4511-9d0c-840225f40986n%40googlegroups.com.
Hello,We have a follow-up question regarding the manner in which you are conducting your ngnix load balancing. Do you have more than one AWX web node behind the load balancer or is it just a front end for a single instance?
apiVersion: v1
kind: Service
metadata:
labels:
app: awx-demo
name: awx-demo
namespace: awx-test
spec:
type: NodePort
ports:
- name: http
port: 80
targetPort: 30080
selector:
app: awx-demo-service
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: awx-demo
namespace: awx-test
annotations:
kubernetes.io/ingress.class: "alb"
alb.ingress.kubernetes.io/target-type: "ip"
alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}, {"HTTPS": 443}]'
alb.ingress.kubernetes.io/certificate-arn: <the cert>
alb.ingress.kubernetes.io/ssl-redirect: "443"
alb.ingress.kubernetes.io/enable-cors: "true"
spec:
rules:
- host: <some fqdn>
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: awx-demo-service
port:
number: 80
When Okta is redirecting you back to AWX are you hitting a load balancer or the node directly?
The DEBUG=True is a development setting and not something we would suggest turning on in production. If you are not running this in a production environment, or if you have a sandbox/testing environment, please let us know and we can further assist you with the steps to enable debugging.
this is my dev/testing instance
To view this discussion on the web visit https://groups.google.com/d/msgid/awx-project/61726386-c4f6-496b-b32a-a6049cb78910n%40googlegroups.com.