Zoe Liao's website

Study Notes

View on GitHub

Probe

Live Cycle

Pod Status:

Conditions:

Readiness Probes

pod.yaml

apiVersion: v1
kind: Pod
metadata:
  name: myweb
  labels:
    name: myweb

spec
  containers:
    - name: mycontainer
      image: mycontainer
      ports:
        - containerPort: 8080
      readinessProbe:
        httpGet:
          path: /index.html
          port: 8080

Liveness Probes

pod.yaml

apiVersion: v1
kind: Pod
metadata:
  name: myweb
  labels:
    name: myweb

spec
  containers:
    - name: mycontainer
      image: mycontainer
      ports:
        - containerPort: 8080
      livenessProbe:
        httpGet:
          path: /index.html
          port: 8080