Created
November 9, 2017 16:36
-
-
Save martincalvert/c32f246f6fbc36aab2e6267d1cc06802 to your computer and use it in GitHub Desktop.
K8s: Template Values File Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
environment: integration | |
nodeAffinity: | |
key: cloud.google.com/gke-nodepool | |
value: default | |
rubyApi: | |
name: guest | |
replicas: 1 | |
livenessProbe: | |
type: livenessProbe | |
path: /health.json | |
port: 3000 | |
initialDelay: 60 | |
periodSeconds: 30 | |
timeoutSeconds: 5 | |
readinessProbe: | |
type: readinessProbe | |
path: /health.json | |
port: 3000 | |
initialDelay: 60 | |
periodSeconds: 1 | |
timeoutSeconds: 1 | |
image: | |
name: guest | |
tag: latest | |
pullPolicy: Always | |
resources: | |
request: | |
memory: 100Mi | |
cpu: 50m | |
limit: | |
memory: 1500Mi | |
cpu: 1000m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment