Skip to content

Latest commit

 

History

History
63 lines (46 loc) · 2.05 KB

README.md

File metadata and controls

63 lines (46 loc) · 2.05 KB

+++ [runme] id = '01HS7BA9N3NY3M9P9GK50V2FT6' version = 'v3' +++

Hi 👋 Rejekts

This is an example powered by Runme.

If you would like to find out more about Project Owl 🦉, she is kind of nocturnal and lives right here.

import time, sys
def escape_confluence():
    sys.stdout.write("Escape Confluence with… ")
    for i in range(3):
        sys.stdout.write("🥁"); sys.stdout.flush()
        time.sleep(1)
    print("\n\nMarkdown docs! Colocated with code 🎉")
escape_confluence()

Running through the Demo

Once the steps below are complete, you can move onto the first step.

Installing Prerequisites

For this example, we will use the Google Cloud Kubernetes Engine (GKE).

If you are on Mac, you can install the required tools using brew.

brew install google-cloud-sdk grpcurl

Once you have the Google Cloud command line tool installed, use it to install gke-gcloud-auth-plugin, a Kubectl plugin that manages authentication between the client and GKE.

gcloud components install gke-gcloud-auth-plugin

Once the credential plugin is installed, you can authorize gcloud to access the Cloud Platform with your Google user credentials, triggering a web-based authorization flow.

gcloud auth login
gcloud auth application-default login

If you are running this demo locally, please proceed to the first step.