Skip to content

Commit 2e4fe73

Browse files
committed
fix: Incorrect format for istio gateways #1104
Signed-off-by: Son Bui <sonbv00@gmail.com>
1 parent 7af4498 commit 2e4fe73

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

artifacts/examples/istio-abtest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
portName: http
2121
portDiscovery: true
2222
gateways:
23-
- public-gateway.istio-system.svc.cluster.local
23+
- istio-system/public-gateway
2424
- mesh
2525
hosts:
2626
- app.example.com

artifacts/examples/istio-canary.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
portName: http
2222
portDiscovery: true
2323
gateways:
24-
- public-gateway.istio-system.svc.cluster.local
24+
- istio-system/public-gateway
2525
- mesh
2626
hosts:
2727
- app.example.com

charts/podinfo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ helm upgrade -i frontend flagger/podinfo \
2020
--set backend=http://backend.test:9898/echo \
2121
--set canary.enabled=true \
2222
--set canary.istioIngress.enabled=true \
23-
--set canary.istioIngress.gateway=public-gateway.istio-system.svc.cluster.local \
23+
--set canary.istioIngress.gateway=istio-system/public-gateway \
2424
--set canary.istioIngress.host=frontend.istio.example.com
2525
```
2626

charts/podinfo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ canary:
2525
istioIngress:
2626
enabled: false
2727
# Istio ingress gateway name
28-
gateway: public-gateway.istio-system.svc.cluster.local
28+
gateway: istio-system/public-gateway
2929
# external host name eg. podinfo.example.com
3030
host:
3131
analysis:

docs/gitbook/faq.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ spec:
558558
portName: http-frontend
559559
# Istio gateways (optional)
560560
gateways:
561-
- public-gateway.istio-system.svc.cluster.local
561+
- istio-system/public-gateway
562562
- mesh
563563
# Istio virtual service host names (optional)
564564
hosts:
@@ -614,7 +614,7 @@ metadata:
614614
uid: 3a4a40dd-3875-11e9-8e1d-42010a9c0fd1
615615
spec:
616616
gateways:
617-
- public-gateway.istio-system.svc.cluster.local
617+
- istio-system/public-gateway
618618
- mesh
619619
hosts:
620620
- frontend.example.com
@@ -784,7 +784,7 @@ metadata:
784784
namespace: test
785785
spec:
786786
gateways:
787-
- public-gateway.istio-system.svc.cluster.local
787+
- istio-system/public-gateway
788788
- mesh
789789
hosts:
790790
- frontend.example.com
@@ -821,7 +821,7 @@ spec:
821821
service:
822822
port: 8080
823823
gateways:
824-
- public-gateway.istio-system.svc.cluster.local
824+
- istio-system/public-gateway
825825
hosts:
826826
- my-site.com
827827
match:
@@ -838,7 +838,7 @@ spec:
838838
service:
839839
port: 8080
840840
gateways:
841-
- public-gateway.istio-system.svc.cluster.local
841+
- istio-system/public-gateway
842842
hosts:
843843
- my-site.com
844844
match:

docs/gitbook/install/flagger-install-on-google-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ spec:
383383
hosts:
384384
- "grafana.example.com"
385385
gateways:
386-
- public-gateway.istio-system.svc.cluster.local
386+
- istio-system/public-gateway
387387
http:
388388
- route:
389389
- destination:

docs/gitbook/tutorials/canary-helm-gitops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ helm upgrade -i frontend flagger/podinfo \
5050
--set backend=http://backend.test:9898/echo \
5151
--set canary.enabled=true \
5252
--set canary.istioIngress.enabled=true \
53-
--set canary.istioIngress.gateway=public-gateway.istio-system.svc.cluster.local \
53+
--set canary.istioIngress.gateway=istio-system/public-gateway \
5454
--set canary.istioIngress.host=frontend.istio.example.com
5555
```
5656

@@ -278,7 +278,7 @@ spec:
278278
enabled: true
279279
istioIngress:
280280
enabled: true
281-
gateway: public-gateway.istio-system.svc.cluster.local
281+
gateway: istio-system/public-gateway
282282
host: frontend.istio.example.com
283283
loadtest:
284284
enabled: true

docs/gitbook/tutorials/istio-ab-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ spec:
9292
port: 9898
9393
# Istio gateways (optional)
9494
gateways:
95-
- public-gateway.istio-system.svc.cluster.local
95+
- istio-system/public-gateway
9696
# Istio virtual service host names (optional)
9797
hosts:
9898
- app.example.com

docs/gitbook/tutorials/istio-progressive-delivery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ spec:
9595
targetPort: 9898
9696
# Istio gateways (optional)
9797
gateways:
98-
- public-gateway.istio-system.svc.cluster.local
98+
- istio-system/public-gateway
9999
# Istio virtual service host names (optional)
100100
hosts:
101101
- app.example.com
@@ -326,7 +326,7 @@ spec:
326326
targetPort: 9898
327327
# Istio gateways (optional)
328328
gateways:
329-
- public-gateway.istio-system.svc.cluster.local
329+
- istio-system/public-gateway
330330
# Istio virtual service host names (optional)
331331
hosts:
332332
- app.example.com

docs/gitbook/tutorials/zero-downtime-deployments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ spec:
172172
service:
173173
port: 9898
174174
gateways:
175-
- public-gateway.istio-system.svc.cluster.local
175+
- istio-system/public-gateway
176176
hosts:
177177
- app.example.com
178178
retries:

0 commit comments

Comments
 (0)