Jonny Rimek
Jonny Rimek
i was able to lint multiple directories by simply adding all the directories `golint -set_exit_status cmd/... internal/... ui/...` important note, is to add /... so that all subdirectories are linted...
I'm using the following cmd ```bash watcher -cmd="./build.sh" -pipe=true $(find $directory -type f -name "*.go" -not -path "./cdk.out/*" | tr '\n' ' ') ``` It will watch all go files...
shoutout to @detvdl for the solution. wanna share my version using gh cli, which is a bit easier to use than calling the API directly ```yaml export GH_TOKEN=$(printf "protocol=https\nhost=github.com\n" |...
@ego93 we tried implementing the fix you mentioned, but it turns out that `listenerTemplate.spec.serviceAccountName` is also not passed through. Using that we still created the default ServiceAccount, that we could...