GKE部署ReactJS应用CrashLoopBackoff

时间:2020-04-27 16:24:04

标签: node.js reactjs docker kubernetes google-kubernetes-engine

我已经为我的ReactJS应用程序构建了Docker镜像。我在本地运行该图像并进行了测试,效果很好。

我正在使用Google Cloud Build,它会自动将我的容器映像放到gcr.io容器存储库中。

然后我尝试从驻留在gcr.io中的容器映像创建部署

但是部署未成功完成。它给了我

Pod错误:CrashLoopBackOff

没有最低可用性

这是我的Docker映像。

FROM node:latest
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
COPY . ./
EXPOSE 3000
CMD [ "npm", "start" ]

当我查看pod->容器日志时,我看到我的应用已重新启动,没有任何错误日志。

I 2020-04-27T15:07:57.505370601Z > react-scripts start
 
I 2020-04-27T15:07:57.505375001Z 
 
I 2020-04-27T15:07:59.392880949Z [34mℹ[39m [90m「wds」[39m: Project is running at http://10.48.0.14/
 
I 2020-04-27T15:07:59.393329591Z [34mℹ[39m [90m「wds」[39m: webpack output is served from 
 
I 2020-04-27T15:07:59.393494921Z [34mℹ[39m [90m「wds」[39m: Content not from webpack is served from /usr/src/app/public
 
I 2020-04-27T15:07:59.393641770Z [34mℹ[39m [90m「wds」[39m: 404s will fallback to /
 
I 2020-04-27T15:07:59.393881277Z Starting the development server...

我怀疑会发生什么,kubernetes没有等待足够的时间来尝试重新启动应用程序。

我不是在使用Deployment.yaml,而是在使用GCP控制台。 我的ReactJS应用程序中没有运行状况终结点。

这是kubectl describe pod ...

的输出
Name:           helloworld-gke-7fd977fd94-kvrcj
Namespace:      default
Priority:       0
Node:           gke-helloworld-gke-default-pool-a23be758-g8q7/10.182.0.2
Start Time:     Mon, 27 Apr 2020 17:15:18 +0200
Labels:         app=hello
                pod-template-hash=7fd977fd94
Annotations:    kubernetes.io/limit-ranger: LimitRanger plugin set: cpu request for container hello-app
Status:         Running
IP:             10.48.0.15
IPs:            <none>
Controlled By:  ReplicaSet/helloworld-gke-7fd977fd94
Containers:
  hello-app:
    Container ID:   docker://389151ed6...
    Image:          gcr.io/tuition-h...
    Image ID:       docker-pullable://gcr.io/...
    Port:           3000/TCP
    Host Port:      0/TCP
    State:          Waiting
      Reason:       CrashLoopBackOff
    Last State:     Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Mon, 27 Apr 2020 18:28:00 +0200
      Finished:     Mon, 27 Apr 2020 18:28:02 +0200
    Ready:          False
    Restart Count:  19
    Requests:
      cpu:  100m
    Environment:
      PORT:  8080
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from default-token-sqpm7 (ro)
Conditions:
  Type              Status
  Initialized       True
  Ready             False
  ContainersReady   False
  PodScheduled      True
Volumes:
  default-token-sqpm7:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  default-token-sqpm7
    Optional:    false
QoS Class:       Burstable
Node-Selectors:  <none>
Tolerations:     node.kubernetes.io/not-ready:NoExecute for 300s
                 node.kubernetes.io/unreachable:NoExecute for 300s
Events:
  Type     Reason   Age                    From                                                    Message
  ----     ------   ----                   ----                                                    -------
  Warning  BackOff  4m17s (x320 over 74m)  kubelet, gke-helloworld-gke-default-pool-...  Back-off restarting failed container

0 个答案:

没有答案