diff --git a/configmaps/envoy-initializer.yaml b/configmaps/envoy-initializer.yaml index b99455a..aeef2af 100644 --- a/configmaps/envoy-initializer.yaml +++ b/configmaps/envoy-initializer.yaml @@ -7,10 +7,11 @@ data: containers: - name: envoy image: lyft/envoy:845747db88f102c0fd262ab234308e9e22f693a1 + command: ["/usr/local/bin/envoy"] args: - - "--concurrency=4" - - "--config-path=/etc/envoy/envoy.json" - - "--mode=serve" + - "--concurrency 4" + - "--config-path /etc/envoy/envoy.json" + - "--mode serve" ports: - containerPort: 80 protocol: TCP diff --git a/envoy.json b/envoy.json index 1458a99..8f52dc2 100644 --- a/envoy.json +++ b/envoy.json @@ -1,7 +1,7 @@ { "listeners": [ { - "address": "tcp://0.0.0.0:80", + "address": "tcp://0.0.0.0:8080", "filters": [ { "type": "read", @@ -50,7 +50,7 @@ "features": "http2", "hosts": [ { - "url": "tcp://127.0.0.1:8080" + "url": "tcp://127.0.0.1:80" } ] }