Skip to content
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

Can't run multiple EE on same cluster #120

Open
robotrapta opened this issue Oct 27, 2024 · 1 comment
Open

Can't run multiple EE on same cluster #120

robotrapta opened this issue Oct 27, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@robotrapta
Copy link
Member

I'd expect that I can run the EE twice in different namespaces on the same cluster. But when I try that, I get this error in the edge-endpoint pod:

  Warning  FailedScheduling  3m5s  default-scheduler  0/1 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/1 nodes are available: 1 Preemption is not helpful for scheduling.
@robotrapta robotrapta added the bug Something isn't working label Oct 27, 2024
@robotrapta
Copy link
Member Author

Manual workaround is to create a second PV and PVC like this:

apiVersion: v1
kind: PersistentVolume
metadata:
  name: edge-endpoint-pv2
spec:
  capacity:
    storage: 2Gi
  accessModes:
    - ReadWriteOnce
  persistentVolumeReclaimPolicy: Retain
  storageClassName: local-sc
  hostPath:
    path: /opt/groundlight/edge2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant