Last active
June 23, 2018 21:27
-
-
Save samirbehara-zz/a107124669a21e8ca3771c2105abc00d 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
from kubernetes import client, config | |
# Setup the client for E2E Tests | |
def k8s_client(): | |
# Configuration for accessing the K8s Cluster | |
config.load_kube_config("./config") | |
# Create and return an instance of the CoreV1Api class | |
return client.CoreV1Api() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment