pat03.sh 414 Bytes
# 添加环境变量允许循环引用
kubectl patch deployment notification-service -n ecommerce -p '{
  "spec": {
    "template": {
      "spec": {
        "containers": [{
          "name": "notification-service",
          "env": [
            {"name": "SPRING_MAIN_ALLOW_CIRCULAR_REFERENCES", "value": "true"},
            {"name": "FCM_ENABLED", "value": "false"}
          ]
        }]
      }
    }
  }
}'