Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fjammes authored Mar 19, 2024
1 parent 980994b commit f977755
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ source ~/.bashrc
### Setup

Enable Github Action by creating file `.github/workflow/itests.yaml`, based on template below:
```
```yaml
name: "Install k8s cluster"
on:
push:
Expand All @@ -81,6 +81,15 @@ jobs:
go install github.com/k8s-school/ktbx@main
ktbx create -s
ktbx install kubectl
# Optional
- name: Install olm and argocd operators
run: |
ktbx install olm
ktbx install argocd
# Optional
- name: Install argo-workflows
run: |
ktbx install argowf
- name: Install and test application
run: |
kubectl create deployment my-nginx --image=nginx
Expand Down

0 comments on commit f977755

Please sign in to comment.