https://github.com/eduardobarbosa-zz/kbf
Kubernetes yml port-forward
https://github.com/eduardobarbosa-zz/kbf
brew golang kubernetes port-forward yml
Last synced: 8 months ago
JSON representation
Kubernetes yml port-forward
- Host: GitHub
- URL: https://github.com/eduardobarbosa-zz/kbf
- Owner: eduardobarbosa-zz
- License: gpl-3.0
- Created: 2020-05-03T02:39:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-04T20:10:18.000Z (over 5 years ago)
- Last Synced: 2025-03-28T07:11:25.320Z (8 months ago)
- Topics: brew, golang, kubernetes, port-forward, yml
- Language: Go
- Homepage:
- Size: 14.8 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KBF
Kubernetes yml port-forward
# Use
Usage:
kbf port-forward [flags]
Flags:
-f, --file string forward file path (default $PWD/forward.yml)
-h, --help help for port-forward
## Forward file structure
```yaml
services:
- name: service-01
namespace: default
port: 8080
targetPort: 880
- name: service-02
namespace: default
port: 8081
targetPort: 8080
```
# Build
```bash
git clone https://github.com/eduardobarbosa/kbf.git
cd kbf
go build
./kbf --help
```
# Install using Homebrew
```bash
brew tap eduardobarbosa/core
brew install eduardobarbosa/core/kbf
```