GithubHelp home page GithubHelp logo

classicvalues / get-gke-credentials Goto Github PK

View Code? Open in Web Editor NEW

This project forked from google-github-actions/get-gke-credentials

1.0 1.0 0.0 1.09 MB

This action configures authentication to a GKE cluster.

License: Apache License 2.0

JavaScript 8.18% TypeScript 91.82%

get-gke-credentials's Introduction

get-gke-credentials

This action configures authentication to a GKE cluster via a kubeconfig file that can be used with kubectl or other methods of interacting with the cluster.

Authentication is performed by generating a short-lived token (default behaviour) or via the GCP auth plugin present in kubectl which uses the service account keyfile path in GOOGLE_APPLICATION_CREDENTIALS.

Prerequisites

This action requires:

  • Google Cloud credentials that are authorized to view a GKE cluster. See the Authorization section below for more information.

  • Create a GKE cluster

Usage

steps:
- id: get-credentials
  uses: google-github-actions/get-gke-credentials@main
  with:
    cluster_name: my-cluster
    location: us-central1-a
    credentials: ${{ secrets.gcp_credentials }}

# The KUBECONFIG env var is automatically exported and picked up by kubectl.
- id: get-pods
  run: kubectl get pods

Inputs

  • cluster_name: (Required) Name of the cluster to get credentials for.

  • location: (Required) Location (Region/Zone) for the cluster.

  • credentials: (Optional) Service account key to use for authentication. This should be the JSON formatted private key which can be exported from the Cloud Console. The value can be raw or base64-encoded. Required if not using a the setup-gcloud action with exported credentials.

  • project_id: (Optional) Project ID where the cluster is deployed. If provided, this will override the project configured by gcloud.

  • use_auth_provider: (Optional) Flag to use GCP auth plugin in kubectl instead of a short lived token. Defaults to false.

  • use_internal_ip: (Optional) Flag to use the internal IP address of the cluster endpoint with private clusters. Defaults to false.

Outputs

  • Exports env var KUBECONFIG which is set to the generated kubeconfig file path.

Authorization

There are a few ways to authenticate this action. A service account will be needed with at least the following roles:

  • Kubernetes Engine Cluster Viewer (roles/container.clusterViewer):
    • Get and list access to GKE Clusters. `

Via Credentials

You can provide Google Cloud Service Account JSON directly to the action by specifying the credentials input. First, create a GitHub Secret that contains the JSON content, then import it into the action:

- id: get-credentials
  uses: google-github-actions/get-gke-credentials@main
  with:
    cluster_name: my-cluster
    location: us-central1-a
    credentials: ${{ secrets.gcp_credentials }}

Via Application Default Credentials

If you are hosting your own runners, and those runners are on Google Cloud, you can leverage the Application Default Credentials of the instance. This will authenticate requests as the service account attached to the instance. This only works using a custom runner hosted on GCP.

- id: get-credentials
  uses: google-github-actions/get-gke-credentials@main
  with:
    cluster_name: my-cluster
    location: us-central1-a

The action will automatically detect and use the Application Default Credentials.

get-gke-credentials's People

Contributors

dependabot[bot] avatar bharathkkb avatar google-github-actions-bot avatar averikitsch avatar

Stargazers

Classic Values avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.