-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathe2e_local.sh
executable file
·44 lines (36 loc) · 1.8 KB
/
e2e_local.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
#!/bin/bash
set -eo pipefail
focus_key=$1
build=$2
if [[ -z "${build:-}" ]]; then
build="true"
fi
public_key=$(grep "ATLAS_PUBLIC_KEY" .actrc | cut -d "=" -f 2)
private_key=$(grep "ATLAS_PRIVATE_KEY" .actrc | cut -d "=" -f 2)
org_id=$(grep "ATLAS_ORG_ID" .actrc | cut -d "=" -f 2)
# this is the format how it's pushed by act -j build-push
branch="$(git rev-parse --abbrev-ref HEAD | awk '{sub(/\//, "-"); print}')"
commit=$(git rev-parse --short HEAD)
image=$(grep "DOCKER_REGISTRY" .env | cut -d "=" -f 2)/$(grep "DOCKER_REPO" .env | cut -d "=" -f 2):${branch}-${commit}
echo "Using docker image: ${image}"
bundle_image=$(grep "DOCKER_REGISTRY" .env | cut -d "=" -f 2)/$(grep "DOCKER_BUNDLES_REPO" .env | cut -d "=" -f 2):${branch}-${commit} #Registry is nessary
export BUNDLE_IMAGE="${bundle_image}"
export INPUT_IMAGE_URL="${image}"
export INPUT_ENV=dev
if [[ "${build}" == "true" ]]; then
./.github/actions/gen-install-scripts/entrypoint.sh
awk '{gsub(/cloud.mongodb.com/, "cloud-qa.mongodb.com", $0); print}' bundle/manifests/mongodb-atlas-kubernetes.clusterserviceversion.yaml > yaml.tmp && mv yaml.tmp bundle/manifests/mongodb-atlas-kubernetes.clusterserviceversion.yaml
make all-platforms
docker build -f fast.Dockerfile -t "${image}" .
docker push "${image}"
#bundles
docker build -f bundle.Dockerfile -t "${bundle_image}" .
docker push "${bundle_image}"
fi
kubectl apply -f deploy/crds
export MCLI_OPS_MANAGER_URL="${MCLI_OPS_MANAGER_URL:-https://cloud-qa.mongodb.com/}"
export MCLI_PUBLIC_API_KEY="${MCLI_PUBLIC_API_KEY:-$public_key}"
export MCLI_PRIVATE_API_KEY="${MCLI_PRIVATE_API_KEY:-$private_key}"
export MCLI_ORG_ID="${MCLI_ORG_ID:-$org_id}"
export IMAGE_URL="${image}" #for helm chart
AKO_KIND_TEST=1 ginkgo --race --label-filter="${focus_key}" --timeout 120m -vv test/kind/inprocess/