Open luna215 opened 9 months ago
@luna215 Does it consistently fail?
@srikanthccv yeah it happens consistently. I actually can install signoz 0.32.2 if I only have these settings on my yaml file:
global:
storageClass: gp2-resizable
cloud: aws
clickhouse:
installCustomStorageClass: true
However, when I try to upgrade to add coldStorage with a separate yaml file that contains these configurations:
# cold-storage.yaml
clickhouse:
installCustomStorageClass: true
coldStorage:
enabled: true
defaultKeepFreeSpaceBytes: "10485760"
endpoint: https://*******.s3.us-west-1.amazonaws.com/data/
accessKey: ********
secretAccess: **********
role:
enabled: true
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::***:role/***
using this command:
helm --namespace platform upgrade signoz signoz/signoz -f cold-storage.yaml
it gives me the same error as above and it breaks my Signoz - as I can't access it anymore and I just get a blank page with the text Something went wrong
In most cases of migrator job failure, it means either the clickhouse or zookepeer was not healthy.
It would be best to watch the pods in another terminal with kubectl get pods -n platform
and do share logs of the failure migrator pod.
However, when I try to upgrade to add coldStorage with a separate yaml file that contains these configurations:
Also, in case of new override values - you are required to merge the yaml with the previously applied one, was that done?
global:
storageClass: gp2-resizable
cloud: aws
clickhouse:
installCustomStorageClass: true
coldStorage:
enabled: true
defaultKeepFreeSpaceBytes: "10485760"
endpoint: https://*******.s3.us-west-1.amazonaws.com/data/
accessKey: ********
secretAccess: **********
role:
enabled: true
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::***:role/***
And lastly, I see you have both access/secret key as well as role set up. You will only need one.
When I run this comamand to install signoz 0.32.2 via helm:
helm --namespace platform install signoz-new signoz/signoz -f install.yaml --debug
with the following yaml file to override some values:I get the following error:
Any ideas of what can be causing the installation to error out?