k8s kwasm http server #589
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
name: k8s kwasm http server | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'info' | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**/README.md' | |
schedule: | |
- cron: "0 0 */1 * *" | |
jobs: | |
k8s_kwasm_server: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: helm/[email protected] | |
- run: | | |
helm repo add kwasm http://kwasm.sh/kwasm-operator/ | |
helm repo update | |
helm install -n kwasm --create-namespace kwasm kwasm/kwasm-operator | |
kubectl annotate node --all kwasm.sh/kwasm-node=true | |
kubectl apply -f kwasm/http-server/http_server_application.yaml | |
sleep 30 | |
kubectl port-forward service/demo-service 8080 & | |
sleep 10 | |
curl -d "name=WasmEdge" -X POST http://localhost:8080 | |
echo |