Merge pull request #248 from shanemcd/devel

Fix service type logic
This commit is contained in:
Shane McDonald
2021-04-26 14:10:43 -04:00
committed by GitHub

View File

@@ -44,7 +44,7 @@ spec:
app.kubernetes.io/component: awx
{% if tower_ingress_type | lower == "loadbalancer" %}
type: LoadBalancer
{% elif tower_ingress_type | lower == "nodeport" %}
{% elif tower_ingress_type != "none" %}
type: NodePort
{% else %}
type: ClusterIP