vmware-archive / kubecfg

A tool for managing complex enterprise Kubernetes environments as code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

embedded kubecfg.libsonnet is out of date

anguslees opened this issue · comments

kubecfg master is broken, thanks to #212 :(
The fix is easy: just run go generate

This bug is to track also adding a test so this doesn't happen again :/

I usually just run something like this as a CI step:

go generate ./...
if ! git diff --exit-code --name-only; then
  echo "please run make sure you ran 'go generate' and check in changes to generated files"
  exit 1
fi