Hello, Im new to SigNoz, I have tried to install t...
# support
t
Hello, Im new to SigNoz, I have tried to install the helm chart to a openshift cluster but get a error msg: make install (after setting namespace in Makefile) Error: failed to install CRD crds/clickhouse-operator-install.yaml: resource mapping not found for name: "clickhouseinstallations.clickhouse.altinity.com" namespace: "" from "": no matches for kind "CustomResourceDefinition" in version "apiextensions.k8s.io/v1" Anyone who experieced same ?
p
@Prashant Shahi Do you have any ideas on this?
p
Hey @Thanakaran Rajanayagam ! we don't officially support OpenShift (OCP) yet. Nevertheless, it could possibly because of older version of
<http://apiextensions.k8s.io/v1|apiextensions.k8s.io/v1>
in which
CustomResourceDefinition
kind is not valid. You could resolve it above error by replacing
apiVersion
to
<http://apiextensions.k8s.io/v1beta1|apiextensions.k8s.io/v1beta1>
. But again, you might be required to make couple of changes with security content and user accessible volume bindings.
👍 1
t
Ok, Thank u for the response.