example k8s pipeline
This commit is contained in:
parent
82ba3bc778
commit
6fef7854ac
4 changed files with 113 additions and 0 deletions
9
python-jobs/justfile
Normal file
9
python-jobs/justfile
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
build:
|
||||
podman build . -t registry.wayl.one/dummypipe:alpine
|
||||
push:
|
||||
podman push registry.wayl.one/dummypipe:alpine
|
||||
create-ns:
|
||||
kubectl create ns jobrunner
|
||||
|
||||
regcred:
|
||||
kubectl get secret -n default regcred --output=yaml -o yaml | sed 's/namespace: default/namespace: jobrunner/' | kubectl apply -n jobrunner -f - && echo deployed secret || echo secret exists
|
||||
Loading…
Add table
Add a link
Reference in a new issue