You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running make charts executes the upgrade-helm.sh file.
The file uses the manifests/default.yaml to generate the helm chart templates required for hns installation. The installation fails because resource names are the same and end up generating the same helm template file.
For example, the following will cause the creation of hnc-resourcelist.yaml for both resources, resulting in one overriding the other.
After the make chart command above. Running the helm install hnc ..... produces the following error
Error: INSTALLATION FAILED: parse error at (hnc/templates/hnc-resourcelist-apiextension.yaml-e:56): unexpected EOF
The upgrade-helm.sh script should have added additional code to the YAML files generated from default.yaml to ensure that all open brackets were properly closed, but this did not occur as expected.
Has anyone faced this issue during installation?
The text was updated successfully, but these errors were encountered:
Issues found when running make charts:
The file uses the manifests/default.yaml to generate the helm chart templates required for hns installation. The installation fails because resource names are the same and end up generating the same helm template file.
For example, the following will cause the creation of hnc-resourcelist.yaml for both resources, resulting in one overriding the other.
After the make chart command above. Running the
helm install hnc .....
produces the following errorError: INSTALLATION FAILED: parse error at (hnc/templates/hnc-resourcelist-apiextension.yaml-e:56): unexpected EOF
The upgrade-helm.sh script should have added additional code to the YAML files generated from default.yaml to ensure that all open brackets were properly closed, but this did not occur as expected.
Has anyone faced this issue during installation?
The text was updated successfully, but these errors were encountered: