Initial commit
This commit is contained in:
commit
b5e046234c
6 changed files with 228 additions and 0 deletions
25
.github/workflows/setup-cluster.yml
vendored
Normal file
25
.github/workflows/setup-cluster.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Setup cluster
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
branches:
|
||||
- '**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
setup-cluster:
|
||||
name: minikube
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: start minikube
|
||||
id: minikube
|
||||
uses: medyagh/setup-minikube@latest
|
||||
- name: kubectl
|
||||
run: kubectl get pods -A
|
Loading…
Add table
Add a link
Reference in a new issue