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
| # token.pickle stores the user's credentials from previously successful logins | |
| if os.path.exists('token.pickle'): | |
| print('Loading Credentials From File...') | |
| with open('token.pickle', 'rb') as token: | |
| credentials = pickle.load(token) | |
| # Google's Request | |
| from google.auth.transport.requests import Request |
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
| Task 1: Create a project jumphost instance | |
| Navigation menu > Compute engine > VM Instance | |
| Task 2: Create a Kubernetes service cluster | |
| gcloud config set compute/zone us-east1-b | |
| gcloud container clusters create nucleus-webserver1 |