-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SDK] Use Katib SDK for E2E Tests (#2075)
* [SDK] Use Katib SDK for E2E tests * Fix pvc deletion * Add list_suggestions API * Remove wait from edit Experiment function * Add shell to GitHub action * Add protobuf package to Katib SDK * Add Experiment Timeout to 40 min * Modify SDK Examples * Fix example text * Change to custom_api * Enable verbose logging for Katib E2E * Use expected condition arg * Add timeout and delete options * Modify logging to debug * Use read API to check resource status
- Loading branch information
1 parent
ae68b77
commit 6bcbd25
Showing
13 changed files
with
1,406 additions
and
1,169 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,23 @@ inputs: | |
runs: | ||
using: composite | ||
steps: | ||
- name: Set Up Minikube Cluster | ||
- name: Setup Minikube Cluster | ||
uses: manusa/[email protected] | ||
with: | ||
minikube version: 'v1.28.0' | ||
minikube version: v1.28.0 | ||
kubernetes version: ${{ inputs.kubernetes-version }} | ||
start args: --wait-timeout=60s | ||
driver: 'none' | ||
driver: none | ||
github token: ${{ env.GITHUB_TOKEN }} | ||
|
||
- name: Set Up Docker Buildx | ||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Set Up Go env | ||
uses: actions/setup-go@v3 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
go-version-file: go.mod | ||
python-version: 3.9 | ||
|
||
- name: Install Katib SDK | ||
shell: bash | ||
run: pip install -e sdk/python/v1beta1 |
Oops, something went wrong.