Last active
August 7, 2019 00:31
-
-
Save swiftdiaries/fac23b08db43efa0f260f73d8837efb9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Download service account key | |
| gcloud iam service-accounts keys create ~/hybrid-kubeflow-pipeline-demo.json \ | |
| --iam-account [SA-NAME]@[PROJECT-ID].iam.gserviceaccount.com | |
| # Create a Kubernetes secret for the service account key | |
| kubectl create secret generic gke-kfp-sa \ | |
| --from-file=~/hybrid-kubeflow-pipeline-demo.json -n kubeflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment