pixel-point / kube-forwarder

Easy to use Kubernetes port forwarding manager
https://kube-forwarder.pixelpoint.io/
MIT License
1.08k stars 183 forks source link
devops electron k8s kubernetes linux macos port-forwarding vue windows

node version electron version vue version

Kube Forwarder

Easy to use Kubernetes port forwarding manager

Visit a Website · Download for macOS · Download for Windows · Download for Linux · Install with Homebrew

Clusters Page

Features

Auto-reconnect

Kube Forwarder watches for connection status and always tries reconnect on failure

Multiple clusters support

Bookmark and forward Kubernetes services from multiple clusters easily like never before

Share bookmarks

Use import and export functionality to share bookmarked services with your team or simply backup it

Zero native dependencies

Use port-forwarding without installing kubectl and avoid explanations to developers on how to use it

Optional dependencies

Functionality walk-through

Add a cluster(s)

Before you start forwarding internal resources to your local machine, you have to add cluster configuration. To do this we have 3 different options in the app:

1) Auto-detection of ~/.kube/config file and parsing settings from it 1) Manual adding of Kubernetes config by selecting a file(s) 1) Manual adding of Kubernetes config by pasting a text 1) Import of the JSON file that could be generated via Kube Forwarder export functionality

When you add a new cluster via auto-detection (option 1) or manually using a file(a) selection (option 2), we could parse configs and if there are multiple contexts inside we will suggest you to add multiple clusters to the app. Few examples of yaml files we expect to have you could find there

Also, you could add a cluster by filling a form manually (option 3). The form has the following fields:

Screenshot 2019-07-06 at 12 04 45

Add a resource

Kube Forwarder supports forwarding of all types of resources that supported by kubectl – Pod, Deployment, Service.

We ask you to fill the form with the following fields:

Cluster Name - pick a cluster from one of the added clusters.

Namespace - the namespace of the resource you plan to forward.

Kind – pick one of the options Pod, Deployment or Service.

Name - name of the Pod, Deployment or Service.

Alias - alternative name of the resource that will be displayed on the homepage(optional)

Port Forwarding

Use Custom Local Address - Check this and put an IP address or hostname into the text field to use a different listen address. Putting each service on its own address avoids sharing/collisions between services on cookies and port number. Specify a loopback address like 127.0.x.x or add entries to your hosts file like 127.0.1.1 dashboard.production.kbf and put the assigned name in this column. If blank or unchecked, localhost / 127.0.0.1 will be used.

Port Forwarding Form

Import/Export

Kube Forwarder allows you export cluster configuration in JSON that you could use to share with your team members or for the backup purpose. You could easily store it on Github. When you export cluster, you could export it with or without confidential information.

Screenshot 2019-07-06 at 12 12 20

Install with Homebrew

brew cask install kube-forwarder

Contributing

We encourage you to contribute to Kube Forwarder!

We expect contributors to abide by our underlying code of conduct. All conversations and discussions on GitHub (issues, pull requests) must be respectful and harassment-free.

This project was generated with electron-vue@8fae476 using vue-cli. Documentation about the original structure can be found here.

How to contribute

  1. Fork the project & clone locally. Follow the initial setup here.
  2. Create a branch, naming it either a feature or bug: git checkout -b feature/that-new-feature or bug/fixing-that-bug
  3. Code and commit your changes. Bonus points if you write a good commit message: git commit -m 'Add some feature'
  4. Push to the branch: git push origin feature/that-new-feature
  5. Create a pull request for your branch 🎉

Getting started

Prerequisites

Installing

Fork Kube Forwarder repository (https://github.com/pixel-point/kube-forwarder/fork)

# Clone source code
git clone https://github.com/<your-username>/kube-forwarder

# install dependencies
npm install

# prepare .env files
cp .env.example .env
cp .env.example .env.production

# serve with hot reload in Electron Dev app
npm run dev

# serve WEB version with hot reload at localhost:9081
npm run web

Build

Build an application for production

# Build a target for current OS
npm run build

# Build a target for Windows
npm run build -- -- --win

# Build a target for Linux
npm run build -- -- --linux

# You can mix targets
npm run build -- -- --win --linux

# You can build static and target separately
npm run build:dist
npm run build:target -- --win

A built version will be appear in build directory.

Running the tests

We are using Cypress to run integration tests. There are visual regression tests. It's important to run them inside docker container to get same screenshots as in Drone CI.

npm run test:cypress

Or you can run it manually on a local machine.

# Run the web version to test it
npm run web

# Run this command in a separate terminal tab
npm run test:cypress:onhost

# Or you can open Cypress GUI
npm run test:cypress:open

Troubleshooting

Q) Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 12.x A) npm rebuild node-sass

Q) Error: spawn .../kube-forwarder/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron ENOENT A) Reinstall node_modules: rm -rf node_modules && npm i

Release guide

Configure environment

Also, this steps could be used to configure CI environment.

1) Copy .env.example to .env.production and fill variables.

Release steps

1) Update the version in package.json and Push to release branch. 1) Run npm run release on a Mac computer to build packages. They will be automatically pushed to releases at Github. 1) Go to Releases in the repository. Make sure that the created draft is OK and release it (Edit -> Release). 1) Run cask-repair kube-forwarder to update the cask version. ([https://github.com/Homebrew/homebrew-cask/blob/master/CONTRIBUTING.md#updating-a-cask](About cask-repair))

Notes: 1) A release tag (for example: v1.0.3) will be added to GIT automatically by Github when you release your draft.

Development tips

Use tiffutil -cathidpicheck bg.png bg@2x.png -out bg.tiff to build a tiff background for .DMG

Supported by

License

This project is licensed under the MIT License - see the LICENSE.md file for details