Skip to content

Commit

Permalink
Update files
Browse files Browse the repository at this point in the history
  • Loading branch information
raminqaf committed Dec 13, 2024
1 parent ca50f98 commit 6380dd3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
set shell := ["bash", "-uc"]

_default:
@just --list --unsorted

apply:
kubectl apply -f parent-app.yaml -n argocd

delete:
kubectl delete -f parent-app.yaml -n argocd


pf port="8888":
nohup kubectl port-forward --namespace infrastructure service/redpanda-console 8888:8080 > port-forward.out &
nohup kubectl port-forward --namespace argocd service/argocd-server 8080:443 > port-forward.out &

deploy:
kpops deploy ./word-count --operation-mode argo > ./word-count/argo/wc-pipeline/manifests.yaml

destroy:
kpops destroy ./word-count --operation-mode argo > ./word-count/argo/wc-pipeline/manifests.yaml

kill-pf:
ps aux | grep -i kubectl | grep -v grep | awk {'print $2'} | xargs kill
17 changes: 17 additions & 0 deletions port-forward.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Forwarding from 127.0.0.1:8080 -> 8080
Forwarding from [::1]:8080 -> 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080
Handling connection for 8080

0 comments on commit 6380dd3

Please sign in to comment.