Rafael Moraes

Results 1 comments of Rafael Moraes

As a temporary solution I am using `yq` to rename the user and merging kubeconfigs: ``` aws eks update-kubeconfig --name $CLUSTER_NAME --alias $ROLE_NAME --kubeconfig kubeconfig.tmp yq ".users[0].name=\"$ROLE_NAME\" | .contexts[0].context.user=\"$ROLE_NAME\"" <...