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
Admin message
Currently supported Big Bang Version is 2.50
Show more breadcrumbs
Big Bang
bigbang
Merge requests
!134
BB-1084 - Clean up small errors / concerns in CI code
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
BB-1084 - Clean up small errors / concerns in CI code
BB-1084
into
master
Overview
1
Commits
18
Pipelines
24
Changes
8
Merged
Zachariah Dzielinski
requested to merge
BB-1084
into
master
4 years ago
Overview
1
Commits
18
Pipelines
24
Changes
8
Expand
0
0
Merge request reports
Compare
master
version 10
0e4b0d57
4 years ago
version 9
71c2f7b7
4 years ago
version 8
3f27f134
4 years ago
version 7
8cb64a92
4 years ago
version 6
1735f459
4 years ago
version 5
1c83c90e
4 years ago
version 4
2f1a8fe3
4 years ago
version 3
91be795f
4 years ago
version 2
3b61cc6f
4 years ago
version 1
57636f16
4 years ago
master (base)
and
version 7
latest version
46073c5d
18 commits,
4 years ago
version 10
0e4b0d57
17 commits,
4 years ago
version 9
71c2f7b7
8 commits,
4 years ago
version 8
3f27f134
8 commits,
4 years ago
version 7
8cb64a92
7 commits,
4 years ago
version 6
1735f459
6 commits,
4 years ago
version 5
1c83c90e
5 commits,
4 years ago
version 4
2f1a8fe3
4 commits,
4 years ago
version 3
91be795f
3 commits,
4 years ago
version 2
3b61cc6f
2 commits,
4 years ago
version 1
57636f16
1 commit,
4 years ago
8 files
+
10
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci/jobs/k3d/.gitlab-ci.yml
+
2
−
2
Options
.k3d_before_script
:
&k3d_before_script
# Starting dnsmasq for cluster dns resolution
-
docker run -d -p 53:53/udp -p 53:53 registry.dsop.io/platform-one/big-bang/pipeline-templates/pipeline-templates/go-dnsmasq:0eddd476
-
echo "nameserver 127.0.0.1" >> /etc/resolv.conf
#
- docker run -d -p 53:53/udp -p 53:53 registry.dsop.io/platform-one/big-bang/pipeline-templates/pipeline-templates/go-dnsmasq:0eddd476
#
- echo "nameserver 127.0.0.1" >> /etc/resolv.conf
# Standup cluster
-
k3d cluster create ${CLUSTER_NAME} --k3s-server-arg "--disable=traefik" --k3s-server-arg "--disable=metrics-server" -p 80:80@loadbalancer -p 443:443@loadbalancer --wait --agents $N_AGENTS --servers $N_SERVERS
-
while ! (kubectl get node | grep "server" > /dev/null); do sleep 3; done
Loading