Skip to content

Commit

Permalink
feat(kuma-dp) update envoy to v1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubdyszkiewicz committed Jul 24, 2020
1 parent fe00f5e commit abf4183
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/dockerfiles/Dockerfile.universal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# using Envoy's base to inherit the Envoy binary
FROM envoyproxy/envoy-alpine:v1.14.3
FROM envoyproxy/envoy-alpine:v1.15.0

ADD $KUMA_ROOT/build/artifacts-linux-amd64/kuma-cp/kuma-cp /usr/bin
ADD $KUMA_ROOT/build/artifacts-linux-amd64/kuma-dp/kuma-dp /usr/bin
Expand All @@ -20,7 +20,7 @@ RUN apk add --no-cache openssh curl \
&& ssh-keygen -A \
&& sed -i s/#PermitRootLogin.*/PermitRootLogin\ yes/ /etc/ssh/sshd_config \
&& sed -i s/#PermitEmptyPasswords.*/PermitEmptyPasswords\ yes/ /etc/ssh/sshd_config \
&& echo "root:" | chpasswd
&& echo "root:*" | chpasswd -e

# do not detach (-D), log to stderr (-e)
ENTRYPOINT ["/usr/sbin/sshd", "-D", "-e"]
4 changes: 2 additions & 2 deletions tools/e2e/examples/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ services:
# Notice that we're using Envoy as a simple HTTP server with predefined responses.
#
kuma-example-backend-v1:
image: envoyproxy/envoy-alpine:v1.14.3
image: envoyproxy/envoy-alpine:v1.15.0
command:
- sh
- -c
Expand Down Expand Up @@ -407,7 +407,7 @@ services:
# Notice that we're using Envoy as a simple HTTP server with predefined responses.
#
kuma-example-backend-v2:
image: envoyproxy/envoy-alpine:v1.14.3
image: envoyproxy/envoy-alpine:v1.15.0
command:
- sh
- -c
Expand Down
4 changes: 2 additions & 2 deletions tools/e2e/examples/minikube/kuma-routing/kuma-routing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ spec:
spec:
containers:
- name: kuma-example-backend
image: envoyproxy/envoy-alpine:v1.14.3
image: envoyproxy/envoy-alpine:v1.15.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 7070
Expand Down Expand Up @@ -216,7 +216,7 @@ spec:
spec:
containers:
- name: kuma-example-backend
image: envoyproxy/envoy-alpine:v1.14.3
image: envoyproxy/envoy-alpine:v1.15.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 7070
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/distros.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DISTRIBUTIONS=(debian:linux ubuntu:linux rhel:linux centos:linux darwin:darwin)
BINTRAY_ENDPOINT="https://api.bintray.com/"
BINTRAY_SUBJECT="kong"
[ -z "$BINTRAY_REPOSITORY" ] && BINTRAY_REPOSITORY="kuma"
ENVOY_VERSION=1.14.3
ENVOY_VERSION=1.15.0

function msg_green {
builtin echo -en "\033[1;32m"
Expand Down
2 changes: 1 addition & 1 deletion tools/releases/dockerfiles/Dockerfile.kuma-dp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# using Envoy's base to inherit the Envoy binary
FROM envoyproxy/envoy-alpine:v1.14.3
FROM envoyproxy/envoy-alpine:v1.15.0

ADD $KUMA_ROOT/build/artifacts-linux-amd64/kuma-dp/kuma-dp /usr/bin

Expand Down

0 comments on commit abf4183

Please sign in to comment.