Skip to content

Commit

Permalink
fix yaml syntax
Browse files Browse the repository at this point in the history
Signed-off-by: sailesh duddupudi <[email protected]>
  • Loading branch information
saileshd1402 committed Sep 29, 2024
1 parent 0256146 commit 222bf0e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/template-notebook-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,43 +23,43 @@ inputs:

runs:
using: composite
steps:
- name: Checkout
uses: actions/checkout@v4
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Free-Up Disk Space
uses: ./.github/workflows/free-up-disk-space
- name: Free-Up Disk Space
uses: ./.github/workflows/free-up-disk-space

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

- name: Create k8s Kind Cluster
uses: helm/[email protected]
with:
node_image: kindest/node:${{ inputs.kubernetes-version }}
cluster_name: training-operator-cluster
kubectl_version: ${{ inputs.kubernetes-version }}
- name: Create k8s Kind Cluster
uses: helm/[email protected]
with:
node_image: kindest/node:${{ inputs.kubernetes-version }}
cluster_name: training-operator-cluster
kubectl_version: ${{ inputs.kubernetes-version }}

- name: Build training-operator
run: |
./scripts/gha/build-image.sh
env:
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test
- name: Build training-operator
run: |
./scripts/gha/build-image.sh
env:
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test

- name: Deploy training operator
run: |
./scripts/gha/setup-training-operator.sh
docker system prune -a -f
docker system df
df -h
env:
KIND_CLUSTER: training-operator-cluster
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test
GANG_SCHEDULER_NAME: "none"
KUBERNETES_VERSION: ${{ inputs.kubernetes-version }}
- name: Deploy training operator
run: |
./scripts/gha/setup-training-operator.sh
docker system prune -a -f
docker system df
df -h
env:
KIND_CLUSTER: training-operator-cluster
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test
GANG_SCHEDULER_NAME: "none"
KUBERNETES_VERSION: ${{ inputs.kubernetes-version }}

- name: Run Jupyter Notebook with Papermill
run: |
papermill ${{ inputs.notebook-input }} ${{ inputs.notebook-output }} --parameters_yaml ${{ inputs.papermill-args-yaml }}
- name: Run Jupyter Notebook with Papermill
run: |
papermill ${{ inputs.notebook-input }} ${{ inputs.notebook-output }} --parameters_yaml ${{ inputs.papermill-args-yaml }}
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
"version": "3.9.12"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 222bf0e

Please sign in to comment.