Skip to content

Commit

Permalink
Create whoami.yml github action
Browse files Browse the repository at this point in the history
  • Loading branch information
nhh authored Sep 26, 2024
1 parent fabd530 commit f8b1f3f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/whoami.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy whoami chart

on:
push:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install stuff
run: |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x kubectl
mkdir -p ~/.local/bin
mv ./kubectl ~/.local/bin/kubectl
curl -p k8x "https://github.com/kubernetix/k8x/releases/download/v0.4.0-alpha/k8x-linux-x86_64
chmod +x k8x
k8x version

0 comments on commit f8b1f3f

Please sign in to comment.