12345678910111213141516171819202122232425 |
- apiVersion: v1
- kind: ReplicationController
- metadata:
- name: echoheaders
- spec:
- replicas: 1
- template:
- metadata:
- labels:
- app: echoheaders
- spec:
- containers:
- - name: echoheaders
- image: gcr.io/kubernetes-e2e-test-images/echoserver:2.2
- ports:
- - containerPort: 8080
- readinessProbe:
- httpGet:
- path: /healthz
- port: 8080
- periodSeconds: 1
- timeoutSeconds: 1
- successThreshold: 1
- failureThreshold: 10
|