summaryrefslogtreecommitdiffstats
path: root/docs/sections/resources/yaml/istio-ingress.yaml
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2023-03-23 14:05:45 +0100
committerAndreas Geissler <andreas-geissler@telekom.de>2023-03-27 13:00:51 +0200
commit2900765560071572d8a5c53482855048cddfac92 (patch)
tree55be0cddd23c1ca39a91a0168edc089dbddd7a3e /docs/sections/resources/yaml/istio-ingress.yaml
parent5b76eca5250aa16c7a3fcf8ef984acff2807d656 (diff)
[STRIMZI] Correction for external Access via Ingress
VirtualService TCP route added in _ingress.tpl using protocol option in onap-strimzi ingress configuration Added support for multiple ports in _ingress.tpl added Fixed port setting in onap-strimzi for external interface Add information to the documents section Issue-ID: OOM-3109 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de> Change-Id: If8507278d952ee29ceaa3f134b99d18bd6f31cb7
Diffstat (limited to 'docs/sections/resources/yaml/istio-ingress.yaml')
-rw-r--r--docs/sections/resources/yaml/istio-ingress.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/sections/resources/yaml/istio-ingress.yaml b/docs/sections/resources/yaml/istio-ingress.yaml
new file mode 100644
index 0000000000..5f000d306d
--- /dev/null
+++ b/docs/sections/resources/yaml/istio-ingress.yaml
@@ -0,0 +1,32 @@
+service:
+ # Type of service. Set to "None" to disable the service entirely
+ type: LoadBalancer
+ ports:
+ - name: status-port
+ port: 15021
+ protocol: TCP
+ targetPort: 15021
+ - name: http2
+ port: 80
+ protocol: TCP
+ targetPort: 80
+ - name: https
+ port: 443
+ protocol: TCP
+ targetPort: 443
+ - name: kafka-bootstrap
+ port: 9010
+ targetPort: 9010
+ protocol: TCP
+ - name: kafka-0
+ port: 9000
+ targetPort: 9000
+ protocol: TCP
+ - name: kafka-1
+ port: 9001
+ targetPort: 9001
+ protocol: TCP
+ - name: kafka-2
+ port: 9002
+ targetPort: 9002
+ protocol: TCP \ No newline at end of file