|
25 | 25 | - my-favourite-krew-plugins-kubectl cheapest-amazon-eks
|
26 | 26 | - cilium-amazon-eks
|
27 | 27 | - secure-cheap-amazon-eks
|
28 |
| - - velero-and-cert-manager secure-cheap-amazon-eks-with-pod-identities |
| 28 | + # - velero-and-cert-manager secure-cheap-amazon-eks-with-pod-identities |
| 29 | + - secure-cheap-amazon-eks-with-pod-identities |
29 | 30 | action:
|
30 | 31 | type: choice
|
31 | 32 | description: Select action
|
@@ -84,19 +85,19 @@ jobs:
|
84 | 85 | POST_FILES_ARRAY+=("$(find _posts -type f -name "*${POST_FILE}*.md")")
|
85 | 86 | done
|
86 | 87 |
|
87 |
| - if grep -q eksctl "${POST_FILES_ARRAY[@]}" && ! command -v eksctl &> /dev/null ; then |
| 88 | + if grep -q 'eksctl ' "${POST_FILES_ARRAY[@]}" && ! command -v eksctl &> /dev/null ; then |
88 | 89 | echo "*** Installing eksctl"
|
89 |
| - gh release download --repo weaveworks/eksctl --pattern eksctl_Linux_amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/ |
| 90 | + gh release download --repo eksctl-io/eksctl --pattern eksctl_Linux_amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/ |
90 | 91 | eksctl version
|
91 | 92 | fi
|
92 | 93 |
|
93 |
| - if grep -q cilium "${POST_FILES_ARRAY[@]}" && ! command -v cilium &> /dev/null ; then |
| 94 | + if grep -q 'cilium ' "${POST_FILES_ARRAY[@]}" && ! command -v cilium &> /dev/null ; then |
94 | 95 | echo "*** Installing cilium"
|
95 | 96 | gh release download --repo cilium/cilium-cli --pattern cilium-linux-amd64.tar.gz --output - | sudo tar xz -C /usr/local/bin/
|
96 | 97 | cilium version --client
|
97 | 98 | fi
|
98 | 99 |
|
99 |
| - if grep -q velero "${POST_FILES_ARRAY[@]}" && ! command -v velero &> /dev/null ; then |
| 100 | + if grep -q 'velero ' "${POST_FILES_ARRAY[@]}" && ! command -v velero &> /dev/null ; then |
100 | 101 | echo "*** Installing velero"
|
101 | 102 | 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 | 103 | velero version --client-only
|
|
0 commit comments