You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[root@edrtest05v zhuliquan]# kubectl get pod -n arroyo
NAME READY STATUS RESTARTS AGE
arroyo-controller-59464b8b47-hfl69 0/1 Init:0/1 0 43s
arroyo-postgresql-0 0/1 Pending 0 43s
I describe pod, I found missing PersistentVolume for postgresql-0
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Warning FailedScheduling 5m35s default-scheduler 0/3 nodes are available: 3 pod has unbound immediate PersistentVolumeClaims.
Warning FailedScheduling 5m35s default-scheduler 0/3 nodes are available: 3 pod has unbound immediate PersistentVolumeClaims.
Normal Scheduled 57s default-scheduler Successfully assigned arroyo/arroyo-postgresql-0 to 10.252.176.112
Warning FailedMount 26s (x7 over 58s) kubelet MountVolume.NewMounter initialization failed for volume "arroyo-pg-pv-dev" : path "/tmp/arroyo-pv" does not exist
Here, I need apply blow pv to solve problem. May be should save it default values.yaml
Thanks for reporting this. I'm not quite sure what's going on, as our helm chart should not be responsible for creating the PV for postgres. The postgres chart should be doing that (depending on how you've configured it).
Could you include the values.yaml that produce the issue?
Thanks for reporting this. I'm not quite sure what's going on, as our helm chart should not be responsible for creating the PV for postgres. The postgres chart should be doing that (depending on how you've configured it).
Could you include the values.yaml that produce the issue?
This is my own values.yaml
image:
repository: arroyotag: "edbeebcd"imagePullPolicy: IfNotPresentimagePullSecrets: []controller:
resources:
limits: {}requests:
memory: 8192Micpu: 2000mservice:
grpcPort: 5116compilerPort: 5117adminPort: 5114httpPort: 80worker:
resources:
limits: {}requests:
memory: 2048Micpu: 2000mslots: 16# save checkpoints data from arroyo-workercheckpointUrl: "file:///tmp/arroyo/checkpoints"# save compiled binary data from arroyo-compilerartifactUrl: "file:///tmp/arroyo/artifacts"
Hello, I install arroyo on k8s by below command
However, I found pg pod is pending
I describe pod, I found missing PersistentVolume for postgresql-0
Here, I need apply blow
pv
to solve problem. May be should save it defaultvalues.yaml
The text was updated successfully, but these errors were encountered: