Azure/setup-kubectl
Description:
This action sets up kubectl, the command-line tool for interacting with Kubernetes clusters, on the runner. It enables you to interact with your Kubernetes clusters within your CI/CD pipelines.
Usage:
uses: Azure/setup-kubectl@v1
with:
kubectl-version: 'v1.21.0'
Inputs:
kubectl-version
(optional): The version ofkubectl
to install (default is the latest stable version).
Example:
steps:
- name: Set up kubectl
uses: Azure/setup-kubectl@v1
with:
kubectl-version: 'v1.21.0'
GitHub Repository