Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!61
The source project of this merge request has been removed.
Allow using a random scheduler
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Allow using a random scheduler
stu200776/spesb:87-random-scheduling
into
master
Overview
6
Commits
11
Pipelines
0
Changes
5
Merged
Simon Ehrenstein
requested to merge
stu200776/spesb:87-random-scheduling
into
master
4 years ago
Overview
6
Commits
11
Pipelines
0
Changes
5
Expand
Closes
#87 (closed)
Requires
#117 (closed)
Edited
4 years ago
by
Simon Ehrenstein
1
0
Merge request reports
Compare
master
version 7
41cff734
4 years ago
version 6
ab72f42f
4 years ago
version 5
57019b46
4 years ago
version 4
eb9cdd62
4 years ago
version 3
925c4a6b
4 years ago
version 2
2217a2f9
4 years ago
version 1
ce0153d0
4 years ago
master (base)
and
latest version
latest version
6042ce94
11 commits,
4 years ago
version 7
41cff734
10 commits,
4 years ago
version 6
ab72f42f
8 commits,
4 years ago
version 5
57019b46
7 commits,
4 years ago
version 4
eb9cdd62
6 commits,
4 years ago
version 3
925c4a6b
5 commits,
4 years ago
version 2
2217a2f9
4 commits,
4 years ago
version 1
ce0153d0
3 commits,
4 years ago
5 files
+
86
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
execution/infrastructure/random-scheduler/Dockerfile
0 → 100644
+
10
−
0
Options
FROM
alpine:3.12
RUN
apk update
&&
apk add bash curl jq
RUN
curl
-LO
https://storage.googleapis.com/kubernetes-release/release/
$(
curl
-s
https://storage.googleapis.com/kubernetes-release/release/stable.txt
)
/bin/linux/amd64/kubectl
\
&&
chmod
+x ./kubectl
\
&&
mv
./kubectl /usr/local/bin/kubectl
ADD
schedule.sh /bin/schedule
CMD
/bin/schedule
Loading