-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Kube-ez CI | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
env: | ||
# Use docker.io for Docker Hub if empty | ||
REGISTRY: ghcr.io | ||
DOCKER_IMAGE_NAME: kube-ez | ||
DOCKERFILE_PATH: ./Dockerfile | ||
|
||
jobs: | ||
Test-on-cluster: | ||
runs-on: ubuntu-latest | ||
steps: | ||
## starts the cluster | ||
- name: Testing on a k8s Kind Cluster | ||
uses: helm/[email protected] | ||
## makes sure cluster is up and running | ||
- name: Configure cluster | ||
run: | | ||
kubectl cluster-info | ||
kubectl get nodes | ||
- name: Install | ||
uses: Azure/setup-helm@v3 | ||
with: | ||
version: v3.12.1 |