hanshileiai
5/7/2020 - 6:52 AM

k8s - 资源清单 pod 就绪检测 - 探针检测

检测探针 - 就绪检测

readinessProbe-httpget

apiVersion: v1
kind: Pod
metadata:
  name: readiness-httpget-pod
  namespace: default
spec: 
  containers: 
  - name: reainess-httpget-container
    image: hub.hsl.com/library/myapp:v1
    imagePullPolicy: IfNotPresent
    readinessProbe: 
      httpGet: 
        port: 80
        path: /index1.html
      initialDelaySeconds: