fix_user.sh
895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 添加 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
          }
        }]
      }
    }
  }
}'