Hidetake Iwata
Hidetake Iwata
This will include all possible options to the token cache key. This will expand the original implementation #404 to all options.
## Describe the issue Currently `access_type=offline` parameter is set to get a refresh token but some providers do not support it. https://github.com/int128/kubelogin/blob/14e58ac4c2e4e8b57bc0eb3823388b4ada58917c/pkg/adaptors/oidcclient/oidcclient.go#L118 It would be better to use instead `offline_access`...
I would be grateful if some English experts would correct the typo or reword the documents. Feel free to open pull requests!
GitHub GraphQL API returns `errors` response on error cases such as not found, for example: ```json { "data": { "repository": null }, "errors": [ { "type": "NOT_FOUND", "path": [ "repository"...
I am planning to remove Gradle 1.x support on the next release. It allows using some APIs available on Gradle 2.4 such as collection methods and fixes tricky workarounds. Please...
Executing Groovy script on the remote host. ``` groovy task executeScript(type: SshTask) { session(remotes.server) { executeScript groovy: """ // here will be executed on the remote host println System.properties['user.name'] """...
Providing a feature for checking remote host state such as file existence or value of settings. This helps precondition test before deploying and smoke test after deploying. ``` groovy task...