fix_user.sh 895 Bytes
# 添加 TCP 探针
kubectl patch deployment user-service -n ecommerce -p '{
  "spec": {
    "template": {
      "spec": {
        "containers": [{
          "name": "user-service",
          "livenessProbe": {
            "tcpSocket": {
              "port": 8080
            },
            "initialDelaySeconds": 120,
            "periodSeconds": 30,
            "timeoutSeconds": 5
          },
          "readinessProbe": {
            "tcpSocket": {
              "port": 8080
            },
            "initialDelaySeconds": 60,
            "periodSeconds": 15,
            "timeoutSeconds": 5
          },
          "startupProbe": {
            "tcpSocket": {
              "port": 8080
            },
            "initialDelaySeconds": 90,
            "periodSeconds": 15,
            "timeoutSeconds": 5,
            "failureThreshold": 30
          }
        }]
      }
    }
  }
}'