Skip to content

Commit fd728df

Browse files
authored
Upgrade mixer to 0.2.0-c570a67 (#524)
* Upgrade mixer to 0.2.0-c570a67 * Fix linter issue in devel/fortio/httprunner_test.go
1 parent 7b83910 commit fd728df

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

devel/fortio/httprunner_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ func TestHTTPRunner(t *testing.T) {
3737
},
3838
URL: baseURL,
3939
}
40-
res, err := RunHTTPTest(&opts)
40+
_, err := RunHTTPTest(&opts)
4141
if err == nil {
4242
t.Error("Expecting an error but didn't get it when not using full url")
4343
}
4444
opts.URL = baseURL + "foo/bar"
45-
res, err = RunHTTPTest(&opts)
45+
res, err := RunHTTPTest(&opts)
4646
if err != nil {
4747
t.Error(err)
4848
return

install/kubernetes/addons/grafana.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
spec:
2727
containers:
2828
- name: grafana
29-
image: gcr.io/istio-testing/grafana:87cdc595-689d-4779-be29-ac845d47492e
29+
image: gcr.io/istio-io/grafana:0.2.0-c570a67
3030
imagePullPolicy: Always
3131
ports:
3232
- containerPort: 3000

install/kubernetes/istio-auth-with-cluster-ca.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
- name: config-volume
6060
mountPath: /etc/statsd
6161
- name: mixer
62-
image: gcr.io/istio-testing/mixer:87cdc595-689d-4779-be29-ac845d47492e
62+
image: gcr.io/istio-io/mixer:0.2.0-c570a67
6363
imagePullPolicy: Always
6464
ports:
6565
- containerPort: 9091

install/kubernetes/istio-auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
- name: config-volume
6060
mountPath: /etc/statsd
6161
- name: mixer
62-
image: gcr.io/istio-testing/mixer:87cdc595-689d-4779-be29-ac845d47492e
62+
image: gcr.io/istio-io/mixer:0.2.0-c570a67
6363
imagePullPolicy: Always
6464
ports:
6565
- containerPort: 9091

install/kubernetes/istio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
- name: config-volume
6060
mountPath: /etc/statsd
6161
- name: mixer
62-
image: gcr.io/istio-testing/mixer:87cdc595-689d-4779-be29-ac845d47492e
62+
image: gcr.io/istio-io/mixer:0.2.0-c570a67
6363
imagePullPolicy: Always
6464
ports:
6565
- containerPort: 9091

istio.VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# install/updateVersion.sh (see install/README.md)
33
export CA_HUB="docker.io/istio"
44
export CA_TAG="0.1.5"
5-
export MIXER_HUB="gcr.io/istio-testing"
6-
export MIXER_TAG="87cdc595-689d-4779-be29-ac845d47492e"
5+
export MIXER_HUB="gcr.io/istio-io"
6+
export MIXER_TAG="0.2.0-c570a67"
77
export ISTIOCTL_URL="https://storage.googleapis.com/istio-artifacts/pilot/5633d45a99138892a0ba0d380dff5c587583edd3/artifacts/istioctl"
88
export PILOT_HUB="gcr.io/istio-testing"
99
export PILOT_TAG="5633d45a99138892a0ba0d380dff5c587583edd3"

0 commit comments

Comments
 (0)