部署在 minikube

问题描述

我正在练习用 Minikube 制作 PV 和 PVC。但是我遇到了一个错误,我的 InfluxDB 部署找不到 influxdb-pvc 并且我无法解决它。

我查看了事件顶部的消息,发现找不到我的 PVC。因此,我检查了 PersistentVolumeClaim 的状态。

据我所知,如果influxdb-pvinfluxdb-pvcSTATUSBound,则正常创建,Deployment应该可以找到influxdb-pvc。我不知道这是怎么回事...请帮帮我?


以下是Pod的说明:

> kubectl describe pod influxdb-5b769454b8-pksss

Name:         influxdb-5b769454b8-pksss
Namespace:    ft-services
Priority:     0
Node:         minikube/192.168.49.2
Start Time:   Thu,25 Feb 2021 01:14:25 +0900
Labels:       app=influxdb
              pod-template-hash=5b769454b8
Annotations:  <none>
Status:       Running
IP:           172.17.0.5
IPs:
  IP:           172.17.0.5
Controlled By:  ReplicaSet/influxdb-5b769454b8
Containers:
  influxdb:
    Container ID:   docker://be2eec32cca22ea84f4a0034f42668c971fefe62e361f2a4d1a74d92bfbf4d78
    Image:          service_influxdb
    Image ID:       docker://sha256:50693dcc4dda172f82c0dcd5ff1db01d6d90268ad2b0bd424e616cb84da64c6b
    Port:           8086/TCP
    Host Port:      0/TCP
    State:          Waiting
      Reason:       CrashLoopBackOff
    Last State:     Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Thu,25 Feb 2021 01:30:40 +0900
      Finished:     Thu,25 Feb 2021 01:30:40 +0900
    Ready:          False
    Restart Count:  8
    Environment Variables from:
      influxdb-secret  Secret  Optional: false
    Environment:       <none>
    Mounts:
      /var/lib/influxdb from var-lib-influxdb (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from default-token-lfzz9 (ro)
Conditions:
  Type              Status
  Initialized       True
  Ready             False
  ContainersReady   False
  PodScheduled      True
Volumes:
  var-lib-influxdb:
    Type:       PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
    ClaimName:  influxdb-pvc
    ReadOnly:   false
  default-token-lfzz9:
    Type:        Secret (a volume populated by a Secret)
    SecretName:  default-token-lfzz9
    Optional:    false
QoS Class:       BestEffort
Node-Selectors:  <none>
Tolerations:     node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                 node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
  Type     Reason            Age                 From               Message
  ----     ------            ----                ----               -------
  Warning  FailedScheduling  20m (x2 over 20m)   default-scheduler  0/1 nodes are available: 1 persistentvolumeclaim "influxdb-pvc" not found.
  Normal   Scheduled         20m                 default-scheduler  Successfully assigned ft-services/influxdb-5b769454b8-pksss to minikube
  Normal   Pulled            19m (x5 over 20m)   kubelet            Container image "service_influxdb" already present on machine
  Normal   Created           19m (x5 over 20m)   kubelet            Created container influxdb
  Normal   Started           19m (x5 over 20m)   kubelet            Started container influxdb
  Warning  BackOff           43s (x93 over 20m)  kubelet            Back-off restarting failed container

以下是 PV 和 PVC 的状态信息:

> kubectl get pv,pvc
NAME                           CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM                      STORAGECLASS   REASON   AGE
persistentvolume/influxdb-pv   10Gi       RWO            Recycle          Bound       ft-services/influxdb-pvc   influxdb                104m

NAME                                 STATUS   VOLUME        CAPACITY   ACCESS MODES   STORAGECLASS   AGE
persistentvolumeclaim/influxdb-pvc   Bound    influxdb-pv   10Gi       RWO            influxdb       13m

我按照以下顺序进行设置。

  1. 创建命名空间。
kubectl create namespace ft-services
kubectl config set-context --current --namespace=ft-services
  1. 应用我的配置文件:influxdb-deployment.yamlinfluxdb-secret.yamlinfluxdb-service.yamlinfluxdb-volume.yaml

influxdb-deployment.yaml:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: influxdb
  labels:
    app: influxdb
spec:
  replicas: 1
  selector:
    matchLabels:
      app: influxdb
  template:
    metadata:
      labels:
        app: influxdb
    spec:
      containers:
      - name: influxdb
        image: service_influxdb
        imagePullPolicy: Never
        ports:
        - containerPort: 8086
        envFrom:
        - secretRef:
            name: influxdb-secret
        volumeMounts:
        - mountPath: /var/lib/influxdb
          name: var-lib-influxdb
      volumes:
      - name: var-lib-influxdb
        persistentVolumeClaim:
          claimName: influxdb-pvc

influxdb-volume.yaml

apiVersion: v1
kind: PersistentVolume
metadata:
  name: influxdb-pv
  labels:
    app: influxdb
spec:
  storageClassName: influxdb
  claimRef:
    namespace: ft-services
    name: influxdb-pvc
  capacity:
    storage: 10Gi
  accessModes:
  - ReadWriteOnce
  persistentVolumeReclaimPolicy: Recycle
  hostPath:
    path: "/mnt/influxdb"
    type: DirectoryOrCreate
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: influxdb-pvc
  labels:
    app: influxdb
spec:
  storageClassName: influxdb
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 1Gi
  1. 构建我的 docker 镜像:service_influxdb

Dockerfile:

FROM alpine:3.13.1

RUN apk update && apk upgrade --ignore busybox && \
    apk add \
        influxdb && \
    sed -i "247s/  #/  /" /etc/influxdb.conf && \
    sed -i "256s/  #/  /" /etc/influxdb.conf

EXPOSE 8086

ENTRYPOINT influxd & /bin/sh
  1. 使用仪表板检查我的 minikube
> minikube dashboard

0/1 nodes are available: 1 persistentvolumeclaim "influxdb-pvc" not found.
Back-off restarting failed container

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)