Ben Sherman

Results 297 comments of Ben Sherman

I used `.metaClass.static.` to mock static methods. Looks like it works for Java classes as well, so it could eliminate the need to create little helper methods like `ConfigDiscovery.path()` just...

I thought it was cleaner to separate the config discovery from the auth token discovery, rather than pass the namespace and service account down the call stack to `discoverAuthToken()`. That...

`ConfigDiscovery.fromConfig` loads the namespace and user from the current context, but `K8sConfig.getClient` applies the namespace and serviceAccount from the nextflow config if they are provided. Basically, the nextflow `k8s` config...

Here is my understanding of things: 1. load user, cluster, and namespace from current context 2. load certs and auth token from current user (if present) 3. use namespace from...

Okay it's ready. The only caveat now is that if a user+token is defined in the KUBECONFIG, it will override `k8s.serviceAccount` for the purposes of API requests. But I think...

I believe Tower by default launches from the root directory, then moves the log files into the work directory. So launching from the work directory would be much better also...

It looks like `gsts console` also opens a browser window. I just want it to print a URL, then I open to that URL myself, authenticate, and `gsts` captures that...

Good thing to add to the docs under a section on troubleshooting or gotchas.

Been thinking about this issue. Fundamentally the mutable object needs to be cloned, the question is whether Nextflow should do it automatically or the user should do it when they...

@Midnighter I think the `+` syntax will work great for most people, but it's yet another example of how I think the Nextflow docs just need to have more comprehensive...