apiVersion: v1 kind: Pod metadata: name: check-ready namespace: default spec: containers: - name: check-ready-container image: httpd imagePullPolicy: IfNotPresent readinessProbe: httpGet: port: 80 path: /index1.html initialDelaySeconds: 1 #容器啓動1s後開始檢測 periodSeconds: 3 #每隔3s檢測一次
檢測/index1.html文件是否存在,存在即就緒,不存在容器雖然是running狀態,但不就緒,不對外提供服務
html