-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.
Description
I tried to deploy endpoints/getting-started
changed app.yaml
to
runtime: nodejs
vm: true
service: endpoints
network:
instance_tag: endpoints
name: default
beta_settings:
# Enable Google Cloud Endpoints API management.
use_endpoints_api_management: true
# Specify the Swagger API specification.
endpoints_swagger_spec_file: swagger.yaml
and swagger.yaml
to
swagger: "2.0"
info:
description: "A simple Google Cloud Endpoints API example."
title: "Endpoints Example"
version: "1.0.0"
host: "my-project-id.appspot.com"
# the rest of the content from the repo
When I run gcloud app deploy
, it got deployed to app engine service version called default
instead of endpoints
I also tried
swagger.yaml
to
swagger: "2.0"
info:
description: "A simple Google Cloud Endpoints API example."
title: "Endpoints Example"
version: "1.0.0"
host: "endpoints.my-project-id.appspot.com" # planed to deploy to endpoints service since I have different services running, can't use default for it
# the rest of the content from the repo
Any help are appreciated
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.