Compare commits

...

5 Commits

Author SHA1 Message Date
Dima Golomozy 0c24131047
Merge 91e0a94e89 into 6e9cda3d30 2025-01-20 10:04:48 +01:00
dependabot[bot] 6e9cda3d30
chore(deps): bump semver in /.github/workflows/dependencies (#12924)
Bumps [semver](https://github.com/python-semver/python-semver) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/python-semver/python-semver/releases)
- [Changelog](https://github.com/python-semver/python-semver/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/python-semver/python-semver/compare/3.0.2...3.0.3)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-19 23:30:40 +01:00
Dima Golomozy 91e0a94e89
typo 2024-11-19 20:03:32 +02:00
Dima Golomozy 15944c0788
Update README.md 2024-09-23 11:43:10 +03:00
Dima Golomozy c32b5e5e98
add general aliases 2024-09-23 11:32:32 +03:00
3 changed files with 7 additions and 1 deletions

View File

@ -3,5 +3,5 @@ charset-normalizer==3.4.1
idna==3.10
PyYAML==6.0.2
requests==2.32.3
semver==3.0.2
semver==3.0.3
urllib3==2.3.0

View File

@ -26,6 +26,9 @@ plugins=(... kubectl)
| | | **General aliases** |
| kdel | `kubectl delete` | Delete resources by filenames, stdin, resources and names, or by resources and label selector |
| kdelf | `kubectl delete -f` | Delete a pod using the type and name specified in -f argument |
| kg | `kubectl get` | Display one or many resources |
| ke | `kubectl edit` | Edit a resource on the server |
| kd | `kubectl describe` | Show details of a specific resource or group of resources |
| | | **Pod management** |
| kgp | `kubectl get pods` | List all pods in ps output format |
| kgpl | `kgp -l` | Get pods by label. Example: `kgpl "app=myapp" -n myns` |

View File

@ -36,6 +36,9 @@ alias kcgc='kubectl config get-contexts'
# General aliases
alias kdel='kubectl delete'
alias kdelf='kubectl delete -f'
alias kg='kubectl get'
alias ke='kubectl edit'
alias kd='kubectl describe'
# Pod management.
alias kgp='kubectl get pods'