
------------------------------
1) Describe 'Pods' resources
------------------------------

Name:                 snapshot-controller-546868dfb4-lwd6h
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      snapshot-controller
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 11:04:44 +0800
Labels:               app=snapshot-controller
                      pod-template-hash=546868dfb4
Annotations:          k8s.v1.cni.cncf.io/network-status:
                        [{
                            "name": "ix-net",
                            "interface": "eth0",
                            "ips": [
                                "172.16.0.242"
                            ],
                            "mac": "a2:b8:6e:09:5c:04",
                            "default": true,
                            "dns": {},
                            "gateway": [
                                "172.16.0.1"
                            ]
                        }]
Status:               Failed
Reason:               TaintToleration
Message:              Pod was rejected: Predicate TaintToleration failed
IP:                   
IPs:                  <none>
Controlled By:        ReplicaSet/snapshot-controller-546868dfb4
Containers:
  snapshot-controller:
    Container ID:  containerd://916e13fcf51df31372023c22870058dc938d6593aac2e353dbee158d80d5fb56
    Image:         registry.k8s.io/sig-storage/snapshot-controller:v6.2.2
    Image ID:      registry.k8s.io/sig-storage/snapshot-controller@sha256:fb95b65bb88f319f0f7d5397c401a654164f11a191f466b4026fa36085c7141b
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=2
      --leader-election=true
      --leader-election-namespace=kube-system
    State:          Terminated
      Reason:       Error
      Exit Code:    2
      Started:      Fri, 29 Dec 2023 11:05:01 +0800
      Finished:     Fri, 29 Dec 2023 11:07:29 +0800
    Ready:          False
    Restart Count:  0
    Limits:
      memory:  300Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-bp89r (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             False 
  ContainersReady   False 
  PodScheduled      True 
Volumes:
  kube-api-access-bp89r:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 node-role.kubernetes.io/control-plane=true:NoSchedule
                             node-role.kubernetes.io/controlplane=true:NoSchedule
                             node-role.kubernetes.io/master=true:NoSchedule
                             node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                             node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:                      <none>


Name:             qbittorrent-599b58c6c4-789rl
Namespace:        ix-qbittorrent
Priority:         0
Service Account:  default
Node:             ix-truenas/192.168.2.161
Start Time:       Fri, 29 Dec 2023 11:04:44 +0800
Labels:           app=qbittorrent-1.1.0
                  app.kubernetes.io/instance=qbittorrent
                  app.kubernetes.io/managed-by=Helm
                  app.kubernetes.io/name=qbittorrent
                  app.kubernetes.io/version=4.6.0
                  helm-revision=8
                  helm.sh/chart=qbittorrent-1.1.0
                  pod-template-hash=599b58c6c4
                  pod.name=qbittorrent
                  release=qbittorrent
Annotations:      k8s.v1.cni.cncf.io/network-status:
                    [{
                        "name": "ix-net",
                        "interface": "eth0",
                        "ips": [
                            "172.16.0.236"
                        ],
                        "mac": "0e:bb:ca:bc:67:3b",
                        "default": true,
                        "dns": {},
                        "gateway": [
                            "172.16.0.1"
                        ]
                    }]
                  rollme: LbNaE
Status:           Failed
Reason:           TaintToleration
Message:          Pod was rejected: Predicate TaintToleration failed
IP:               
IPs:              <none>
Controlled By:    ReplicaSet/qbittorrent-599b58c6c4
Init Containers:
  qbittorrent-init-01-permissions:
    Container ID:  containerd://02468f8df58005e9009cc88e308517a5507cc93cbd4a6430b5695d68c42a0b22
    Image:         bash:4.4.23
    Image ID:      docker.io/library/bash@sha256:4f28548619f139047c2e727ff42977f348625a0a069b488ec879002dc7e8aaa3
    Port:          <none>
    Host Port:     <none>
    Command:
      bash
    Args:
      -c
      for dir in /mnt/directories/*; do
        if [ ! -d "$dir" ]; then
          echo "[$dir] is not a directory, skipping"
          continue
        fi
      
        echo "Current Ownership and Permissions on ["$dir"]:"
        echo "chown: $(stat -c "%u %g" "$dir")"
        echo "chmod: $(stat -c "%a" "$dir")" 
        if [ $(stat -c %u "$dir") -eq 1000 ] && [ $(stat -c %g "$dir") -eq 1000 ]; then
          echo "Ownership is correct. Skipping..."
          fix_owner="false"
        else
          echo "Ownership is incorrect. Fixing..."
          fix_owner="true"
        fi
      
      
        if [ "$fix_owner" = "true" ]; then
          echo "Changing ownership to 1000:1000 on: ["$dir"]"
          chown -R 1000:1000 "$dir"
          echo "Finished changing ownership"
          echo "Ownership after changes:"
          stat -c "%u %g" "$dir"
        fi
      done
      
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 29 Dec 2023 11:04:53 +0800
      Finished:     Fri, 29 Dec 2023 11:04:53 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     1
      memory:  512Mi
    Requests:
      cpu:     10m
      memory:  50Mi
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      PUID:                    568
      USER_ID:                 568
      UID:                     568
      PGID:                    568
      GROUP_ID:                568
      GID:                     568
    Mounts:
      /mnt/directories/config from config (rw)
      /mnt/directories/downloads from downloads (rw)
Containers:
  qbittorrent:
    Container ID:   containerd://588933afaedad40102bb0648ebccf980685e8269084e4d8255c995f0d31b890f
    Image:          ghcr.io/onedr0p/qbittorrent:4.6.0
    Image ID:       ghcr.io/onedr0p/qbittorrent@sha256:cb6259df3be61a5108bc4f85b09a523fc4b250589ca9b315ef927cbdf779afb6
    Ports:          30024/TCP, 50413/TCP, 50413/UDP
    Host Ports:     0/TCP, 0/TCP, 0/UDP
    State:          Terminated
      Reason:       Error
      Exit Code:    137
      Started:      Fri, 29 Dec 2023 11:05:02 +0800
      Finished:     Fri, 29 Dec 2023 11:07:29 +0800
    Ready:          False
    Restart Count:  0
    Limits:
      cpu:     4
      memory:  8Gi
    Requests:
      cpu:      10m
      memory:   50Mi
    Liveness:   http-get http://:30024/ delay=10s timeout=5s period=10s #success=1 #failure=5
    Readiness:  http-get http://:30024/ delay=10s timeout=5s period=10s #success=2 #failure=5
    Startup:    http-get http://:30024/ delay=10s timeout=2s period=5s #success=1 #failure=60
    Environment Variables from:
      qbittorrent-qbit-config  ConfigMap  Optional: false
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      S6_READ_ONLY_ROOT:       1
    Mounts:
      /config from config (rw)
      /downloads from downloads (rw)
Conditions:
  Type              Status
  Initialized       True 
  Ready             False 
  ContainersReady   False 
  PodScheduled      True 
Volumes:
  config:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Apps/Configs/qBittorrent
    HostPathType:  
  downloads:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Users/MyFiles/Downloads/Bittorrent
    HostPathType:  
QoS Class:         Burstable
Node-Selectors:    <none>
Tolerations:       node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                   node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:            <none>


Name:                 csi-smb-node-m4jw9
Namespace:            kube-system
Priority:             2000001000
Priority Class Name:  system-node-critical
Service Account:      csi-smb-node-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 10:11:10 +0800
Labels:               app=csi-smb-node
                      controller-revision-hash=754c5545b6
                      pod-template-generation=1
Annotations:          <none>
Status:               Running
IP:                   192.168.2.161
IPs:
  IP:           192.168.2.161
Controlled By:  DaemonSet/csi-smb-node
Containers:
  liveness-probe:
    Container ID:  containerd://855de80f600ef50cc410c186b7367c67061d98b2521f5f554fd1aedb1c1f57e2
    Image:         registry.k8s.io/sig-storage/livenessprobe:v2.10.0
    Image ID:      registry.k8s.io/sig-storage/livenessprobe@sha256:4dc0b87ccd69f9865b89234d8555d3a614ab0a16ed94a3016ffd27f8106132ce
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=/csi/csi.sock
      --probe-timeout=3s
      --health-port=29643
      --v=2
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:43 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    2
      Started:      Fri, 29 Dec 2023 11:04:41 +0800
      Finished:     Fri, 29 Dec 2023 11:07:29 +0800
    Ready:          True
    Restart Count:  2
    Limits:
      memory:  100Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-z62jw (ro)
  node-driver-registrar:
    Container ID:  containerd://29ce6f5508f0637ad8bf4261a1238c76d217f352980c613b569c0f1227a87a31
    Image:         registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
    Image ID:      registry.k8s.io/sig-storage/csi-node-driver-registrar@sha256:f6717ce72a2615c7fbc746b4068f788e78579c54c43b8716e5ce650d97af2df1
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=$(ADDRESS)
      --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
      --v=2
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:44 +0800
    Last State:     Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 29 Dec 2023 11:04:42 +0800
      Finished:     Fri, 29 Dec 2023 11:07:29 +0800
    Ready:          True
    Restart Count:  2
    Limits:
      memory:  100Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  exec [/csi-node-driver-registrar --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) --mode=kubelet-registration-probe] delay=30s timeout=15s period=10s #success=1 #failure=3
    Environment:
      ADDRESS:               /csi/csi.sock
      DRIVER_REG_SOCK_PATH:  /var/lib/kubelet/plugins/smb.csi.k8s.io/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /registration from registration-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-z62jw (ro)
  smb:
    Container ID:  containerd://3da489bcd6137421f5843a7ce43638c871ade0e1bdb90947d724a7d49878b9c1
    Image:         registry.k8s.io/sig-storage/smbplugin:v1.11.0
    Image ID:      registry.k8s.io/sig-storage/smbplugin@sha256:65f664c6e9cce565805b13fb82b40018d56e39f41616134f572c52f3964c6ee4
    Port:          29643/TCP
    Host Port:     29643/TCP
    Args:
      --v=5
      --endpoint=$(CSI_ENDPOINT)
      --nodeid=$(KUBE_NODE_NAME)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:46 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    2
      Started:      Fri, 29 Dec 2023 11:04:45 +0800
      Finished:     Fri, 29 Dec 2023 11:07:29 +0800
    Ready:          True
    Restart Count:  2
    Limits:
      memory:  200Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  http-get http://:healthz/healthz delay=30s timeout=10s period=30s #success=1 #failure=5
    Environment:
      CSI_ENDPOINT:    unix:///csi/csi.sock
      KUBE_NODE_NAME:   (v1:spec.nodeName)
    Mounts:
      /csi from socket-dir (rw)
      /var/lib/kubelet/ from mountpoint-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-z62jw (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  socket-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins/smb.csi.k8s.io
    HostPathType:  DirectoryOrCreate
  mountpoint-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/
    HostPathType:  DirectoryOrCreate
  registration-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins_registry/
    HostPathType:  DirectoryOrCreate
  kube-api-access-z62jw:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 op=Exists
                             node.kubernetes.io/disk-pressure:NoSchedule op=Exists
                             node.kubernetes.io/memory-pressure:NoSchedule op=Exists
                             node.kubernetes.io/network-unavailable:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists
                             node.kubernetes.io/pid-pressure:NoSchedule op=Exists
                             node.kubernetes.io/unreachable:NoExecute op=Exists
                             node.kubernetes.io/unschedulable:NoSchedule op=Exists
Events:                      <none>


Name:                 coredns-59b4f5bbd5-b6zj4
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      coredns
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:48 +0800
Labels:               k8s-app=kube-dns
                      pod-template-hash=59b4f5bbd5
Annotations:          k8s.v1.cni.cncf.io/network-status:
                        [{
                            "name": "ix-net",
                            "interface": "eth0",
                            "ips": [
                                "172.16.0.245"
                            ],
                            "mac": "7e:30:98:36:e4:cd",
                            "default": true,
                            "dns": {},
                            "gateway": [
                                "172.16.0.1"
                            ]
                        }]
Status:               Running
IP:                   172.16.0.245
IPs:
  IP:           172.16.0.245
Controlled By:  ReplicaSet/coredns-59b4f5bbd5
Containers:
  coredns:
    Container ID:  containerd://07e057db64ee91073290028cc96c1cc7f04b3e6eb83c5f5242c5778bca904dda
    Image:         rancher/mirrored-coredns-coredns:1.10.1
    Image ID:      docker.io/rancher/mirrored-coredns-coredns@sha256:a11fafae1f8037cbbd66c5afa40ba2423936b72b4fd50a7034a7e8b955163594
    Ports:         53/UDP, 53/TCP, 9153/TCP
    Host Ports:    0/UDP, 0/TCP, 0/TCP
    Args:
      -conf
      /etc/coredns/Corefile
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:53 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  170Mi
    Requests:
      cpu:        100m
      memory:     70Mi
    Liveness:     http-get http://:8080/health delay=60s timeout=1s period=10s #success=1 #failure=3
    Readiness:    http-get http://:8181/ready delay=0s timeout=1s period=2s #success=1 #failure=3
    Environment:  <none>
    Mounts:
      /etc/coredns from config-volume (ro)
      /etc/coredns/custom from custom-config-volume (ro)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-jnvd4 (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  config-volume:
    Type:      ConfigMap (a volume populated by a ConfigMap)
    Name:      coredns
    Optional:  false
  custom-config-volume:
    Type:      ConfigMap (a volume populated by a ConfigMap)
    Name:      coredns-custom
    Optional:  true
  kube-api-access-jnvd4:
    Type:                     Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:   3607
    ConfigMapName:            kube-root-ca.crt
    ConfigMapOptional:        <nil>
    DownwardAPI:              true
QoS Class:                    Burstable
Node-Selectors:               kubernetes.io/os=linux
Tolerations:                  CriticalAddonsOnly op=Exists
                              node-role.kubernetes.io/control-plane:NoSchedule op=Exists
                              node-role.kubernetes.io/master:NoSchedule op=Exists
                              node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                              node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Topology Spread Constraints:  kubernetes.io/hostname:DoNotSchedule when max skew 1 is exceeded for selector k8s-app=kube-dns
Events:
  Type     Reason     Age                From     Message
  ----     ------     ----               ----     -------
  Warning  Unhealthy  28m (x2 over 20h)  kubelet  Readiness probe failed: Get "http://172.16.0.245:8181/ready": context deadline exceeded (Client.Timeout exceeded while awaiting headers)


Name:             amdgpu-device-plugin-daemonset-kffr6
Namespace:        kube-system
Priority:         0
Service Account:  default
Node:             ix-truenas/192.168.2.161
Start Time:       Fri, 29 Dec 2023 12:11:48 +0800
Labels:           controller-revision-hash=85945d7f96
                  name=amdgpu-dp-ds
                  pod-template-generation=1
Annotations:      k8s.v1.cni.cncf.io/network-status:
                    [{
                        "name": "ix-net",
                        "interface": "eth0",
                        "ips": [
                            "172.16.0.249"
                        ],
                        "mac": "8e:62:01:29:4f:21",
                        "default": true,
                        "dns": {},
                        "gateway": [
                            "172.16.0.1"
                        ]
                    }]
                  scheduler.alpha.kubernetes.io/critical-pod: 
Status:           Running
IP:               172.16.0.249
IPs:
  IP:           172.16.0.249
Controlled By:  DaemonSet/amdgpu-device-plugin-daemonset
Containers:
  amdgpu-dp-cntr:
    Container ID:   containerd://d3882f045e9015391156a4bcfe54f7b7b3241eade2d4b547402ac87ccd99f215
    Image:          rocm/k8s-device-plugin:1.18.0
    Image ID:       docker.io/rocm/k8s-device-plugin@sha256:4b2830e2c6e1d182a8e9cbf950f46d263896ba9050366a59665cd921902b6864
    Port:           <none>
    Host Port:      <none>
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:03 +0800
    Ready:          True
    Restart Count:  0
    Environment:    <none>
    Mounts:
      /sys from sys (rw)
      /var/lib/kubelet/device-plugins from dp (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-78v86 (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  dp:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/device-plugins
    HostPathType:  
  sys:
    Type:          HostPath (bare host directory volume)
    Path:          /sys
    HostPathType:  
  kube-api-access-78v86:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   BestEffort
Node-Selectors:              <none>
Tolerations:                 CriticalAddonsOnly op=Exists
                             node.kubernetes.io/disk-pressure:NoSchedule op=Exists
                             node.kubernetes.io/memory-pressure:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists
                             node.kubernetes.io/pid-pressure:NoSchedule op=Exists
                             node.kubernetes.io/unreachable:NoExecute op=Exists
                             node.kubernetes.io/unschedulable:NoSchedule op=Exists
Events:                      <none>


Name:                 snapshot-controller-546868dfb4-lvfsf
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      snapshot-controller
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:49 +0800
Labels:               app=snapshot-controller
                      pod-template-hash=546868dfb4
Annotations:          k8s.v1.cni.cncf.io/network-status:
                        [{
                            "name": "ix-net",
                            "interface": "eth0",
                            "ips": [
                                "172.16.0.250"
                            ],
                            "mac": "72:37:e3:e4:c0:d5",
                            "default": true,
                            "dns": {},
                            "gateway": [
                                "172.16.0.1"
                            ]
                        }]
Status:               Running
IP:                   172.16.0.250
IPs:
  IP:           172.16.0.250
Controlled By:  ReplicaSet/snapshot-controller-546868dfb4
Containers:
  snapshot-controller:
    Container ID:  containerd://0739d5345963886de5868e9703df43f0583a92d45b9b9debe751b9a841a6c336
    Image:         registry.k8s.io/sig-storage/snapshot-controller:v6.2.2
    Image ID:      registry.k8s.io/sig-storage/snapshot-controller@sha256:fb95b65bb88f319f0f7d5397c401a654164f11a191f466b4026fa36085c7141b
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=2
      --leader-election=true
      --leader-election-namespace=kube-system
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:05 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  300Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-vznjv (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  kube-api-access-vznjv:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 node-role.kubernetes.io/control-plane=true:NoSchedule
                             node-role.kubernetes.io/controlplane=true:NoSchedule
                             node-role.kubernetes.io/master=true:NoSchedule
                             node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                             node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:                      <none>


Name:                 openebs-zfs-node-wdmkd
Namespace:            kube-system
Priority:             900001000
Priority Class Name:  openebs-zfs-csi-node-critical
Service Account:      openebs-zfs-node-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:49 +0800
Labels:               app=openebs-zfs-node
                      controller-revision-hash=df777c9dd
                      openebs.io/component-name=openebs-zfs-node
                      openebs.io/version=ci
                      pod-template-generation=1
                      role=openebs-zfs
Annotations:          <none>
Status:               Running
IP:                   192.168.2.161
IPs:
  IP:           192.168.2.161
Controlled By:  DaemonSet/openebs-zfs-node
Containers:
  csi-node-driver-registrar:
    Container ID:  containerd://aa743b136b5d8802c27dfa9f23f91187e98a1bd79f9307bc732342e3345f90e0
    Image:         registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.3.0
    Image ID:      registry.k8s.io/sig-storage/csi-node-driver-registrar@sha256:f9bcee63734b7b01555ee8fc8fb01ac2922478b2c8934bf8d468dd2916edc405
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=5
      --csi-address=$(ADDRESS)
      --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:02 +0800
    Ready:          True
    Restart Count:  0
    Environment:
      ADDRESS:               /plugin/csi.sock
      DRIVER_REG_SOCK_PATH:  /var/lib/kubelet/plugins/zfs-localpv/csi.sock
      KUBE_NODE_NAME:         (v1:spec.nodeName)
      NODE_DRIVER:           openebs-zfs
    Mounts:
      /plugin from plugin-dir (rw)
      /registration from registration-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-qqp4k (ro)
  openebs-zfs-plugin:
    Container ID:  containerd://0274a73c47fca5ea1b8d3f4ec0583735b8b9e1aa0443162ed1677670ba717685
    Image:         openebs/zfs-driver:ci
    Image ID:      docker.io/openebs/zfs-driver@sha256:966bb1e8fb67e12ec58cdbc79f4adf0824c37eba11b1cdfcd6ae3898e0a5d4c3
    Port:          <none>
    Host Port:     <none>
    Args:
      --nodename=$(OPENEBS_NODE_NAME)
      --endpoint=$(OPENEBS_CSI_ENDPOINT)
      --plugin=$(OPENEBS_NODE_DRIVER)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:11 +0800
    Ready:          True
    Restart Count:  0
    Environment:
      OPENEBS_NODE_NAME:      (v1:spec.nodeName)
      OPENEBS_CSI_ENDPOINT:  unix:///plugin/csi.sock
      OPENEBS_NODE_DRIVER:   agent
      OPENEBS_NAMESPACE:     openebs
      ALLOWED_TOPOLOGIES:    All
    Mounts:
      /dev from device-dir (rw)
      /home/keys from encr-keys (rw)
      /host from host-root (ro)
      /plugin from plugin-dir (rw)
      /sbin/zfs from chroot-zfs (rw,path="zfs")
      /var/lib/kubelet/ from pods-mount-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-qqp4k (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  device-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /dev
    HostPathType:  Directory
  encr-keys:
    Type:          HostPath (bare host directory volume)
    Path:          /home/keys
    HostPathType:  DirectoryOrCreate
  chroot-zfs:
    Type:      ConfigMap (a volume populated by a ConfigMap)
    Name:      openebs-zfspv-bin
    Optional:  false
  host-root:
    Type:          HostPath (bare host directory volume)
    Path:          /
    HostPathType:  Directory
  registration-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins_registry/
    HostPathType:  DirectoryOrCreate
  plugin-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins/zfs-localpv/
    HostPathType:  DirectoryOrCreate
  pods-mount-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/
    HostPathType:  Directory
  kube-api-access-qqp4k:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   BestEffort
Node-Selectors:              <none>
Tolerations:                 node.kubernetes.io/disk-pressure:NoSchedule op=Exists
                             node.kubernetes.io/memory-pressure:NoSchedule op=Exists
                             node.kubernetes.io/network-unavailable:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists
                             node.kubernetes.io/pid-pressure:NoSchedule op=Exists
                             node.kubernetes.io/unreachable:NoExecute op=Exists
                             node.kubernetes.io/unschedulable:NoSchedule op=Exists
Events:                      <none>


Name:                 csi-nfs-node-b2s7j
Namespace:            kube-system
Priority:             2000001000
Priority Class Name:  system-node-critical
Service Account:      csi-nfs-node-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:49 +0800
Labels:               app=csi-nfs-node
                      controller-revision-hash=598688b946
                      pod-template-generation=1
Annotations:          <none>
Status:               Running
IP:                   192.168.2.161
IPs:
  IP:           192.168.2.161
Controlled By:  DaemonSet/csi-nfs-node
Containers:
  liveness-probe:
    Container ID:  containerd://777355bab4fb61d1c9470f6c1cd9edeb44d720a06224c9bef7d1b865478c0f45
    Image:         registry.k8s.io/sig-storage/livenessprobe:v2.10.0
    Image ID:      registry.k8s.io/sig-storage/livenessprobe@sha256:4dc0b87ccd69f9865b89234d8555d3a614ab0a16ed94a3016ffd27f8106132ce
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=/csi/csi.sock
      --probe-timeout=3s
      --health-port=29653
      --v=2
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:58 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  100Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-sc42x (ro)
  node-driver-registrar:
    Container ID:  containerd://3e64306e9369b16b5418480d6ed10c65e7306ecd1519e285eebdbcb10d300276
    Image:         registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
    Image ID:      registry.k8s.io/sig-storage/csi-node-driver-registrar@sha256:f6717ce72a2615c7fbc746b4068f788e78579c54c43b8716e5ce650d97af2df1
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=2
      --csi-address=/csi/csi.sock
      --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:04 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  100Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  exec [/csi-node-driver-registrar --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH) --mode=kubelet-registration-probe] delay=30s timeout=15s period=10s #success=1 #failure=3
    Environment:
      DRIVER_REG_SOCK_PATH:  /var/lib/kubelet/plugins/csi-nfsplugin/csi.sock
      KUBE_NODE_NAME:         (v1:spec.nodeName)
    Mounts:
      /csi from socket-dir (rw)
      /registration from registration-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-sc42x (ro)
  nfs:
    Container ID:  containerd://1c16a465edd941903e4ded703a35ae02b8707c26ca69162af9450c04bfbc4ce0
    Image:         registry.k8s.io/sig-storage/nfsplugin:v4.4.0
    Image ID:      registry.k8s.io/sig-storage/nfsplugin@sha256:971cb526bc0108cca7d8efda32102629cb362f99bbd4879fd381bea1b2014ab4
    Port:          29653/TCP
    Host Port:     29653/TCP
    Args:
      -v=5
      --nodeid=$(NODE_ID)
      --endpoint=$(CSI_ENDPOINT)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:12 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  300Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  http-get http://:healthz/healthz delay=30s timeout=10s period=30s #success=1 #failure=5
    Environment:
      NODE_ID:        (v1:spec.nodeName)
      CSI_ENDPOINT:  unix:///csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/lib/kubelet/pods from pods-mount-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-sc42x (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  socket-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins/csi-nfsplugin
    HostPathType:  DirectoryOrCreate
  pods-mount-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/pods
    HostPathType:  Directory
  registration-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/plugins_registry
    HostPathType:  Directory
  kube-api-access-sc42x:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 op=Exists
                             node.kubernetes.io/disk-pressure:NoSchedule op=Exists
                             node.kubernetes.io/memory-pressure:NoSchedule op=Exists
                             node.kubernetes.io/network-unavailable:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists
                             node.kubernetes.io/pid-pressure:NoSchedule op=Exists
                             node.kubernetes.io/unreachable:NoExecute op=Exists
                             node.kubernetes.io/unschedulable:NoSchedule op=Exists
Events:                      <none>


Name:             syncthing-58d45d4f65-l6zxh
Namespace:        ix-syncthing
Priority:         0
Service Account:  default
Node:             ix-truenas/192.168.2.161
Start Time:       Fri, 29 Dec 2023 12:11:48 +0800
Labels:           app=syncthing
                  app.kubernetes.io/instance=syncthing
                  app.kubernetes.io/name=syncthing
                  pod-template-hash=58d45d4f65
                  release=syncthing
Annotations:      k8s.v1.cni.cncf.io/network-status:
                    [{
                        "name": "ix-net",
                        "interface": "eth0",
                        "ips": [
                            "172.16.0.247"
                        ],
                        "mac": "26:b0:e8:8e:a4:2f",
                        "default": true,
                        "dns": {},
                        "gateway": [
                            "172.16.0.1"
                        ]
                    }]
                  rollme: 4vXXw
Status:           Running
IP:               172.16.0.247
IPs:
  IP:           172.16.0.247
Controlled By:  ReplicaSet/syncthing-58d45d4f65
Containers:
  syncthing:
    Container ID:   containerd://d8a413a917c41e52a45a050ca820d001b03dddf857a2c5e8f145a8e59bd6da01
    Image:          syncthing/syncthing:1.26.1
    Image ID:       docker.io/syncthing/syncthing@sha256:bb168b3c84de0302f13702ba71eaa01b8be5af9b5a18859bbe59b1929cb6fc6b
    Ports:          8384/TCP, 22000/TCP, 22000/UDP
    Host Ports:     0/TCP, 0/TCP, 0/UDP
    State:          Running
      Started:      Fri, 29 Dec 2023 12:11:58 +0800
    Ready:          True
    Restart Count:  0
    Liveness:       http-get http://:8384/rest/noauth/health delay=10s timeout=5s period=10s #success=1 #failure=5
    Readiness:      http-get http://:8384/rest/noauth/health delay=10s timeout=5s period=10s #success=2 #failure=5
    Startup:        http-get http://:8384/rest/noauth/health delay=10s timeout=2s period=5s #success=1 #failure=60
    Environment:
      PUID:          1000
      PGID:          1000
      STGUIADDRESS:  0.0.0.0:8384
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-7zngw (ro)
      /var/syncthing from config (rw)
      /var/syncthing/sync from extrappvolume-0 (rw)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  config:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Apps/Configs/Syncthing
    HostPathType:  
  extrappvolume-0:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Users/MyFiles/Backup/Sync
    HostPathType:  
  kube-api-access-7zngw:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
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:                      <none>


Name:             qbittorrent-599b58c6c4-vvpk5
Namespace:        ix-qbittorrent
Priority:         0
Service Account:  default
Node:             ix-truenas/192.168.2.161
Start Time:       Fri, 29 Dec 2023 12:11:49 +0800
Labels:           app=qbittorrent-1.1.0
                  app.kubernetes.io/instance=qbittorrent
                  app.kubernetes.io/managed-by=Helm
                  app.kubernetes.io/name=qbittorrent
                  app.kubernetes.io/version=4.6.0
                  helm-revision=8
                  helm.sh/chart=qbittorrent-1.1.0
                  pod-template-hash=599b58c6c4
                  pod.name=qbittorrent
                  release=qbittorrent
Annotations:      k8s.v1.cni.cncf.io/network-status:
                    [{
                        "name": "ix-net",
                        "interface": "eth0",
                        "ips": [
                            "172.16.0.244"
                        ],
                        "mac": "de:0b:92:93:31:70",
                        "default": true,
                        "dns": {},
                        "gateway": [
                            "172.16.0.1"
                        ]
                    }]
                  rollme: LbNaE
Status:           Running
IP:               172.16.0.244
IPs:
  IP:           172.16.0.244
Controlled By:  ReplicaSet/qbittorrent-599b58c6c4
Init Containers:
  qbittorrent-init-01-permissions:
    Container ID:  containerd://94fc42f64d4503f65365a461fc2c6f47d44b76da10486de1f33e72bb842e4887
    Image:         bash:4.4.23
    Image ID:      docker.io/library/bash@sha256:4f28548619f139047c2e727ff42977f348625a0a069b488ec879002dc7e8aaa3
    Port:          <none>
    Host Port:     <none>
    Command:
      bash
    Args:
      -c
      for dir in /mnt/directories/*; do
        if [ ! -d "$dir" ]; then
          echo "[$dir] is not a directory, skipping"
          continue
        fi
      
        echo "Current Ownership and Permissions on ["$dir"]:"
        echo "chown: $(stat -c "%u %g" "$dir")"
        echo "chmod: $(stat -c "%a" "$dir")" 
        if [ $(stat -c %u "$dir") -eq 1000 ] && [ $(stat -c %g "$dir") -eq 1000 ]; then
          echo "Ownership is correct. Skipping..."
          fix_owner="false"
        else
          echo "Ownership is incorrect. Fixing..."
          fix_owner="true"
        fi
      
      
        if [ "$fix_owner" = "true" ]; then
          echo "Changing ownership to 1000:1000 on: ["$dir"]"
          chown -R 1000:1000 "$dir"
          echo "Finished changing ownership"
          echo "Ownership after changes:"
          stat -c "%u %g" "$dir"
        fi
      done
      
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 29 Dec 2023 12:11:51 +0800
      Finished:     Fri, 29 Dec 2023 12:11:52 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     1
      memory:  512Mi
    Requests:
      cpu:     10m
      memory:  50Mi
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      PUID:                    568
      USER_ID:                 568
      UID:                     568
      PGID:                    568
      GROUP_ID:                568
      GID:                     568
    Mounts:
      /mnt/directories/config from config (rw)
      /mnt/directories/downloads from downloads (rw)
Containers:
  qbittorrent:
    Container ID:   containerd://cbd7b1fc26131bf1a1fa25f63a94fa47adeb33059c78ea56964efa84b710819c
    Image:          ghcr.io/onedr0p/qbittorrent:4.6.0
    Image ID:       ghcr.io/onedr0p/qbittorrent@sha256:cb6259df3be61a5108bc4f85b09a523fc4b250589ca9b315ef927cbdf779afb6
    Ports:          30024/TCP, 50413/TCP, 50413/UDP
    Host Ports:     0/TCP, 0/TCP, 0/UDP
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:05 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     4
      memory:  8Gi
    Requests:
      cpu:      10m
      memory:   50Mi
    Liveness:   http-get http://:30024/ delay=10s timeout=5s period=10s #success=1 #failure=5
    Readiness:  http-get http://:30024/ delay=10s timeout=5s period=10s #success=2 #failure=5
    Startup:    http-get http://:30024/ delay=10s timeout=2s period=5s #success=1 #failure=60
    Environment Variables from:
      qbittorrent-qbit-config  ConfigMap  Optional: false
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      S6_READ_ONLY_ROOT:       1
    Mounts:
      /config from config (rw)
      /downloads from downloads (rw)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  config:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Apps/Configs/qBittorrent
    HostPathType:  
  downloads:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Users/MyFiles/Downloads/Bittorrent
    HostPathType:  
QoS Class:         Burstable
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  Unhealthy  56m   kubelet  Liveness probe failed: Get "http://172.16.0.244:30024/": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
  Warning  Unhealthy  56m   kubelet  Readiness probe failed: Get "http://172.16.0.244:30024/": context deadline exceeded (Client.Timeout exceeded while awaiting headers)


Name:             filebrowser-5986784dd4-v4lxv
Namespace:        ix-filebrowser
Priority:         0
Service Account:  default
Node:             ix-truenas/192.168.2.161
Start Time:       Fri, 29 Dec 2023 12:11:48 +0800
Labels:           app=filebrowser-1.1.3
                  app.kubernetes.io/instance=filebrowser
                  app.kubernetes.io/managed-by=Helm
                  app.kubernetes.io/name=filebrowser
                  app.kubernetes.io/version=2.26.0
                  helm-revision=5
                  helm.sh/chart=filebrowser-1.1.3
                  pod-template-hash=5986784dd4
                  pod.name=filebrowser
                  release=filebrowser
Annotations:      k8s.v1.cni.cncf.io/network-status:
                    [{
                        "name": "ix-net",
                        "interface": "eth0",
                        "ips": [
                            "172.16.0.243"
                        ],
                        "mac": "fe:b7:52:5c:ee:3d",
                        "default": true,
                        "dns": {},
                        "gateway": [
                            "172.16.0.1"
                        ]
                    }]
                  rollme: yKLbD
Status:           Running
IP:               172.16.0.243
IPs:
  IP:           172.16.0.243
Controlled By:  ReplicaSet/filebrowser-5986784dd4
Init Containers:
  filebrowser-init-01-permissions:
    Container ID:  containerd://71a08aa6aa3a4a235f210ad91a79e45007cd8a48b7d379e09fca88711ce8d245
    Image:         bash:4.4.23
    Image ID:      docker.io/library/bash@sha256:4f28548619f139047c2e727ff42977f348625a0a069b488ec879002dc7e8aaa3
    Port:          <none>
    Host Port:     <none>
    Command:
      bash
    Args:
      -c
      for dir in /mnt/directories/*; do
        if [ ! -d "$dir" ]; then
          echo "[$dir] is not a directory, skipping"
          continue
        fi
      
        echo "Current Ownership and Permissions on ["$dir"]:"
        echo "chown: $(stat -c "%u %g" "$dir")"
        echo "chmod: $(stat -c "%a" "$dir")" 
        if [ $(stat -c %u "$dir") -eq 1000 ] && [ $(stat -c %g "$dir") -eq 1000 ]; then
          echo "Ownership is correct. Skipping..."
          fix_owner="false"
        else
          echo "Ownership is incorrect. Fixing..."
          fix_owner="true"
        fi
      
      
        if [ "$fix_owner" = "true" ]; then
          echo "Changing ownership to 1000:1000 on: ["$dir"]"
          chown -R 1000:1000 "$dir"
          echo "Finished changing ownership"
          echo "Ownership after changes:"
          stat -c "%u %g" "$dir"
        fi
      done
      
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 29 Dec 2023 12:11:51 +0800
      Finished:     Fri, 29 Dec 2023 12:11:52 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     1
      memory:  512Mi
    Requests:
      cpu:     10m
      memory:  50Mi
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      PUID:                    568
      USER_ID:                 568
      UID:                     568
      PGID:                    568
      GROUP_ID:                568
      GID:                     568
    Mounts:
      /mnt/directories/Hiro from filebrowser-1 (rw)
      /mnt/directories/Linus from filebrowser-0 (rw)
      /mnt/directories/config from config (rw)
  filebrowser-init-02-init-config:
    Container ID:  containerd://5b021dd4436f6afb94b9834792fb6ddcfa2712d66664df3e3ca7ef9ea5f7e82b
    Image:         filebrowser/filebrowser:v2.26.0
    Image ID:      docker.io/filebrowser/filebrowser@sha256:7428a67e0265f1550e2421bdc554d35889921f5ba2285b829693053fb98aab8a
    Port:          <none>
    Host Port:     <none>
    Command:
      /bin/sh
      -c
      if [ ! -f /config/filebrowser.json ]; then
        echo "Creating an empty config file"
        echo '{}' > /config/filebrowser.json
      fi
    State:          Terminated
      Reason:       Completed
      Exit Code:    0
      Started:      Fri, 29 Dec 2023 12:12:05 +0800
      Finished:     Fri, 29 Dec 2023 12:12:05 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     4
      memory:  8Gi
    Requests:
      cpu:     10m
      memory:  50Mi
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      S6_READ_ONLY_ROOT:       1
    Mounts:
      /config from config (rw)
Containers:
  filebrowser:
    Container ID:  containerd://0056744eaf165f57bfa254dba3ecb4e25c9af91639a804ed8acc3e7ac44dc651
    Image:         filebrowser/filebrowser:v2.26.0
    Image ID:      docker.io/filebrowser/filebrowser@sha256:7428a67e0265f1550e2421bdc554d35889921f5ba2285b829693053fb98aab8a
    Port:          30044/TCP
    Host Port:     0/TCP
    Args:
      --config
      /config/filebrowser.json
      --database
      /config/filebrowser.db
      --port
      30044
      --address
      0.0.0.0
      --root
      /data
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:14 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     4
      memory:  8Gi
    Requests:
      cpu:      10m
      memory:   50Mi
    Liveness:   http-get http://:30044/health delay=10s timeout=5s period=10s #success=1 #failure=5
    Readiness:  http-get http://:30044/health delay=10s timeout=5s period=10s #success=2 #failure=5
    Startup:    http-get http://:30044/health delay=10s timeout=2s period=5s #success=1 #failure=60
    Environment:
      TZ:                      UTC
      UMASK:                   002
      UMASK_SET:               002
      NVIDIA_VISIBLE_DEVICES:  void
      S6_READ_ONLY_ROOT:       1
    Mounts:
      /config from config (rw)
      /data/Hiro from filebrowser-1 (rw)
      /data/Linus from filebrowser-0 (rw)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  config:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Apps/Configs/FileBrowser
    HostPathType:  
  filebrowser-0:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Users/Linus/SharedFiles
    HostPathType:  
  filebrowser-1:
    Type:          HostPath (bare host directory volume)
    Path:          /mnt/Storage_Pool/Users/MyFiles/SharedFiles
    HostPathType:  
QoS Class:         Burstable
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  Unhealthy  28m   kubelet  Liveness probe failed: Get "http://172.16.0.243:30044/health": context deadline exceeded (Client.Timeout exceeded while awaiting headers)


Name:                 snapshot-controller-546868dfb4-fszxk
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      snapshot-controller
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:48 +0800
Labels:               app=snapshot-controller
                      pod-template-hash=546868dfb4
Annotations:          k8s.v1.cni.cncf.io/network-status:
                        [{
                            "name": "ix-net",
                            "interface": "eth0",
                            "ips": [
                                "172.16.0.246"
                            ],
                            "mac": "06:b1:64:66:fa:07",
                            "default": true,
                            "dns": {},
                            "gateway": [
                                "172.16.0.1"
                            ]
                        }]
Status:               Running
IP:                   172.16.0.246
IPs:
  IP:           172.16.0.246
Controlled By:  ReplicaSet/snapshot-controller-546868dfb4
Containers:
  snapshot-controller:
    Container ID:  containerd://84fd0b36ec42c220f682f3571d79a055f622992e79ed66d86b8c48d3099d43b6
    Image:         registry.k8s.io/sig-storage/snapshot-controller:v6.2.2
    Image ID:      registry.k8s.io/sig-storage/snapshot-controller@sha256:fb95b65bb88f319f0f7d5397c401a654164f11a191f466b4026fa36085c7141b
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=2
      --leader-election=true
      --leader-election-namespace=kube-system
    State:          Running
      Started:      Sat, 30 Dec 2023 04:02:47 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:11:56 +0800
      Finished:     Sat, 30 Dec 2023 04:02:25 +0800
    Ready:          True
    Restart Count:  1
    Limits:
      memory:  300Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-xvg6c (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  kube-api-access-xvg6c:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 node-role.kubernetes.io/control-plane=true:NoSchedule
                             node-role.kubernetes.io/controlplane=true:NoSchedule
                             node-role.kubernetes.io/master=true:NoSchedule
                             node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                             node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:                      <none>


Name:                 csi-smb-controller-7fbbb8fb6f-sxjnz
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      csi-smb-controller-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:49 +0800
Labels:               app=csi-smb-controller
                      pod-template-hash=7fbbb8fb6f
Annotations:          <none>
Status:               Running
IP:                   192.168.2.161
IPs:
  IP:           192.168.2.161
Controlled By:  ReplicaSet/csi-smb-controller-7fbbb8fb6f
Containers:
  csi-provisioner:
    Container ID:  containerd://570df6b7f95c0968283745381400466e396578d5445ecd6d0be40244389f5e4f
    Image:         registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
    Image ID:      registry.k8s.io/sig-storage/csi-provisioner@sha256:d078dc174323407e8cc6f0f9abd4efaac5db27838f1564d0253d5e3233e3f17f
    Port:          <none>
    Host Port:     <none>
    Args:
      -v=2
      --csi-address=$(ADDRESS)
      --leader-election
      --leader-election-namespace=kube-system
      --extra-create-metadata=true
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:20 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:12:01 +0800
      Finished:     Sat, 30 Dec 2023 07:04:03 +0800
    Ready:          True
    Restart Count:  1
    Limits:
      cpu:     1
      memory:  300Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Environment:
      ADDRESS:  /csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l6lmx (ro)
  liveness-probe:
    Container ID:  containerd://d45a74a5042bdf474d869f05371467eae8a61bbb73c888e3b2660dc56abb6abb
    Image:         registry.k8s.io/sig-storage/livenessprobe:v2.10.0
    Image ID:      registry.k8s.io/sig-storage/livenessprobe@sha256:4dc0b87ccd69f9865b89234d8555d3a614ab0a16ed94a3016ffd27f8106132ce
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=/csi/csi.sock
      --probe-timeout=3s
      --health-port=29642
      --v=2
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:10 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      cpu:     1
      memory:  100Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l6lmx (ro)
  smb:
    Container ID:  containerd://b3c5cdf850c33d886ba8d4aeccc9fdd53e7eee31324a0a0025fb25710c47162b
    Image:         registry.k8s.io/sig-storage/smbplugin:v1.11.0
    Image ID:      registry.k8s.io/sig-storage/smbplugin@sha256:65f664c6e9cce565805b13fb82b40018d56e39f41616134f572c52f3964c6ee4
    Ports:         29642/TCP, 29644/TCP
    Host Ports:    29642/TCP, 29644/TCP
    Args:
      --v=5
      --endpoint=$(CSI_ENDPOINT)
      --metrics-address=0.0.0.0:29644
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:16 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  200Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  http-get http://:healthz/healthz delay=30s timeout=10s period=30s #success=1 #failure=5
    Environment:
      CSI_ENDPOINT:  unix:///csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l6lmx (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  socket-dir:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  kube-api-access-l6lmx:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 node-role.kubernetes.io/control-plane:NoSchedule op=Exists
                             node-role.kubernetes.io/controlplane:NoSchedule op=Exists
                             node-role.kubernetes.io/master:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                             node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:                      <none>


Name:                 csi-nfs-controller-7b74694749-l7h5m
Namespace:            kube-system
Priority:             2000000000
Priority Class Name:  system-cluster-critical
Service Account:      csi-nfs-controller-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:49 +0800
Labels:               app=csi-nfs-controller
                      pod-template-hash=7b74694749
Annotations:          <none>
Status:               Running
IP:                   192.168.2.161
IPs:
  IP:           192.168.2.161
Controlled By:  ReplicaSet/csi-nfs-controller-7b74694749
Containers:
  csi-provisioner:
    Container ID:  containerd://d9b6576c3d12b6d33b3a4487fce41c9bb7adca42d3b69c65f0eb856d2a812c60
    Image:         registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
    Image ID:      registry.k8s.io/sig-storage/csi-provisioner@sha256:d078dc174323407e8cc6f0f9abd4efaac5db27838f1564d0253d5e3233e3f17f
    Port:          <none>
    Host Port:     <none>
    Args:
      -v=2
      --csi-address=$(ADDRESS)
      --leader-election
      --leader-election-namespace=kube-system
      --extra-create-metadata=true
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:20 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:12:01 +0800
      Finished:     Sat, 30 Dec 2023 07:04:03 +0800
    Ready:          True
    Restart Count:  1
    Limits:
      memory:  400Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Environment:
      ADDRESS:  /csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-mjtp4 (ro)
  csi-snapshotter:
    Container ID:  containerd://4f40449a33ced3d75bc28f8e01e4577e9fc73274ebe4fda3a40ebec3efd45bb3
    Image:         registry.k8s.io/sig-storage/csi-snapshotter:v6.2.2
    Image ID:      registry.k8s.io/sig-storage/csi-snapshotter@sha256:becc53e25b96573f61f7469923a92fb3e9d3a3781732159954ce0d9da07233a2
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=2
      --csi-address=$(ADDRESS)
      --leader-election-namespace=kube-system
      --leader-election
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:21 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:12:11 +0800
      Finished:     Sat, 30 Dec 2023 07:04:02 +0800
    Ready:          True
    Restart Count:  1
    Limits:
      memory:  200Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Environment:
      ADDRESS:  /csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-mjtp4 (ro)
  liveness-probe:
    Container ID:  containerd://1a97a0de6463e594767a2217633e3a932abace2bc4cd6860579f5205b7beff6d
    Image:         registry.k8s.io/sig-storage/livenessprobe:v2.10.0
    Image ID:      registry.k8s.io/sig-storage/livenessprobe@sha256:4dc0b87ccd69f9865b89234d8555d3a614ab0a16ed94a3016ffd27f8106132ce
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=/csi/csi.sock
      --probe-timeout=3s
      --health-port=29652
      --v=2
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:15 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  100Mi
    Requests:
      cpu:        10m
      memory:     20Mi
    Environment:  <none>
    Mounts:
      /csi from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-mjtp4 (ro)
  nfs:
    Container ID:  containerd://1bf2322180ecbd9bc15d6ce2b0cfb826ccc0b9771743e3f20d13caba74fccc10
    Image:         registry.k8s.io/sig-storage/nfsplugin:v4.4.0
    Image ID:      registry.k8s.io/sig-storage/nfsplugin@sha256:971cb526bc0108cca7d8efda32102629cb362f99bbd4879fd381bea1b2014ab4
    Port:          29652/TCP
    Host Port:     29652/TCP
    Args:
      -v=5
      --nodeid=$(NODE_ID)
      --endpoint=$(CSI_ENDPOINT)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:19 +0800
    Ready:          True
    Restart Count:  0
    Limits:
      memory:  200Mi
    Requests:
      cpu:     10m
      memory:  20Mi
    Liveness:  http-get http://:healthz/healthz delay=30s timeout=10s period=30s #success=1 #failure=5
    Environment:
      NODE_ID:        (v1:spec.nodeName)
      CSI_ENDPOINT:  unix:///csi/csi.sock
    Mounts:
      /csi from socket-dir (rw)
      /var/lib/kubelet/pods from pods-mount-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-mjtp4 (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  pods-mount-dir:
    Type:          HostPath (bare host directory volume)
    Path:          /var/lib/kubelet/pods
    HostPathType:  Directory
  socket-dir:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  kube-api-access-mjtp4:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
QoS Class:                   Burstable
Node-Selectors:              kubernetes.io/os=linux
Tolerations:                 node-role.kubernetes.io/control-plane:NoSchedule op=Exists
                             node-role.kubernetes.io/controlplane:NoSchedule op=Exists
                             node-role.kubernetes.io/master:NoSchedule op=Exists
                             node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
                             node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:                      <none>


Name:                 openebs-zfs-controller-0
Namespace:            kube-system
Priority:             900000000
Priority Class Name:  openebs-zfs-csi-controller-critical
Service Account:      openebs-zfs-controller-sa
Node:                 ix-truenas/192.168.2.161
Start Time:           Fri, 29 Dec 2023 12:11:48 +0800
Labels:               app=openebs-zfs-controller
                      controller-revision-hash=openebs-zfs-controller-f64dccd8b
                      openebs.io/component-name=openebs-zfs-controller
                      openebs.io/version=ci
                      role=openebs-zfs
                      statefulset.kubernetes.io/pod-name=openebs-zfs-controller-0
Annotations:          k8s.v1.cni.cncf.io/network-status:
                        [{
                            "name": "ix-net",
                            "interface": "eth0",
                            "ips": [
                                "172.16.0.248"
                            ],
                            "mac": "8a:9d:1d:46:d4:fb",
                            "default": true,
                            "dns": {},
                            "gateway": [
                                "172.16.0.1"
                            ]
                        }]
Status:               Running
IP:                   172.16.0.248
IPs:
  IP:           172.16.0.248
Controlled By:  StatefulSet/openebs-zfs-controller
Containers:
  csi-resizer:
    Container ID:  containerd://8060cd81c296670d313e0f81b379aaf3422e300c2c9caec1d05c79f5751e6913
    Image:         registry.k8s.io/sig-storage/csi-resizer:v1.2.0
    Image ID:      registry.k8s.io/sig-storage/csi-resizer@sha256:36c31f7e1f433c9634d24f876353e8646246d81a03c4e351202c2644daff1620
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=5
      --csi-address=$(ADDRESS)
      --leader-election
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:19 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:11:59 +0800
      Finished:     Sat, 30 Dec 2023 07:04:01 +0800
    Ready:          True
    Restart Count:  1
    Environment:
      ADDRESS:  /var/lib/csi/sockets/pluginproxy/csi.sock
    Mounts:
      /var/lib/csi/sockets/pluginproxy/ from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l9rdk (ro)
  csi-snapshotter:
    Container ID:  containerd://b8e0f8c8f8f946e6119e0cc86ddaae6d541a6d117f70b936c95d34571b37c4d3
    Image:         registry.k8s.io/sig-storage/csi-snapshotter:v4.0.0
    Image ID:      registry.k8s.io/sig-storage/csi-snapshotter@sha256:51f2dfde5bccac7854b3704689506aeecfb793328427b91115ba253a93e60782
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=$(ADDRESS)
      --leader-election
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:20 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:12:06 +0800
      Finished:     Sat, 30 Dec 2023 07:04:04 +0800
    Ready:          True
    Restart Count:  1
    Environment:
      ADDRESS:  /var/lib/csi/sockets/pluginproxy/csi.sock
    Mounts:
      /var/lib/csi/sockets/pluginproxy/ from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l9rdk (ro)
  snapshot-controller:
    Container ID:  containerd://5bdef415410daf1ec04e031bed119b82cb402b2c2780f89390cc07e635006c7c
    Image:         registry.k8s.io/sig-storage/snapshot-controller:v4.0.0
    Image ID:      registry.k8s.io/sig-storage/snapshot-controller@sha256:00fcc441ea9f72899c25eed61d602272a2a58c5f0014332bdcb5ac24acef08e4
    Port:          <none>
    Host Port:     <none>
    Args:
      --v=5
      --leader-election=true
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:21 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Fri, 29 Dec 2023 12:12:13 +0800
      Finished:     Sat, 30 Dec 2023 07:04:05 +0800
    Ready:          True
    Restart Count:  1
    Environment:    <none>
    Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l9rdk (ro)
  csi-provisioner:
    Container ID:  containerd://090eabc39352f74c7961a1255e5ae5448e1e400bc5ed60a687c8f9fbed600758
    Image:         registry.k8s.io/sig-storage/csi-provisioner:v3.0.0
    Image ID:      registry.k8s.io/sig-storage/csi-provisioner@sha256:6477988532358148d2e98f7c747db4e9250bbc7ad2664bf666348abf9ee1f5aa
    Port:          <none>
    Host Port:     <none>
    Args:
      --csi-address=$(ADDRESS)
      --v=5
      --feature-gates=Topology=true
      --strict-topology
      --leader-election
      --extra-create-metadata=true
      --enable-capacity=true
      --default-fstype=ext4
    State:          Running
      Started:      Sat, 30 Dec 2023 07:04:23 +0800
    Last State:     Terminated
      Reason:       Error
      Exit Code:    255
      Started:      Sat, 30 Dec 2023 04:02:47 +0800
      Finished:     Sat, 30 Dec 2023 07:04:05 +0800
    Ready:          True
    Restart Count:  2
    Environment:
      ADDRESS:    /var/lib/csi/sockets/pluginproxy/csi.sock
      NAMESPACE:  kube-system (v1:metadata.namespace)
      POD_NAME:   openebs-zfs-controller-0 (v1:metadata.name)
    Mounts:
      /var/lib/csi/sockets/pluginproxy/ from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l9rdk (ro)
  openebs-zfs-plugin:
    Container ID:  containerd://b03e73a5d7c939cfb03045118b4ae0e8eeffb4941e46e124ca4198ca1dc39487
    Image:         openebs/zfs-driver:ci
    Image ID:      docker.io/openebs/zfs-driver@sha256:966bb1e8fb67e12ec58cdbc79f4adf0824c37eba11b1cdfcd6ae3898e0a5d4c3
    Port:          <none>
    Host Port:     <none>
    Args:
      --endpoint=$(OPENEBS_CSI_ENDPOINT)
      --plugin=$(OPENEBS_CONTROLLER_DRIVER)
    State:          Running
      Started:      Fri, 29 Dec 2023 12:12:21 +0800
    Ready:          True
    Restart Count:  0
    Environment:
      OPENEBS_CONTROLLER_DRIVER:    controller
      OPENEBS_CSI_ENDPOINT:         unix:///var/lib/csi/sockets/pluginproxy/csi.sock
      OPENEBS_NAMESPACE:            openebs
      OPENEBS_IO_INSTALLER_TYPE:    zfs-operator
      OPENEBS_IO_ENABLE_ANALYTICS:  true
    Mounts:
      /var/lib/csi/sockets/pluginproxy/ from socket-dir (rw)
      /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-l9rdk (ro)
Conditions:
  Type              Status
  Initialized       True 
  Ready             True 
  ContainersReady   True 
  PodScheduled      True 
Volumes:
  socket-dir:
    Type:       EmptyDir (a temporary directory that shares a pod's lifetime)
    Medium:     
    SizeLimit:  <unset>
  kube-api-access-l9rdk:
    Type:                    Projected (a volume that contains injected data from multiple sources)
    TokenExpirationSeconds:  3607
    ConfigMapName:           kube-root-ca.crt
    ConfigMapOptional:       <nil>
    DownwardAPI:             true
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:                      <none>
