Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
k8s-utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
k8s-utils
Commits
4df6c0e1
Verified
Commit
4df6c0e1
authored
9 months ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Add usage and shorthand commands
parent
62b6ef76
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
README.md
+49
-0
49 additions, 0 deletions
README.md
with
50 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
4df6c0e1
__pycache__/
.venv/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
+
49
−
0
View file @
4df6c0e1
...
...
@@ -19,3 +19,52 @@ Endpoint: https://s3.example.com/
KeyId: abc
SecretKey: 123supersecret
```
### softdrain
Drain a Kubernetes node by first scaling each deployment to n+1 to avoid downtime for single-pod deployments.
```
% softdrain mynode
Soft move app-namespace / backend? [y/n/c]
```
### dupvc
Run
`du -s`
in all PVCs in the cluster.
```
% dupvc -h
badm web-static 42M /app/webcontent
```
## Shorthand commands
```
alias docker-nimbus='export DOCKER_HOST=ssh://nimbus'
alias kubectl-ns='kubectl config set-context --current --namespace'
alias kubectl-default='kubectl-ns default'
alias kubectl-stratus='kubectl config use-context admin@stratus && kubectl-default'
alias kubectl-nimbus='kubectl config use-context admin@nimbus && kubectl-default'
alias k='kubectl'
alias kd='kubectl describe'
alias ke='kubectl edit'
alias kg='kubectl get'
alias wkg='watch kubectl get'
alias wkt='watch kubectl top'
alias k-='kubectl delete'
alias ky='kubectl get -o yaml'
alias kl='kubectl logs -f'
alias kx='kubectl exec -it'
alias ka='kubectl apply -f'
alias kn='kubectl-ns'
alias kp='kubectl port-forward'
alias ceph='kubectl rook-ceph ceph'
alias s3='aws s3 --endpoint-url=$AWS_ENDPOINT_URL '
alias s3api='aws s3api --endpoint-url=$AWS_ENDPOINT_URL '
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment