Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
terminal

GitHub Action

run-kubectl

1.0.5

run-kubectl

terminal

run-kubectl

kubectl as a GitHub Action

Installation

Copy and paste the following snippet into your .yml file.

              

- name: run-kubectl

uses: myrotvorets/[email protected]

Learn more about this action in myrotvorets/kubectl-action

Choose a version

kubectl-action

Provides kubectl command to GitHub Actions.

Why?

Mainly because we need to be sure that our kubeconfig won't leak to third parties :-) We control the code, we know there are no (and there will be no) backdoors.

Usage

name: Deploy
on:
  push:
    branches:
      - master

jobs:
  deploy:
    runs-on: ubuntu-latest

  steps:
    - uses: actions/checkout@v2
    - name: Deploy to cluster
      uses: myrotvorets/[email protected]
      env:
        KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
      with:
        args: set image --record deployment/application container=${{ github.repository }}:${{ github.sha }}
    - name: Verify deployment
      uses: myrotvorets/[email protected]
      env:
        KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
      with:
        args: rollout status deployment/application