Skip to content
Snippets Groups Projects

Allow using a random scheduler

Merged Simon Ehrenstein requested to merge stu200776/spesb:87-random-scheduling into master
Files
5
 
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