Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add namespace for cmd #134

Merged
merged 2 commits into from
Nov 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tigergraph/k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ To download the data, service key json file must be located in ```k8s/``` . The
1. Log into the k8s cluster

```bash
kubectl exec -it tigergraph-0 -- bash
kubectl exec -it tigergraph-0 -n tigergraph -- bash
```

1. In the container, run the following command. (It is recommended to run scripts in the background because it usualy takes long time for large scale factors.)
Expand Down Expand Up @@ -151,9 +151,9 @@ To download the data, service key json file must be located in ```k8s/``` . The

```bash
# to delete the K8S pods and volumes
kubectl delete all -l app=tigergraph
kubectl delete pvc -l app=tigergraph
kubectl delete namespace -n default
kubectl delete all -l app=tigergraph -n tigergraph
kubectl delete pvc -l app=tigergraph -n tigergraph
kubectl delete namespace -n default -n tigergraph
# to delete EKS cluster
kubectl delete svc [service-name]
eksctl delete cluster --name [yourclustername]
Expand Down