UNCLASSIFIED - NO CUI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bigbang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Big Bang
bigbang
Merge requests
!891
CI Log Collapsing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI Log Collapsing
ci-log-collapse-652
into
master
Overview
0
Commits
18
Pipelines
24
Changes
5
Merged
evan.rush
requested to merge
ci-log-collapse-652
into
master
3 years ago
Overview
0
Commits
18
Pipelines
24
Changes
5
Expand
Summary
Closes
#652 (closed)
/cc
@michaelmcleroy
Edited
3 years ago
by
evan.rush
0
0
Merge request reports
Compare
master
version 17
4cea0e88
3 years ago
version 16
ee4f2d4c
3 years ago
version 15
96872cac
3 years ago
version 14
b4737de2
3 years ago
version 13
d402f910
3 years ago
version 12
1e2b943f
3 years ago
version 11
c4c3a491
3 years ago
version 10
fc837814
3 years ago
version 9
56499f33
3 years ago
version 8
1ea852ad
3 years ago
version 7
6f3e8132
3 years ago
version 6
d1176c89
3 years ago
version 5
38ed08e9
3 years ago
version 4
82ac95bc
3 years ago
version 3
57288bfe
3 years ago
version 2
efe03627
3 years ago
version 1
9703b9b7
3 years ago
master (base)
and
latest version
latest version
5c743f13
18 commits,
3 years ago
version 17
4cea0e88
17 commits,
3 years ago
version 16
ee4f2d4c
16 commits,
3 years ago
version 15
96872cac
15 commits,
3 years ago
version 14
b4737de2
14 commits,
3 years ago
version 13
d402f910
13 commits,
3 years ago
version 12
1e2b943f
12 commits,
3 years ago
version 11
c4c3a491
11 commits,
3 years ago
version 10
fc837814
10 commits,
3 years ago
version 9
56499f33
9 commits,
3 years ago
version 8
1ea852ad
8 commits,
3 years ago
version 7
6f3e8132
7 commits,
3 years ago
version 6
d1176c89
6 commits,
3 years ago
version 5
38ed08e9
5 commits,
3 years ago
version 4
82ac95bc
4 commits,
3 years ago
version 3
57288bfe
3 commits,
3 years ago
version 2
efe03627
2 commits,
3 years ago
version 1
9703b9b7
1 commit,
3 years ago
5 files
+
41
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci/jobs/ci-cluster/.gitlab-ci.yml
+
4
−
0
Options
@@ -27,14 +27,18 @@
DOCKER_CERT_PATH
:
"
$DOCKER_TLS_CERTDIR/client"
DOCKER_DRIVER
:
overlay2
before_script
:
-
echo -e "\e[0Ksection_start:`date +%s`:k3d_up[collapsed=true]\r\e[0K\e[33;1mK3D Cluster Create\e[37m"
# Give docker-in-docker time to come alive
-
i=0; while [ "$i" -lt 12 ]; do docker info &>/dev/null && break; sleep 5; i=$(( i + 1 )) ; done
-
docker network create ${CI_JOB_ID} --driver=bridge -o "com.docker.network.driver.mtu"="1450"
-
k3d cluster create ${CI_JOB_ID} --config tests/ci/k3d/config.yaml --network ${CI_JOB_ID}
-
until kubectl get deployment coredns -n kube-system -o go-template='{{.status.availableReplicas}}' | grep -v -e '<no value>'; do sleep 1s; done
-
kubectl get all -A
-
echo -e "\e[0Ksection_end:`date +%s`:k3d_up\r\e[0K"
after_script
:
-
echo -e "\e[0Ksection_start:`date +%s`:k3d_down[collapsed=true]\r\e[0K\e[33;1mK3D Cluster Delete\e[37m"
-
kubectl get all -A
-
kubectl get gitrepository,helmrelease,kustomizations -A
-
k3d cluster delete ${CI_JOB_ID}
-
docker network rm ${CI_JOB_ID}
-
echo -e "\e[0Ksection_end:`date +%s`:k3d_down\r\e[0K"
\ No newline at end of file
Loading