File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
CHART_TESTING_IMAGE : quay.io/helmpack/chart-testing
27
27
CHART_TESTING_TAG : v2.1.0
28
28
CHARTS_REPO : https://github.com/your_git_repo/charts
29
- K8S_VERSION : " v1.11 .3"
29
+ K8S_VERSION : " v1.12 .3"
30
30
steps :
31
31
- checkout
32
32
- run :
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ readonly REPO_ROOT="${REPO_ROOT:-$(git rev-parse --show-toplevel)}"
8
8
9
9
run_kind () {
10
10
11
- echo " Get kind binary..."
12
- docker run --rm -it -v " $( pwd) " :/go/bin golang go get sigs.k8s.io/kind && chmod +x kind && sudo mv kind /usr/local/bin/
11
+ echo " Download kind binary..."
12
+ docker run --rm -it -v " $( pwd) " :/go/bin golang go get sigs.k8s.io/kind && sudo mv kind /usr/local/bin/
13
13
14
14
echo " Download kubectl..."
15
15
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/" ${K8S_VERSION} " /bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
@@ -73,7 +73,7 @@ main() {
73
73
# Copy kubeconfig file
74
74
docker exec " $config_container_id " mkdir /root/.kube
75
75
docker cp " $KUBECONFIG " " $config_container_id :/root/.kube/config"
76
- # Update in kubeconfig localhost to kind container IP
76
+ # Update in kubeconfig from localhost to kind container IP
77
77
docker exec " $config_container_id " sed -i " s/localhost/$kind_container_ip /g" /root/.kube/config
78
78
79
79
echo " Add git remote k8s ${CHARTS_REPO} "
You can’t perform that action at this time.
0 commit comments