-
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.
Changes from astriaorg/astria@e594015
- Loading branch information
1 parent
387ebd3
commit f59cc4d
Showing
5 changed files
with
212 additions
and
11 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
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
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
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,22 @@ | ||
# commands to simplify Kubetail usage | ||
|
||
_default: | ||
@just --list kubetail | ||
|
||
# add the kubetail chart repository | ||
add-repo: | ||
helm repo add kubetail https://kubetail-org.github.io/helm-charts/ | ||
|
||
# install kubetail chart | ||
install: | ||
# ensure the kubetail chart repository is added | ||
just kubetail add-repo | ||
helm install kubetail kubetail/kubetail --namespace kubetail --create-namespace | ||
|
||
# uninstall kubetail chart | ||
uninstall: | ||
helm uninstall -n kubetail kubetail | ||
|
||
# port forward the kubetail service so we can connect on our local machine | ||
port-forward: | ||
kubectl port-forward -n kubetail svc/kubetail 4000:80 |
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