Skip to content

Instantly share code, notes, and snippets.

@askmeegs
Last active June 22, 2020 17:49
Show Gist options
  • Save askmeegs/96a80a05eafd9f00a77c2e555db1b7b9 to your computer and use it in GitHub Desktop.
Save askmeegs/96a80a05eafd9f00a77c2e555db1b7b9 to your computer and use it in GitHub Desktop.
productcatalogv2 - hipstershop 0.2.0
# 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.
apiVersion: apps/v1
kind: Deployment
metadata:
name: productcatalogservice-v2
spec:
selector:
matchLabels:
app: productcatalogservice
template:
metadata:
labels:
app: productcatalogservice
version: v2
spec:
terminationGracePeriodSeconds: 5
containers:
- name: server
image: gcr.io/microservices-demo/productcatalogservice:v0.2.0
ports:
- containerPort: 3550
env:
- name: EXTRA_LATENCY
value: 3s
- name: PORT
value: "3550"
- name: VERSION
value: "v2"
readinessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:3550"]
livenessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:3550"]
resources:
requests:
cpu: 100m
memory: 64Mi
limits:
cpu: 200m
memory: 128Mi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment