An open API service indexing awesome lists of open source software.

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

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
```