-
Notifications
You must be signed in to change notification settings - Fork 613
[plex] unable to attach or mount volumes #18
Comments
Can you post your helm chart values too? Make sure to remove any private bits if you have any. Or if it's public, link to it. |
@dcplaya Sure, here you go claimToken: "REDACTED"
timezone: Europe/London
service:
type: LoadBalancer # We will use a LoadBalancer to obtain a virtual IP that can be exposed to Plex Media via our router
port: 32400 # Port to expose Plex
plexUid: 1000
plexGid: 1000
persistence:
transcode:
enabled: true
claimName: media-ssd
data:
enabled: true
claimName: media-ssd
config:
claimName: media-ssd |
Hmmm, is your
From your pod description, it seems like it isn't since the pod complains about not being able to mount |
@dcplaya Both are set to Name: media-ssd
Namespace: media
StorageClass: manual
Status: Bound
Volume: media-ssd
Labels: <none>
Annotations: pv.kubernetes.io/bind-completed: yes
pv.kubernetes.io/bound-by-controller: yes
Finalizers: [kubernetes.io/pvc-protection]
Capacity: 600Gi
Access Modes: RWX
VolumeMode: Filesystem
Mounted By: jackett-6988b9c445-xjg8z
plex-69fb48c94f-tf56c
plex-69fb48c94f-tf56c
plex-69fb48c94f-tf56c
sonarr-5869b4584b-plmrk
transmission-transmission-openvpn-5f7ddd8b86-q7vzj
Events: <none> Also it seems like it's mounted by the plex container from here as well. |
I think it may be because of using same pvc twice in "volumes" section. Try creating different pvc for different volume mounts. |
@blmhemu Thanks, instead of creating new ones I just removed them from the |
I'm new to kubernetes so I'm not sure if this is expected or not. I'm trying to add the
plex
chart to my cluster and I have only a single PV and PVC. After starting the chart it's stuck atContainerCreating
because it cannot attach the volumesUnable to attach or mount volumes: unmounted volumes=[data transcode], unattached volumes=[data config transcode shared default-token-8s7wb]: timed out waiting for the condition
It seems to me that it might be because
deployment.yml
file storing hardcoded values forvolumeMounts
as they don't exist in my cluster. e.g. https://github.com/billimek/billimek-charts/blob/master/charts/plex/templates/deployment.yaml#L196Is there a reason we are hardcoding those values, do I need to setup extra PVC named as they are?
There is a similar issue here which seems to have the same problem.
Here is the
kubectl describe pod ...
The text was updated successfully, but these errors were encountered: