33 lines
771 B
YAML
33 lines
771 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kubernetes-dashboard
|
|
namespace: kube-system
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: kubernetes-dashboard
|
|
phase: prod
|
|
spec:
|
|
containers:
|
|
- name: kubernetes-dashboard
|
|
image: gcr.io/google_containers/kubernetes-dashboard-amd64:v1.6.1
|
|
ports:
|
|
- name: http
|
|
containerPort: 9090
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 300Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 9090
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 30
|