-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.tools.versions.sh
executable file
·79 lines (75 loc) · 3.73 KB
/
install.tools.versions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
# Available versions: https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html
export TOOL_KUBECTL_VERSION=1.31.0
# Available versions: https://github.com/alcideio/rbac-tool/releases
export TOOL_KUBECTL_RBAC_TOOL_VERSION=1.19.0
# Available versions: https://github.com/chenjiandongx/kubectl-images/releases
export TOOL_KUBECTL_IMAGES_VERSION=0.6.3
# Available versions: https://github.com/corneliusweig/ketall/releases
export TOOL_KUBECTL_GETALL_VERSION=1.3.8
# Available versions: https://github.com/Azure/kubelogin/releases
export TOOL_KUBELOGIN_VERSION=0.0.27
# Available versions: https://github.com/helm/helm/releases
export TOOL_HELM_VERSION=3.10.0
# Available versions: https://github.com/codacy/helm-ssm/releases
export TOOL_HELM_SSM_VERSION=3.1.9
# Available versions: https://github.com/databus23/helm-diff/releases
export TOOL_HELM_DIFF_VERSION=3.9.9
# Available versions: https://github.com/dadav/helm-schema/releases
export TOOL_HELM_SCHEMA_VERSION=0.14.1
# Available versions: https://github.com/norwoodj/helm-docs/releases
export TOOL_HELM_DOCS_VERSION=1.14.2
# Available versions: https://github.com/helmfile/helmfile/releases
export TOOL_HELMFILE_VERSION=1.0.0-rc.4
# Available versions: https://github.com/weaveworks/eksctl/releases
export TOOL_EKSCTL_VERSION=0.113.0
# Available versions: https://github.com/mikefarah/yq/releases
export TOOL_YQ_VERSION=4.30.8
# export TOOL_YQ_VERSION=4.44.3 # Has issues with complicated patterns
# Available versions: https://github.com/microsoft/go-sqlcmd/releases
export TOOL_SQLCMD_VERSION=1.8.0
# Available versions: https://mirror.openshift.com/pub/openshift-v4/clients/ocp
export TOOL_OC_VERSION=4.10.45
# Available versions: https://github.com/yannh/kubeconform/releases
export TOOL_KUBECONFORM_VERSION=0.5.0
# Available versions: https://github.com/hashicorp/terraform/releases
export TOOL_TF_VERSION=1.9.6
# Available versions: https://github.com/terraform-linters/tflint/releases
export TOOL_TFLINT_VERSION=0.20.3
# Available versions: https://github.com/terraform-docs/terraform-docs/releases
export TOOL_TFDOCS_VERSION=0.16.0
# Available versions: https://github.com/gruntwork-io/terragrunt/releases
export TOOL_TERRAGRUNT_VERSION=0.35.6
# Available versions: https://github.com/wagoodman/dive/releases
export TOOL_DIVE_VERSION=0.10.0
# Available versions: https://archive.apache.org/dist/maven/maven-3
export TOOL_MAVEN_VERSION=3.8.4
# Available versions: https://archive.apache.org/dist/groovy
export TOOL_GROOVY_VERSION=2.5.20
# Available versions: https://nodejs.org/en/download/releases
export TOOL_NODE_VERSION=16.19.1_function
# Available versions: https://github.com/stern/stern/releases
export TOOL_STERN_VERSION=1.24.0
# Available versions: https://github.com/derailed/popeye/releases
export TOOL_POPEYE_VERSION=0.21.3
# Available versions: https://github.com/derailed/k9s/releases
export TOOL_K9S_VERSION=0.32.5
# Available versions: https://github.com/kubernetes-sigs/kind/releases
export TOOL_KIND_VERSION=0.24.0
# Available versions: https://github.com/runatlantis/atlantis/releases
export TOOL_ATLANTIS_VERSION=0.28.5
# Available versions: https://github.com/snyk/driftctl/releases
export TOOL_DRIFTCTL_VERSION=0.40.0
# Available versions: https://github.com/charmbracelet/gum/releases
export TOOL_GUM_VERSION=0.14.3
# Available versions: https://github.com/kubernetes/minikube/releases
export TOOL_MINIKUBE_VERSION=1.33.1
# Available versions: https://github.com/junegunn/fzf/releases
export TOOL_FZF_VERSION=0.54.3
# Available versions: https://releases.hashicorp.com/vault
export TOOL_VAULT_VERSION=1.17.3
# Available versions: https://github.com/homeport/dyff/releases
export TOOL_DYFF_VERSION=1.9.2
SCRIPT_PATH=$(dirname $(readlink -f "${BASH_SOURCE:-$0}"))
source ${SCRIPT_PATH}/install.utils.sh
check_utils