kubectl - Google Cloud GKE cluster.
ActionsTags
(2)A Github Action which can be used to deploy your application by performing kubectl
actions on the GKE
cluster.
To use this action, make sure you have created a GCP service account having the necessary permissions given to it.
APPLICATION_CREDENTIALS - To authorize in GCP you need to have a service account key. Required Base64 encoded service account key exported as JSON. To encode a JSON file use: base64 ~/<account_id>.json
PROJECT_ID - must be provided to activate a specific project.
name: Deploy App on GKE cluster.
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: kubectl - Google Cloud GKE cluster.
uses: ameydev/gke-kubectl-action@master
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}
APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
CLUSTER_NAME: ${{ secrets.GKE_CLUSTER_NAME }}
ZONE_NAME: us-central1-c
with:
args: apply -f packaging/k8s/manifests/ -n prod
name: Deploy App on GKE cluster.
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: kubectl - Google Cloud GKE cluster.
uses: ameydev/gke-kubectl-action@master
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}
APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
CLUSTER_NAME: ${{ secrets.GKE_CLUSTER_NAME }}
ZONE_NAME: us-central1-c
with:
args: apply -f packaging/k8s/manifests/ -n staging
TODO:
- Add github actions (Build and Release workflows.)
- Exclude any yaml, wildcard for input
- Update README (Different Paths, Exclude any yaml, wildcard for input)
kubectl - Google Cloud GKE cluster. is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.