Hello,
I try to install Dremio on a Azure Kubernetes cluster through the cloud shell. I customised values.yaml file to fit my cluster size.
But when I try to install dremio with helm I got this error:
$ helm install dremiov2 dremio-cloud-tools/charts/dremio_v2 -f custom_values.yaml
Error: INSTALLATION FAILED: failed to create resource: StatefulSet in version "v1" cannot be handled as a StatefulSet: quantities must match the regular expression '^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$'
It doesn’t really match other errors on google. Does anyone understand what is going on ?
I also paste my custom values.yaml file so you can try it at home.
image: dremio/dremio-oss
imageTag: latest
annotations: {}
podAnnotations: {}
labels: {}
podLabels: {}
nodeSelector: {}
tolerations: []
coordinator:
cpu: 2
memory: 1047552
count: 0
volumeSize: 1023Gi
web:
port: 9047
tls:
enabled: false
secret: dremio-tls-secret-ui
client:
port: 31010
tls:
enabled: false
secret: dremio-tls-secret-client
flight:
port: 32010
tls:
enabled: false
secret: dremio-tls-secret-flight
executor:
cpu: 2
memory: 1047552
engines: ["default"]
count: 1
volumeSize: 1023Gi
cloudCache:
enabled: true
volumes:
- size: 512Gi
zookeeper:
image: zookeeper
imageTag: 3.8.0
cpu: 1
memory: 2048
count: 1
volumeSize: 10Gi
distStorage:
type: "azureStorage"
gcp:
bucketName: "GCS Bucket Name"
path: "/"
authentication: "auto"
aws:
bucketName: "AWS Bucket Name"
path: "/"
authentication: "metadata"
azure:
datalakeStoreName: "Azure DataLake Store Name"
path: "/"
credentials:
applicationId: "Azure Application ID"
secret: "Azure Application Secret"
oauth2Endpoint: "Azure OAuth2 Endpoint"
azureStorage:
accountName: "dlsdremiodev"
filesystem: "sample"
path: "/"
credentials:
accessKey: "my access key"
extraVolumes: []
extraVolumeMounts: []
service:
type: LoadBalancer