You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(channels): Kubernetes channels for deployments, pods and services (#688)
## 📺 PR Description
Re-opened PR from #677
Added Channels for Kubernetes deployments, pods and services
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
List and preview Deployments in a Kubernetes Cluster.
411
+
412
+
The first source lists only from the current namespace, while the second lists from all.
413
+
414
+
Keybindings
415
+
416
+
Press `ctrl-d` to delete the selected Deployment.
417
+
418
+
419
+

420
+
**Requirements:**`kubectl`
421
+
422
+
**Code:***k8s-deployments.toml*
423
+
424
+
```toml
425
+
[metadata]
426
+
name = "k8s-deployments"
427
+
description = "List and preview Deployments in a Kubernetes Cluster.\n\nThe first source lists only from the current namespace, while the second lists from all.\n\nKeybindings\n\nPress `ctrl-d` to delete the selected Deployment.\n"
The first source lists only from the current namespace, while the second lists from all.
458
+
459
+
Keybindings
460
+
461
+
Press `ctrl-e` to execute shell inside the selected Pod.
462
+
Press `ctrl-d` to delete the selected Pod.
463
+
Press `ctrl-l` to print and follow the logs of the selected Pod.
464
+
465
+
466
+

467
+
**Requirements:**`kubectl`
468
+
469
+
**Code:***k8s-pods.toml*
470
+
471
+
```toml
472
+
[metadata]
473
+
name = "k8s-pods"
474
+
description = "List and preview Pods in a Kubernetes Cluster.\n\nThe first source lists only from the current namespace, while the second lists from all.\n\nKeybindings\n\nPress `ctrl-e` to execute shell inside the selected Pod.\nPress `ctrl-d` to delete the selected Pod.\nPress `ctrl-l` to print and follow the logs of the selected Pod.\n"
List and preview Services in a Kubernetes Cluster.
515
+
516
+
The first source lists only from the current namespace, while the second lists from all.
517
+
518
+
keybindings
519
+
520
+
Press `ctrl-d` to delete the selected Service.
521
+
522
+
523
+

524
+
**Requirements:**`kubectl`
525
+
526
+
**Code:***k8s-services.toml*
527
+
528
+
```toml
529
+
[metadata]
530
+
name = "k8s-services"
531
+
description = "List and preview Services in a Kubernetes Cluster.\n\nThe first source lists only from the current namespace, while the second lists from all.\n\nkeybindings\n\nPress `ctrl-d` to delete the selected Service.\n"
0 commit comments