This repository was archived by the owner on Mar 17, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright 2016 Google Inc.
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License
14+
15+ apiVersion : v1
16+ kind : Service
17+ metadata :
18+ name : bookstore
19+ spec :
20+ ports :
21+ - port : 8000
22+ protocol : TCP
23+ name : grpc
24+ selector :
25+ app : bookstore-app
26+ type : LoadBalancer
27+ ---
28+ apiVersion : extensions/v1beta1
29+ kind : Deployment
30+ metadata :
31+ name : bookstore
32+ spec :
33+ replicas : 1
34+ template :
35+ metadata :
36+ labels :
37+ app : bookstore-app
38+ spec :
39+ containers :
40+ - name : bookstore
41+ image : gcr.io/endpointsv2/python-grpc-bookstore-server:1
42+ ports :
43+ - containerPort : 8000
You can’t perform that action at this time.
0 commit comments