8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
42 lines
992 B
YAML
42 lines
992 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: l7-default-backend
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: glbc
|
|
kubernetes.io/name: "GLBC"
|
|
kubernetes.io/cluster-service: "true"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: glbc
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: glbc
|
|
name: glbc
|
|
spec:
|
|
containers:
|
|
- name: default-http-backend
|
|
# Any image is permissible as long as:
|
|
# 1. It serves a 404 page at /
|
|
# 2. It serves 200 on a /healthz endpoint
|
|
image: gcr.io/google_containers/defaultbackend:1.0
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8080
|
|
scheme: HTTP
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 5
|
|
ports:
|
|
- containerPort: 8080
|
|
resources:
|
|
limits:
|
|
cpu: 10m
|
|
memory: 20Mi
|
|
requests:
|
|
cpu: 10m
|
|
memory: 20Mi
|