Skip to content

Commit

Permalink
K8s Github Actions Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Dec 5, 2024
1 parent f82d70f commit fc7078e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
- name: Deploy Funnel
run: |
helm repo add ohsu https://ohsu-comp-bio.github.io/helm-charts
# 'local-path' is a k3d specific storage class
# Ref: https://k3d.io/v5.7.4/usage/k3s/#local-path-provisioner
# 'local-path' is a k3d specific storage class used to automatically create a PersistentVolume
# - Ref: https://k3d.io/v5.7.4/usage/k3s/#local-path-provisioner
helm upgrade --install funnel ohsu/funnel --set storage.className=local-path --set storage.provisioner=local-path
# Wait for the Deployment to be available
Expand All @@ -45,6 +46,9 @@ jobs:
# Port-forward the service
kubectl port-forward svc/funnel 8000:8000 &
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

- name: Submit Task
run: |
export PATH="$PATH:$(pwd)"
Expand Down

0 comments on commit fc7078e

Please sign in to comment.