From a62d3eaed4bc73043092ad07f69283ba91f27808 Mon Sep 17 00:00:00 2001 From: navinger Date: Thu, 14 Dec 2017 16:28:37 -0800 Subject: [PATCH] Use long options for ESP config (#956) For better readability, let's use the long options for the ESP config. Here's the doc: https://cloud.google.com/endpoints/docs/openapi/specify-proxy-startup-options --- endpoints/getting-started/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/endpoints/getting-started/deployment.yaml b/endpoints/getting-started/deployment.yaml index 718b8364648..80999681651 100644 --- a/endpoints/getting-started/deployment.yaml +++ b/endpoints/getting-started/deployment.yaml @@ -42,10 +42,10 @@ spec: - name: esp image: gcr.io/endpoints-release/endpoints-runtime:1 args: [ - "-p", "8081", - "-a", "127.0.0.1:8080", - "-s", "SERVICE_NAME", - "-v", "SERVICE_CONFIG_ID", + "--http_port", "8081", + "--backend", "127.0.0.1:8080", + "--service", "SERVICE_NAME", + "--version", "SERVICE_CONFIG_ID", ] # [END esp] ports: