File tree 2 files changed +595
-180
lines changed
2 files changed +595
-180
lines changed Original file line number Diff line number Diff line change @@ -84,19 +84,19 @@ jobs:
84
84
POST_FILES_ARRAY+=("$(find _posts -type f -name "*${POST_FILE}*.md")")
85
85
done
86
86
87
- if grep -q eksctl "${POST_FILES_ARRAY[@]}" && ! command -v eksctl &> /dev/null ; then
87
+ if grep -q ' eksctl ' "${POST_FILES_ARRAY[@]}" && ! command -v eksctl &> /dev/null ; then
88
88
echo "*** Installing eksctl"
89
- gh release download --repo weaveworks /eksctl --pattern eksctl_Linux_amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/
89
+ gh release download --repo eksctl-io /eksctl --pattern eksctl_Linux_amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/
90
90
eksctl version
91
91
fi
92
92
93
- if grep -q cilium "${POST_FILES_ARRAY[@]}" && ! command -v cilium &> /dev/null ; then
93
+ if grep -q ' cilium ' "${POST_FILES_ARRAY[@]}" && ! command -v cilium &> /dev/null ; then
94
94
echo "*** Installing cilium"
95
95
gh release download --repo cilium/cilium-cli --pattern cilium-linux-amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/
96
96
cilium version --client
97
97
fi
98
98
99
- if grep -q velero "${POST_FILES_ARRAY[@]}" && ! command -v velero &> /dev/null ; then
99
+ if grep -q ' velero ' "${POST_FILES_ARRAY[@]}" && ! command -v velero &> /dev/null ; then
100
100
echo "*** Installing velero"
101
101
gh release download --repo vmware-tanzu/velero --pattern "velero-*-linux-amd64.tar.gz" --output - | sudo tar xz -C /usr/local/bin/ --strip-components 1 --wildcards "*/velero"
102
102
velero version --client-only
You can’t perform that action at this time.
0 commit comments