0
votes

I get this error with helm3, why?

$ gcloud config list
[core]
account = xxxxx@xxxxx
disable_usage_reporting = True
project = project1-xxxxx

Your active configuration is: [xconfig]

$ kubectl get nodes --cluster gke_project1-xxxxx-central1-c_cluster-1
NAME                                       STATUS   ROLES    AGE    VERSION
gke-cluster-1-default-pool-xxxxx-xxxxx   Ready    <none>   159m   v1.19.9-gke.1400
gke-cluster-1-default-pool-xxxxx-xxxxx   Ready    <none>   159m   v1.19.9-gke.1400
gke-cluster-1-default-pool-xxxxx-xxxxx   Ready    <none>   159m   v1.19.9-gke.1400

$ helm3 install -f values.yaml confluent confluentinc/cp-helm-charts
ERROR: ld.so: object '/usr/local/lib/AppProtection/libAppProtection.so' from /etc/ld.so.preload cannot be preloaded (failed to map segment from shared object): ignored.
ERROR: ld.so: object '/usr/local/lib/AppProtection/libAppProtection.so' from /etc/ld.so.preload cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/usr/local/lib/AppProtection/libAppProtection.so' from /etc/ld.so.preload cannot be preloaded (cannot open shared object file): ignored.
Error: Kubernetes cluster unreachable
1
Can you check the permissions of kube-config fileSravan Kumar
This doesn't seem like a Helm problem, or even necessarily a programming-related issue. This answer suggests a specific piece of software that could be conflicting, maybe?David Maze
@SravanKumar I have not used any kube-config file. How can I check?xRobot

1 Answers

0
votes

Could this guide, from official repository, help you for installing confluentinc?

helm repo add confluentinc https://confluentinc.github.io/cp-helm-charts/   #(1)
helm repo update    #(2)
helm install confluentinc/cp-helm-charts --name my-confluent --version 0.6.0 

Check the kubeconfig file with $ kubectl config view