Remove ingress http port helm override

Previously, the http port for kube-system ingress was set to 8081 in
the helm override due to conflicts with port 80 and 8080 when the oam
floating IP was used.
Since the default local domain or a configured FQDN is now used to
connect to horizon and novncproxy, the http port for ingress needs
to be set back to the default port 80 for http.

Closes-bug: 1822212

Change-Id: I253ea54294703f74b042202bf444863f3a888cf0
Signed-off-by: Teresa Ho <teresa.ho@windriver.com>
This commit is contained in:
Teresa Ho 2019-04-01 22:13:20 -04:00
parent 416dbdd047
commit 9e486fd590
1 changed files with 0 additions and 10 deletions

View File

@ -24,7 +24,6 @@ class IngressHelm(base.BaseHelm):
]
def get_overrides(self, namespace=None):
# Currently have conflicts with ports 80 and 8080, use 8081 for now
overrides = {
common.HELM_NS_KUBE_SYSTEM: {
'pod': {
@ -39,15 +38,6 @@ class IngressHelm(base.BaseHelm):
'network': {
'host_namespace': 'true'
},
'endpoints': {
'ingress': {
'port': {
'http': {
'default': 8081
}
}
}
}
},
common.HELM_NS_OPENSTACK: {
'pod': {