Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin helmdocs to 1.12.0 #4995

Merged
merged 2 commits into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions script/generate_helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,13 @@ helm template flyte -n flyte ${DIR}/../charts/flyte-binary/ ${HELM_CAPABILITIES}
# Generate manifest flyte agent
helm template flyte -n flyte ${DIR}/../charts/flyteagent/ ${HELM_CAPABILITIES} --debug >${DIR}/../deployment/agent/flyte_agent_helm_generated.yaml


echo "Generating helm docs"
if command -v helm-docs &> /dev/null
then
if command -v helm-docs &>/dev/null; then
rm $(which helm-docs)
fi

GO111MODULE=on go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest
# TODO: (https://github.com/flyteorg/flyte/issues/4994) Unpin when moving past go 1.21
GO111MODULE=on go install github.com/norwoodj/helm-docs/cmd/[email protected]

${GOPATH:-~/go}/bin/helm-docs -c ${DIR}/../charts/

Expand Down
Loading