Exemplo n.º 1
0
def secret_from_env(env_var: str, namespace: str) -> bool:
    """
    Create a Kubernetes secret in the provided ``namespace`` using an environment 
    variable given by ``env_var``.

    Args:
        env_var: The name of the environment variable to save as a secret
        namespace: The Kubernetes namespace to save the secret in

    Returns:
        Returns True if everything worked as expected
    """
    token_value = os.environ[env_var]
    secret_name = env_var.lower().replace("_", "-")
    secret_file = secret_name + ".token"
    with open(secret_file, "w") as f:
        f.write(token_value)

    sh(f"kubectl delete secret {secret_name} -n {namespace}",
       ignore_error=True)
    sh(f"kubectl create secret generic {secret_name} -n {namespace} --from-file={secret_file}"
       )
    os.remove(secret_file)

    return True
Exemplo n.º 2
0
def connect(cluster_name: str, zone: str, project: str):
    """
    Using gcloud, set up the environment to connect to the specified cluster, given
    by ``cluster_name`` in the ``zone`` and ``project``.

    Args:
        cluster_name (str): The name of the cluster
        zone (str): The zone the cluster was created in (e.g. 'australia-southeast1-a')
        project (str): The google cloud project you wish to connect to

    Returns:
        Returns True if everything worked as expected
    """
    sh(f"gcloud container clusters get-credentials {cluster_name} --zone {zone} --project {project}")
Exemplo n.º 3
0
def secret_to_file(secret_name: str, namespace: str, path: str) -> bool:
    """
    Find the secret named ``secret_name`` in the namespace ``namespace`` and
    save it to a file at the path given by ``path``

    Args:
        secret_name: The name of the secret we want to export
        namespace: The namespace that the secret lives in
        path: The path to a directory where we want to save the secret files


    Returns:
        Returns True if everything worked as expected
    """
    (_, stdout,
     _) = sh(f"kubectl get secret {secret_name} -o yaml -n {namespace}")
    secret_yaml = yaml.safe_load(stdout)
    secret_files = secret_yaml["data"]
    for f in secret_files:
        decoded = base64.b64decode(secret_files[f])
        output_file = os.path.join(path, f)
        with open(output_file, "wb") as f:
            f.write(decoded)

    return True
Exemplo n.º 4
0
from hypermodel import sh

package_path = "src/hyper-model"
pip_credentials = "--username growingdata --password $PYPI_PASSWORD"

sh(f"rm -r dist/*", package_path)
sh(f"python setup.py sdist bdist_wheel", package_path)
sh(f"python -m twine upload dist/* {pip_credentials} --verbose", package_path)
Exemplo n.º 5
0
def create_secret(secret_name: str, path: str, namespace: str = "kubeflow"):
    sh(f"kubectl create secret generic {secret_name} --namespace {namespace} --from-file={secret_name}.json={path}"
       )