Outreach Kubernetes Developer Environment
System Requirements |
Lifecycle |
Interacting with Services |
Getting Started
- Download the latest release for your platform and install the
devenv
binary to /usr/local/bin/
:
tar xvf devenv_**_**.tar.gz
mv devenv /usr/local/bin/
# Linux/WSL2 optional: allow your user to update the devenv
sudo chown $(id -u):$(id -g) $(command -v devenv)
- (macOS only) Ensure the
devenv
binary is authorized to run.
xattr -c $(type -P devenv)
- Follow the instructions for your platform in the detailed system requirements docs
Defining a Box
Creating the Developer Environment
To create a developer environment, run:
devenv provision --base
Next there's a manual step that you'll need to do. You'll need to add a KUBECONFIG
environment variable, this can be done by adding the line below to your shellrc (generally ~/.zshrc
or ~/.zsh_profile
or ~/.bashrc
):
# Add the dev-environment to our kube config
export KUBECONFIG="$HOME/.kube/config:$HOME/.outreach/kubeconfig.yaml"
You now have a developer environment provisioned!