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

Fix UID/GID on Helm and Kustomize #28

Merged
merged 3 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions modules/openshift-tools/helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ arch=linux-amd64
curl -sLO "https://developers.redhat.com/content-gateway/file/pub/openshift-v4/clients/helm/${version}/helm-${arch}.tar.gz"
tar xzf ./helm-${arch}.tar.gz
mv ./helm-${arch} /usr/bin/helm
chown root:root /usr/bin/helm
helm version
echo "😎😎😎😎😎"
1 change: 1 addition & 0 deletions modules/openshift-tools/kustomize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ arch=linux_amd64
curl -sLO "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2F${version}/kustomize_${version}_${arch}.tar.gz"
tar xzf ./kustomize_${version}_${arch}.tar.gz
mv ./kustomize /usr/bin/
chown root:root /usr/bin/kustomize
kustomize version
echo "😎😎😎😎😎"
Loading