forked from jfrog/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e-docker4mac.sh
executable file
·76 lines (61 loc) · 2.22 KB
/
e2e-docker4mac.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
#!/usr/bin/env bash
# Copyright 2018 The Helm Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit
set -o nounset
set -o pipefail
readonly IMAGE_TAG=${CHART_TESTING_TAG}
readonly IMAGE_REPOSITORY="releases-docker.jfrog.io/charts-ci"
readonly REPO_ROOT="${REPO_ROOT:-$(git rev-parse --show-toplevel)}"
# shellcheck source=test/common.sh
source "${REPO_ROOT}/test/common.sh"
run_ct_container() {
echo 'Running ct container...'
docker container run --rm --interactive --detach --name ct \
--volume "$(pwd):/workdir" \
--workdir /workdir \
"$IMAGE_REPOSITORY:$IMAGE_TAG"
echo
}
lookup_apiserver_container_id() {
docker container list --filter name=k8s_kube-apiserver --format '{{ .ID }}'
}
get_apiserver_arg() {
local container_id="$1"
local arg="$2"
docker container inspect "$container_id" | jq -r ".[].Args[] | capture(\"$arg=(?<arg>.*)\") | .arg"
}
connect_to_cluster() {
local apiserver_id
apiserver_id=$(lookup_apiserver_container_id)
if [[ -z "$apiserver_id" ]]; then
echo "ERROR: API-Server container not found. Make sure 'Show system containers' is enabled in Docker4Mac 'Preferences'!" >&2
exit 1
fi
local ip
ip=$(get_apiserver_arg "$apiserver_id" --advertise-address)
local port
port=$(get_apiserver_arg "$apiserver_id" --secure-port)
docker cp "$HOME/.kube" ct:/root/.kube
docker_exec kubectl config set-cluster docker-desktop "--server=https://$ip:$port"
docker_exec kubectl config set-cluster docker-desktop --insecure-skip-tls-verify=true
docker_exec kubectl config use-context docker-desktop
}
main() {
run_ct_container
trap cleanup EXIT
connect_to_cluster
install_charts
}
main