Skip to content
Snippets Groups Projects
Commit 2da7a571 authored by Leah Tacke genannt Unterberg's avatar Leah Tacke genannt Unterberg
Browse files

inluded new justfile command runner

parent e2d27fbe
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,8 @@ spec:
volumeMounts:
- mountPath: /exports
name: exports
- mountPath: /uploads
name: uploads
resources:
limits:
memory: "2Gi"
......
justfile 0 → 100644
set shell := ["pwsh", "-c"]
apply a:
kubectl --context c4c -n mdata apply -f {{a}}
apply-all:
kubectl --context c4c -n mdata apply -f services.yaml config-maps.yaml backend-deployment.yaml frontend-deployment.yaml
rollout-fronted:
kubectl --context c4c -n mdata rollout restart deployment maed-exporter-frontend
rollout-backend:
kubectl --context c4c -n mdata rollout restart deployment maed-exporter-backend
rollout: rollout-backend rollout-fronted
[no-exit-message]
do *args:
kubectl --context c4c -n mdata -l app.kubernetes.io/name=maed-exporter-app {{args}}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment