-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add tests for operator-wandb (#338)
- Loading branch information
1 parent
884d184
commit ab61675
Showing
16 changed files
with
521 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Lint Charts | ||
|
||
on: | ||
pull_request: | ||
paths: charts/** | ||
|
||
jobs: | ||
lint-test: | ||
runs-on: ubuntu-latest | ||
environment: Helm Charts | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v3.4 | ||
with: | ||
version: v3.16.3 | ||
|
||
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and | ||
# yamllint (https://github.com/adrienverge/yamllint) which require Python | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2.6.1 | ||
with: | ||
version: v3.11.0 | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --config ct.yaml) | ||
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config ct.yaml |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Test operator-wandb Chart | ||
|
||
on: | ||
pull_request: | ||
paths: charts/operator-wandb/** | ||
|
||
jobs: | ||
test: | ||
name: Test Chart | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
k8s-version: ["v1.32.1", "v1.31.4", "v1.30.8"] | ||
configuration: ["default"] | ||
runs-on: ubuntu-latest | ||
environment: Helm Charts | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v3.4 | ||
with: | ||
version: v3.16.3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2.6.1 | ||
with: | ||
version: v3.11.0 | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --config ct.yaml) | ||
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Create kind cluster | ||
uses: helm/kind-action@v1.12.0 | ||
with: | ||
version: v0.26.0 | ||
cluster_name: chart-testing-${{ matrix.k8s-version }}-${{ matrix.configuration }} | ||
node_image: kindest/node:${{ matrix.k8s-version }} | ||
if: env.ACT || steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Install Minio | ||
run: kubectl --context kind-chart-testing-${{ matrix.k8s-version }}-${{ matrix.configuration }} apply -f test-configs/minio/default.yaml | ||
if: env.ACT || steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Wait for Minio to be Ready | ||
run: kubectl --context kind-chart-testing-${{ matrix.k8s-version }}-${{ matrix.configuration }} -n minio wait --for=condition=Ready pod/minio --timeout=300s | ||
if: env.ACT || steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
env: | ||
LICENSE: ${{ secrets.LICENSE }} | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: | | ||
ct install \ | ||
--charts ./charts/operator-wandb \ | ||
--config ct.yaml \ | ||
--helm-extra-args '--kube-context kind-chart-testing-${{ matrix.k8s-version }}-${{ matrix.configuration }} --timeout 600s' \ | ||
--helm-extra-set-args '--values test-configs/operator-wandb/${{ matrix.configuration }}.yaml --set=license=$LICENSE' |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# TODO(dpanzella): Uncomment this file when the ready for automated tests of the operator chart | ||
|
||
#name: Test operator Chart | ||
# | ||
#on: | ||
# pull_request: | ||
# paths: charts/operator/** | ||
# | ||
#jobs: | ||
# test: | ||
# runs-on: ubuntu-latest | ||
# environment: Helm Charts | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v2 | ||
# with: | ||
# fetch-depth: 0 | ||
# | ||
# - name: Set up Helm | ||
# uses: azure/setup-helm@v3.4 | ||
# with: | ||
# version: v3.16.3 | ||
# | ||
# # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and | ||
# # yamllint (https://github.com/adrienverge/yamllint) which require Python | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: "3.10" | ||
# | ||
# - name: Set up chart-testing | ||
# uses: helm/chart-testing-action@v2.6.1 | ||
# with: | ||
# version: v3.11.0 | ||
# | ||
# - name: Run chart-testing (list-changed) | ||
# id: list-changed | ||
# run: | | ||
# changed=$(ct list-changed --config ct.yaml) | ||
# if [[ -n "$changed" ]]; then | ||
# echo "::set-output name=changed::true" | ||
# fi | ||
# | ||
# - name: Create kind cluster | ||
# uses: helm/kind-action@v1.8.0 | ||
# with: | ||
# version: v0.20.0 | ||
# if: env.ACT || steps.list-changed.outputs.changed == 'true' | ||
# | ||
# - name: Run chart-testing (install) | ||
# env: | ||
# LICENSE: ${{ secrets.LICENSE }} | ||
# if: steps.list-changed.outputs.changed == 'true' | ||
# run: ct install --charts ./charts/operator --config ct.yaml --helm-extra-set-args --set=license=$LICENSE |
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
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
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
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
23 changes: 23 additions & 0 deletions
23
charts/operator-wandb/templates/tests/test-connection.yaml
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: "{{ include "wandb.fullname" . }}-test-connection" | ||
labels: | ||
{{- include "wandb.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook": test | ||
spec: | ||
containers: | ||
- name: wandb-verify | ||
image: python:3.10 | ||
env: | ||
- name: WANDB_BASE_URL | ||
value: "http://{{ .Release.Name }}-app:8080" | ||
- name: WANDB_API_KEY | ||
value: "test-api-key" | ||
# wandb verify is terribly flaky, there's a PR up to fix it until then we try 3 times | ||
command: | ||
- sh | ||
- -c | ||
- "pip install wandb==0.17.8 && ((sleep 30 && wandb verify) || (sleep 30 && wandb verify) || (sleep 30 && wandb verify))" | ||
restartPolicy: Never |
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
Oops, something went wrong.