We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DO kubernetes config uses an ExecCredential. Any advice on how i could contribute here?
ExecCredential
users: - name: do-sfo2-async-do-admin user: exec: apiVersion: client.authentication.k8s.io/v1beta1 args: - kubernetes - cluster - kubeconfig - exec-credential - --version=v1beta1 - --context=default - {SOME GUID} command: doctl env: null
basically the result of the exec here is TLS client auth certs.
$ doctl kubernetes cluster kubeconfig exec-credential --version=v1beta1 --context=default {THE GUID FROM ABOVE} { "kind": "ExecCredential", "apiVersion": "client.authentication.k8s.io/v1beta1", "spec": {}, "status": { "expirationTimestamp": "2019-07-28T17:43:57Z", "clientCertificateData": "-----BEGIN CERTIFICATE-----\n*****\n-----END CERTIFICATE-----\n", "clientKeyData": "-----BEGIN RSA PRIVATE KEY-----\n*****\n-----END RSA PRIVATE KEY-----\n" } }
The text was updated successfully, but these errors were encountered:
note: am able to login using
username: system:serviceaccount:(NAMESPACE):(SERVICEACCOUNT) token: {SERVICEACCOUNT's service-account-token}
Sorry, something went wrong.
This relates to #32, as EKS requires support for the exec field from the user Kube config info.
exec
user
It should now be supported starting version 0.6.0. Thanks for your patience!
No branches or pull requests
DO kubernetes config uses an
ExecCredential
.Any advice on how i could contribute here?
kube config
exec
basically the result of the exec here is TLS client auth certs.
The text was updated successfully, but these errors were encountered: