k3s/cluster/gce/manifests/glbc.manifest

57 lines
1.6 KiB
Plaintext
Raw Normal View History

2016-04-05 00:28:52 +00:00
apiVersion: v1
kind: Pod
metadata:
2017-10-10 00:12:41 +00:00
name: l7-lb-controller-v0.9.7
2016-04-05 00:28:52 +00:00
namespace: kube-system
2017-06-12 22:22:04 +00:00
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
2016-04-05 00:28:52 +00:00
labels:
k8s-app: gcp-lb-controller
2017-10-10 00:12:41 +00:00
version: v0.9.7
2016-04-05 00:28:52 +00:00
kubernetes.io/name: "GLBC"
spec:
terminationGracePeriodSeconds: 600
hostNetwork: true
containers:
- image: gcr.io/google_containers/glbc:0.9.7
2016-04-05 00:28:52 +00:00
livenessProbe:
httpGet:
path: /healthz
port: 8086
scheme: HTTP
initialDelaySeconds: 30
# healthz reaches out to GCE
periodSeconds: 30
2016-06-02 20:05:02 +00:00
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 5
2016-04-05 00:28:52 +00:00
name: l7-lb-controller
volumeMounts:
- mountPath: /etc/gce.conf
name: cloudconfig
readOnly: true
- mountPath: /var/log/glbc.log
name: logfile
readOnly: false
resources:
# Request is set to accomodate this pod alongside the other
2016-05-28 23:24:40 +00:00
# master components on a single core master.
# TODO: Make resource requirements depend on the size of the cluster
2016-04-05 00:28:52 +00:00
requests:
2016-05-28 23:24:40 +00:00
cpu: 10m
2016-04-05 00:28:52 +00:00
memory: 50Mi
command:
# TODO: split this out into args when we no longer need to pipe stdout to a file #6428
- sh
- -c
- 'exec /glbc --verbose=true --apiserver-host=http://localhost:8080 --default-backend-service=kube-system/default-http-backend --sync-period=600s --running-in-cluster=false --use-real-cloud=true --config-file-path=/etc/gce.conf --healthz-port=8086 1>>/var/log/glbc.log 2>&1'
2016-04-05 00:28:52 +00:00
volumes:
- hostPath:
path: /etc/gce.conf
2017-06-18 13:34:24 +00:00
type: FileOrCreate
2016-04-05 00:28:52 +00:00
name: cloudconfig
- hostPath:
path: /var/log/glbc.log
2017-06-18 13:34:24 +00:00
type: FileOrCreate
2016-04-05 00:28:52 +00:00
name: logfile