Skip to content

Releases: sunsided/k8sfwd

0.3.0

22 Jul 12:02
f0e33cf
Compare
Choose a tag to compare

To install k8sfwd/0.3.0, run

cargo install k8sfwd --version 0.3.0

To install the latest version, run

cargo install k8sfwd

0.3.0

TL;DR: This release adds filtering support as well as hierarchical configuration merging.

Added

  • #4: Added support for configuration files in the user's home and config directories.
  • #5: Source files from the path hierarchy and special directories are now merged.
  • #7: Multiple config files can now be specified by repeating the --file argument.
  • #8: Added the --verbose command-line option for more detailed information on configuration sources.
  • #9: Added filter command-line arguments that allows to specify a prefix for the loaded targets. Only targets matching the prefix will be forwarded.

Changed

  • The path to the provided or detected source file(s) is now kept relative to the current working directory only if it is close. If the file is too many layers of nesting away, the canonical path is shown instead of a relative one.

0.2.0

17 Jul 20:35
8a4798b
Compare
Choose a tag to compare

To install k8sfwd/0.2.0, run

cargo install k8sfwd --version 0.2.0

0.2.0

TL;DR: This release adds --tags support and handles kubectl context and cluster selection a bit smarter.

Added

  • If only the context or the cluster is specified, the other part will be automatically looked up from the current configuration. If a single match is found, its value will be explicitly specified to kubectl. This should help when changing contexts while having a port-forwarding session open as intermittent errors will consistently produce the same forwarding rule regardless of the currently active context.
  • Added support for tags via the --tags <tag1> <tag2> ... command-line option. Only targets matching any one of the specified tags will be forwarded.

Fixed

  • Only default to current cluster when neither context nor cluster is specified. Previously, specifying only one of the values would result in the other value being automatically filled from the currently active context, resulting in possibly invalid combinations.

0.1.0

16 Jul 13:00
fb16315
Compare
Choose a tag to compare

To install k8sfwd/0.1.0, run

cargo install k8sfwd --version 0.1.0

Initial release

Internal

  • 🎉 Initial release with support for hierarchical .k8sfwd detection.