Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
ermirizio committed Feb 14, 2024
1 parent 71a8084 commit 401eb1d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/k8s.yml
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

0 comments on commit 401eb1d

Please sign in to comment.