We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fails due to PVC not provisioning:
apiVersion: v1 kind: PersistentVolumeClaim metadata: annotations: volume.beta.kubernetes.io/storage-provisioner: rancher.io/local-path volume.kubernetes.io/selected-node: k3d-fluvio-server-0 creationTimestamp: "2022-07-02T15:07:36Z" finalizers: - kubernetes.io/pvc-protection labels: app: spu group: main name: data-fluvio-spg-main-0 namespace: default resourceVersion: "852" uid: 0cc1c1b6-0a2a-4e07-bc2a-2f3d78af58ad spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Gi storageClassName: local-path volumeMode: Filesystem status: phase: Pending
Notice that phase is Pending, compared to: Bound .
phase
Pending
Bound
for successful PVC:
apiVersion: v1 kind: PersistentVolumeClaim metadata: annotations: pv.kubernetes.io/bind-completed: "yes" pv.kubernetes.io/bound-by-controller: "yes" volume.beta.kubernetes.io/storage-provisioner: k8s.io/minikube-hostpath creationTimestamp: "2022-07-03T02:21:43Z" finalizers: - kubernetes.io/pvc-protection labels: app: spu group: main name: data-fluvio-spg-main-0 namespace: default resourceVersion: "598" uid: 49065828-dfb2-40dd-8cf8-47b2352ee0a2 spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Gi storageClassName: standard volumeMode: Filesystem volumeName: pvc-49065828-dfb2-40dd-8cf8-47b2352ee0a2 status: accessModes: - ReadWriteOnce capacity: storage: 10Gi phase: Bound
Problem is that Installer doesn't show proper error:
🔎 Discovering Fluvio SC ..... 🖥️ Trying to connect to SC: 172.18.0.2:30003 15 seconds elapsed 🖥️ Trying to connect to SC: 172.18.0.2:30003 16 seconds elapsed ✅ Connected to SC: 172.18.0.2:30003 Creating K8 profile for: 172.18.0.2:30003 👤 Profile set 📝 Checking for existing SPU Group: main 🤖 Creating SPU Group: main with replicas: 1 Error: 0: Fluvio cluster error 1: Failed to install Fluvio on Kubernetes 2: Fluvio client error 3: Fluvio socket error: Timed out waiting for response. API_KEY=1001, CorrelationId=5 4: Timed out waiting for response. API_KEY=1001, CorrelationId=5 Error: Process completed with exit code 1.
The text was updated successfully, but these errors were encountered:
add timeout value with sockets time out (#2460)
7b7d274
To help debug hourly failure issues associated with #2461.
No branches or pull requests
fails due to PVC not provisioning:
Notice that
phase
isPending
, compared to:Bound
.for successful PVC:
Problem is that Installer doesn't show proper error:
The text was updated successfully, but these errors were encountered: