Skip to content

kilna/kopsenv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kopsenv

Kops version manager inspired by tfenv.

I'm no longer using kops, so if you want to take over this project, email kilna@kilna.com

Support

Currently kopsenv supports the following OSes, on x86-64 bit archtecture only:

  • Mac OS X
  • Linux
  • Windows - only tested in git-bash

Installation

git

  1. Check out kopsenv into any path (here is ${HOME}/.kopsenv)
$ git clone https://github.com/kilna/kopsenv.git ~/.kopsenv
  1. Add ~/.kopsenv/bin to your $PATH any way you like
$ echo 'export PATH="$HOME/.kopsenv/bin:$PATH"' >> ~/.bash_profile

OR you can make symlinks for kopsenv/bin/* scripts into a path that is already added to your $PATH (e.g. /usr/local/bin) OSX/Linux Only!

$ ln -s ~/.kopsenv/bin/* /usr/local/bin

On Ubuntu/Debian touching /usr/local/bin might require sudo access, but you can create ${HOME}/bin or ${HOME}/.local/bin and on next login it will get added to the session $PATH or by running . ${HOME}/.profile it will get added to the current shell session's $PATH.

$ mkdir -p ~/.local/bin/
$ . ~/.profile
$ ln -s ~/.kopsenv/bin/* ~/.local/bin
$ which kopsenv

Usage

kopsenv install [version]

Install a specific version of Kops. Available options for version:

  • i.j.k exact version to install
  • latest is a syntax to install latest version
  • latest:<regex> is a syntax to install latest version matching regex (used by grep -e)
$ kopsenv install 1.10.0
$ kopsenv install latest
$ kopsenv install latest:^1.9
$ kopsenv install

.kops-version

If you use .kops-version, kopsenv install (no argument) will install the version written in it.

kopsenv use <version>

Switch a version to use

latest is a syntax to use the latest installed version

latest:<regex> is a syntax to use latest installed version matching regex (used by grep -e)

$ kopsenv use 1.10.0
$ kopsenv use latest
$ kopsenv use latest:^1.9

kopsenv uninstall <version>

Uninstall a specific version of Kops

latest is a syntax to uninstall latest version latest:<regex> is a syntax to uninstall latest version matching regex (used by grep -e)

$ kopsenv uninstall 1.10.0
$ kopsenv uninstall latest
$ kopsenv uninstall latest:^1.9

kopsenv list

List installed versions

% kopsenv list
* 1.10.0 (set by /opt/kopsenv/version)
  1.9.2
  1.9.1
  1.9.0
  1.8.1

kopsenv list-remote

List installable versions

$ kopsenv list-remote
1.10.0
1.9.2
1.9.1
1.9.0
1.8.1
1.8.0
1.7.1
1.7.0
...

.kops-version

If you put .kops-version file on your project root, or in your home directory, kopsenv detects it and use the version written in it. If the version is latest or latest:<regex>, the latest matching version currently installed will be selected.

$ cat .kops-version
1.9.2

$ kops version client
Version 1.9.2

$ echo 1.10.0 > .kops-version

$ kops version client
Version 1.10.0

$ echo latest:^1.8 > .kops-version

$ kops version client
Version 1.8.1

Upgrading

$ git --git-dir=~/.kopsenv/.git pull

Uninstalling

$ rm -rf /some/path/to/kopsenv

LICENSE

kopsenv - derived from: tfenv / rbenv

About

Kops version manager

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages