2018-07-26 04:22:00 +00:00
|
|
|
# Copyright 2018 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-06-21 21:02:20 +00:00
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: recommendationservice
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: recommendationservice
|
|
|
|
spec:
|
2018-06-29 03:10:06 +00:00
|
|
|
terminationGracePeriodSeconds: 5
|
2018-06-21 21:02:20 +00:00
|
|
|
containers:
|
|
|
|
- name: server
|
2018-07-08 00:14:52 +00:00
|
|
|
image: gcr.io/istio-next/recommendationservice
|
2018-06-21 21:02:20 +00:00
|
|
|
ports:
|
|
|
|
- containerPort: 8080
|
2018-06-29 00:55:51 +00:00
|
|
|
readinessProbe:
|
|
|
|
periodSeconds: 5
|
|
|
|
tcpSocket:
|
|
|
|
port: 8080
|
|
|
|
livenessProbe:
|
|
|
|
periodSeconds: 5
|
|
|
|
tcpSocket:
|
|
|
|
port: 8080
|
2018-06-21 21:02:20 +00:00
|
|
|
env:
|
|
|
|
- name: PRODUCT_CATALOG_SERVICE_ADDR
|
|
|
|
value: "productcatalogservice:3550"
|
2018-06-22 16:35:30 +00:00
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
cpu: 100m
|
2018-07-17 23:38:53 +00:00
|
|
|
memory: 220Mi
|
2018-06-22 16:35:30 +00:00
|
|
|
limits:
|
|
|
|
cpu: 200m
|
2018-07-17 23:38:53 +00:00
|
|
|
memory: 450Mi
|
2018-06-21 21:02:20 +00:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: recommendationservice
|
|
|
|
spec:
|
|
|
|
type: ClusterIP
|
|
|
|
selector:
|
|
|
|
app: recommendationservice
|
|
|
|
ports:
|
2018-07-08 00:14:52 +00:00
|
|
|
- name: grpc
|
|
|
|
port: 8080
|
2018-06-21 21:02:20 +00:00
|
|
|
targetPort: 8080
|