This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
fix: requirements.txt to reduce vulnerabilities #14
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: Integration Test | |
on: | |
push: | |
env: | |
KEPLER_NAMESPACE: monitoring | |
jobs: | |
deploy_with_model_server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Kind Cluster | |
uses: helm/[email protected] | |
- uses: actions/checkout@v3 | |
with: | |
repository: sunya-ch/kepler-model-server | |
- name: Create monitoring namespace | |
run: kubectl create namespace ${{ env.KEPLER_NAMESPACE }} | |
- name: Deploy Model Server | |
run: kubectl create -f manifests/local/deployment.yaml | |
- name: Check deployment availablility | |
run: kubectl wait deployment kepler-model-server -n ${{ env.KEPLER_NAMESPACE }} --for condition=Available=True --timeout=120s | |
- uses: actions/checkout@v3 | |
- name: build images | |
run: | | |
docker build -t kind-registry:5000/kepler_estimator:latest . | |
docker tag kind-registry:5000/kepler_estimator:latest quay.io/sustainable_computing_io/kepler_estimator:latest | |
- name: Load image to kind node | |
run: kind load docker-image quay.io/sustainable_computing_io/kepler_estimator:latest --name chart-testing | |
- name: Deploy test job | |
run: kubectl create -f deploy/test-jobs-with-server.yaml | |
- name: Describe job | |
run: sleep 5; kubectl describe job estimator-job | |
- name: Get pod | |
run: kubectl get po --selector job-name=estimator-job -oyaml | |
- name: Check job done without error | |
run: | | |
kubectl wait --for=condition=complete --timeout=90s job/estimator-job | |
kubectl logs job/estimator-job | |
kubectl delete -f deploy/test-jobs-with-server.yaml |