I am trying to install a helm release, using following command
helm upgrade --install --reset-values {release-name} ../chart --namespace test01 --values /tmp/values737957648
The chart is not packaged is kept in the expanded form.
This fails with the below error, where it basically trying to store release information
sh.helm.release.v1.{release-name}.v1" is invalid: data: Too long: must have at most 1048576 characters
How to go about debugging this problem?
if I try to generate the template of the chart and do kubectl create it gets installed fine .i.e.
helm template {release-name} chart --namespace test01 --values /tmp/values737957648 >> test1.yaml
kubectly create test1.yaml (No configmap/No secret limit issue)
The problem occurs when trying to install via helm and it tries to create helm-secret
How could I approach to solve this issue ?
I am using helm version
helm version
version.BuildInfo{Version:"v3.0.2", GitCommit:"19e47ee3283ae98139d98460de796c1be1e3975f",
GitTreeState:"clean", GoVersion:"go1.13.5"}