Merge pull request #424 from andrewstuart/feat/further-kube-updates

contrib/k8s: YAML brevity via references, minimum resource requests
This commit is contained in:
bobbyrullo 2016-04-25 10:51:27 -07:00
commit 4c4f4c03b3
2 changed files with 15 additions and 8 deletions

View file

@ -62,11 +62,18 @@ spec:
- containerPort: 5557
name: overlord-port
livenessProbe:
httpGet:
httpGet: &health
path: /health
port: 5557
initialDelaySeconds: 16
initialDelaySeconds: 15
timeoutSeconds: 1
readinessProbe:
httpGet: *health
initialDelaySeconds: 5
timeoutSeconds: 5
periodSeconds: 5
resources:
requests: { cpu: 500m, memory: 512Mi }
volumeMounts:
- name: connectors
mountPath: /etc/dex-connectors

View file

@ -40,17 +40,17 @@ spec:
- containerPort: 5556
name: worker-port
readinessProbe:
httpGet:
httpGet: &health
path: /health
port: 5556
timeoutSeconds: 1
periodSeconds: 2
livenessProbe:
httpGet:
path: /health
port: 5556
httpGet: *health
initialDelaySeconds: 15
timeoutSeconds: 1
resources:
requests: { cpu: 200m, memory: 256Mi }
# In production, you will likely want to include your own trusted
# /etc/ca-certificates and /etc/ssl in your container.
volumeMounts: