godyn/kubernetes/deploy.yaml
2017-08-30 17:27:42 +09:00

63 lines
1.9 KiB
YAML

# Copyright 2017 Google Inc.
#
# 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: extensions/v1beta1
kind: Deployment
metadata:
name: cloud-dyndns-client
spec:
replicas: 1
template:
metadata:
labels:
name: cloud-dyndns-client
spec:
containers:
- name: cloud-dyndns-client
image: asia.gcr.io/ianlewis-org/cloud-dyndns-client:v0.1.3
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/cloud-dyndns-client/service-account.json
livenessProbe:
# an http probe
httpGet:
path: /_status/healthz
port: 8080
timeoutSeconds: 5
periodSeconds: 60
volumeMounts:
- name: config
mountPath: /etc/cloud-dyndns-client
resources:
limits:
memory: 50Mi
cpu: 250m
requests:
memory: 20Mi
cpu: 50m
volumes:
- name: config
projected:
sources:
- configMap:
name: cloud-dyndns-client-config
items:
- key: config.json
path: config.json
- secret:
name: cloud-dyndns-client-service-account
items:
- key: service-account.json
path: service-account.json