diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-11-21 14:13:23 +0100 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2022-11-30 12:46:30 +0000 |
commit | df69a9ce6072acd0edb5aa7b87c0a82ebdd04249 (patch) | |
tree | 77ac5838cc4dc3fcd981bcd8c88f201a65ddf27d /docs/sections/resources/yaml/kiali-ingress.yaml | |
parent | 4a490084122eba1ca2cc704e6518cbf88a492eb4 (diff) |
[DOC] ServiceMesh documentation
Add instructions for SM Installation (addon guide), ONAP configuration
(customize_override) and access guide
Issue-ID: OOM-3006
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: I31acad2c8c84ed3382e1c43897333f9ff565ff6d
(cherry picked from commit 9eb2c11d39161671070085b21f73847b61ea8e5f)
Diffstat (limited to 'docs/sections/resources/yaml/kiali-ingress.yaml')
-rw-r--r-- | docs/sections/resources/yaml/kiali-ingress.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/sections/resources/yaml/kiali-ingress.yaml b/docs/sections/resources/yaml/kiali-ingress.yaml new file mode 100644 index 0000000000..44f806203a --- /dev/null +++ b/docs/sections/resources/yaml/kiali-ingress.yaml @@ -0,0 +1,30 @@ +apiVersion: networking.istio.io/v1beta1 +kind: Gateway +metadata: + name: kiali-gateway +spec: + selector: + istio: ingressgateway + servers: + - hosts: + - kiali.simpledemo.onap.org + port: + name: http + number: 80 + protocol: HTTP +--- +apiVersion: networking.istio.io/v1beta1 +kind: VirtualService +metadata: + name: kiali-service +spec: + hosts: + - kiali.simpledemo.onap.org + gateways: + - kiali-gateway + http: + - route: + - destination: + port: + number: 20001 + host: kiali
\ No newline at end of file |