diff options
author | Fiachra Corcoran <fiachra.corcoran@est.tech> | 2022-11-30 09:20:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-11-30 09:20:10 +0000 |
commit | d51b5408da62e418132803b5738d0e1755654ba8 (patch) | |
tree | 7506ef04c3d3e793839d63e9f29d2eb806c9d117 /kubernetes/onap/values.yaml | |
parent | 9e0814551cf6e87a553d9066c18854e02c71cea5 (diff) | |
parent | c27078435ace81f7723fa06dc35b446a6c9fc307 (diff) |
Merge "[COMMON] Correct Ingress template to create Istio GW/VS"
Diffstat (limited to 'kubernetes/onap/values.yaml')
-rwxr-xr-x | kubernetes/onap/values.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/kubernetes/onap/values.yaml b/kubernetes/onap/values.yaml index 48f14895a1..bdbf5ab323 100755 --- a/kubernetes/onap/values.yaml +++ b/kubernetes/onap/values.yaml @@ -146,9 +146,26 @@ global: # Global ingress configuration ingress: + # generally enable ingress for ONAP components enabled: false + # enable all component's Ingress interfaces + enable_all: false + # default Ingress base URL + # can be overwritten in component vy setting ingress.baseurlOverride virtualhost: baseurl: "simpledemo.onap.org" + # All http requests via ingress will be redirected on Ingress controller + # only valid for Istio Gateway (ServiceMesh enabled) + config: + ssl: "redirect" + # you can set an own Secret containing a certificate + # only valid for Istio Gateway (ServiceMesh enabled) + # tls: + # secret: 'my-ingress-cert' + + # optional: Namespace of the Istio IngressGateway + # only valid for Istio Gateway (ServiceMesh enabled) + namespace: istio-ingress # Global Service Mesh configuration # POC Mode, don't use it in production |