Skip to content

Commit f6163c3

Browse files
committed
update istio 1.7.3
1 parent b90de6e commit f6163c3

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

kustomize/istio/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace: istio-system
22
bases:
33
- ../base/flagger/
4+
- ../base/prometheus/
45
patchesStrategicMerge:
56
- patch.yaml

kustomize/istio/patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
args:
1111
- -log-level=info
1212
- -mesh-provider=istio
13-
- -metrics-server=http://prometheus:9090
13+
- -metrics-server=http://flagger-prometheus:9090
1414
- -slack-user=flagger
1515
- -slack-channel=
1616
- -slack-url=

test/e2e-istio-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
spec:
1616
provider:
1717
type: prometheus
18-
address: http://prometheus.istio-system:9090
18+
address: http://flagger-prometheus.istio-system:9090
1919
query: |
2020
histogram_quantile(
2121
0.99,

test/e2e-istio.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22

33
set -o errexit
44

5-
ISTIO_VER="1.6.7"
5+
ISTIO_VER="1.7.3"
66
REPO_ROOT=$(git rev-parse --show-toplevel)
77

88
echo ">>> Downloading Istio ${ISTIO_VER}"
99
cd ${REPO_ROOT}/bin && \
1010
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=${ISTIO_VER} sh -
1111

1212
echo ">>> Installing Istio ${ISTIO_VER}"
13-
${REPO_ROOT}/bin/istio-${ISTIO_VER}/bin/istioctl manifest apply --set profile=default \
13+
${REPO_ROOT}/bin/istio-${ISTIO_VER}/bin/istioctl manifest install --set profile=default \
1414
--set values.pilot.resources.requests.cpu=100m \
15-
--set values.pilot.resources.requests.memory=100Mi \
16-
--set values.global.configValidation=false
17-
18-
kubectl -n istio-system rollout status deployment/prometheus
15+
--set values.pilot.resources.requests.memory=100Mi
1916

2017
kubectl -n istio-system get all
2118

0 commit comments

Comments
 (0)