-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid meta driver: $'postgres [interface.go:500] #1016
Comments
@KKulishov We recently fixed a bug juicedata/juicefs#4731 with postgres not sure if it's related. |
@zhijian-pro thanks for the advice But version I use this helm image image:
repository: juicedata/juicefs-csi-driver
tag: "v0.24.1"
pullPolicy: ""
dashboardImage:
repository: juicedata/csi-dashboard
tag: "v0.24.1"
pullPolicy: ""
sidecars:
livenessProbeImage:
repository: registry.k8s.io/sig-storage/livenessprobe
tag: "v2.12.0"
pullPolicy: ""
nodeDriverRegistrarImage:
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
tag: "v2.9.0"
pullPolicy: ""
csiProvisionerImage:
repository: registry.k8s.io/sig-storage/csi-provisioner
tag: "v2.2.2"
pullPolicy: ""
csiResizerImage:
repository: registry.k8s.io/sig-storage/csi-resizer
tag: "v1.9.0"
pullPolicy: "" Can you suggest which image should be used for
I repeat , if I set the mode
everything is working . PV and PVS are created and mounted in pods. When user (mountMode: mountpod) image use pods juicefs-urt-k8s-test-w8-pvc-b4a40f88-a9e2-4573-9233-b85434fc8a6d-wwjuaf
The problem only occurs when I use
there may be a problem in the operating logic in https://github.com/juicedata/charts/blob/main/charts/juicefs-csi-driver/templates/daemonset.yaml |
Can you desensitize the meta-url and post it, I need to determine if his formatting is correct. |
@zhijian-pro Sorry, I can't post url. It my corp network. I can share logs only but I changed cocroachdb on redis use
and with redis everything worked rather the problem is on the side controller |
@zhijian-pro @zxh326 I suppose it's been escaped by this function? |
Does your pg password contain the Special characters in the password need to be replaced by url encoding. For example, |
Thank you @zxh326 @polyrabbit . the problem was with the passwords. the line contained a special character '&' , changed to '%26' and redeploy. |
What happened:
I deploy juicefs csi on k8s and use S3 (Minio) as object storage and cockroachdb as metadata engine.
And I create pvc and pod that pvc created successfully but pod cannnot attach volume.
describe pod
logs juicefs-csi-node
Linux version in juicefs-csi-node : Oracle Linux Server 8.7 and kernel: 5.4.17-2136.315.5.el8uek.x86_64
Install JuiceFS helm (this repo) and set in values.yaml
mountMode: process
and changes
this my StrorageClass
this my secrets
this my test app:
But if I change in values.yaml from process on mountpod
mountMode: mountpod
then everything is ok. PV and PVC are being created and mounted pods
can you help solve this case? Why mode "mountMode: process" don't mount.
The text was updated successfully, but these errors were encountered: