Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
Update default Envoy image version and OS (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishustava authored and kschoche committed Jun 18, 2020
1 parent 61419ea commit c05d9a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/unit/ingress-gateways-deployment.bats
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ load _helpers
--set 'connectInject.enabled=true' \
. | tee /dev/stderr |
yq -s -r '.[0].spec.template.spec.containers[0].image' | tee /dev/stderr)
[ "${actual}" = "envoyproxy/envoy:v1.13.0" ]
[ "${actual}" = "envoyproxy/envoy-alpine:v1.14.2" ]
}

@test "ingressGateways/Deployment: envoy image can be set using the global value" {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/mesh-gateway-deployment.bats
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ key2: value2' \
--set 'connectInject.enabled=true' \
. | tee /dev/stderr |
yq -r '.spec.template.spec.containers[0].image' | tee /dev/stderr)
[ "${actual}" = "envoyproxy/envoy:v1.13.0" ]
[ "${actual}" = "envoyproxy/envoy-alpine:v1.14.2" ]
}

@test "meshGateway/Deployment: envoy image can be set" {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/terminating-gateways-deployment.bats
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ load _helpers
--set 'connectInject.enabled=true' \
. | tee /dev/stderr |
yq -s -r '.[0].spec.template.spec.containers[0].image' | tee /dev/stderr)
[ "${actual}" = "envoyproxy/envoy:v1.13.0" ]
[ "${actual}" = "envoyproxy/envoy-alpine:v1.14.2" ]
}

@test "terminatingGateways/Deployment: envoy image can be set using the global value" {
Expand Down
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ global:

# imageEnvoy defines the default envoy image to use for ingress and
# terminating gateways.
imageEnvoy: "envoyproxy/envoy:v1.13.0"
imageEnvoy: "envoyproxy/envoy-alpine:v1.14.2"

# datacenter is the name of the datacenter that the agents should register
# as. This can't be changed once the Consul cluster is up and running
Expand Down Expand Up @@ -1028,7 +1028,7 @@ meshGateway:
additionalSpec: null

# Envoy image to use. For Consul v1.7+, Envoy version 1.13+ is required.
imageEnvoy: envoyproxy/envoy:v1.13.0
imageEnvoy: envoyproxy/envoy-alpine:v1.14.2

# If set to true, gateway Pods will run on the host network.
hostNetwork: false
Expand Down

0 comments on commit c05d9a5

Please sign in to comment.