-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
kind-0.10 create cluster | ||
|
||
# rbac and crds | ||
kubectl create namespace boskos | ||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/boskos/master/deployments/base/rbac.yaml | ||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/boskos/master/deployments/base/crd.yaml | ||
|
||
# service | ||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/boskos/master/deployments/base/service.yaml | ||
|
||
# deployment | ||
wget https://raw.githubusercontent.com/kubernetes-sigs/boskos/master/deployments/overlays/example/boskos-resources.yaml | ||
kubectl create configmap -n boskos boskos-resources --from-file=boskos-resources.yaml | ||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/boskos/master/deployments/base/deployment.yaml | ||
|
||
# test | ||
kubectl run curl --image=radial/busyboxplus:curl -i --tty | ||
curl -X POST 'http://boskos.boskos.svc.cluster.local/acquire?type=numeric-project&state=dirtys&dest=busy&owner=user' |