-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add helm-chart CI test workflow. (#1140)
* Add helm-chart CI test workflow. --------- Signed-off-by: ZePan110 <[email protected]>
- Loading branch information
Showing
5 changed files
with
403 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,209 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Helm Chart Test on GenAIComps For Call | ||
permissions: read-all | ||
on: | ||
workflow_call: | ||
inputs: | ||
service: | ||
default: "chatqna" | ||
required: true | ||
type: string | ||
description: "service to test, e.g. asr" | ||
dockerhub: | ||
default: "false" | ||
required: false | ||
type: string | ||
description: "Set to true if you want to use released docker images at dockerhub. By default using internal docker registry." | ||
tag: | ||
default: "latest" | ||
required: false | ||
type: string | ||
mode: | ||
default: "CD" | ||
description: "Whether the test range is CI, CD or CICD" | ||
required: false | ||
type: string | ||
hardware: | ||
default: "xeon" | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
get-test-case: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
value_files: ${{ steps.get-test-files.outputs.value_files }} | ||
CHECKOUT_REF: ${{ steps.get-checkout-ref.outputs.CHECKOUT_REF }} | ||
steps: | ||
- name: Get checkout ref | ||
id: get-checkout-ref | ||
run: | | ||
if [ "${{ github.event_name }}" == "pull_request" ] || [ "${{ github.event_name }}" == "pull_request_target" ]; then | ||
CHECKOUT_REF=refs/pull/${{ github.event.number }}/merge | ||
else | ||
CHECKOUT_REF=${{ github.ref }} | ||
fi | ||
echo "CHECKOUT_REF=${CHECKOUT_REF}" >> $GITHUB_OUTPUT | ||
echo "checkout ref ${CHECKOUT_REF}" | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ steps.get-checkout-ref.outputs.CHECKOUT_REF }} | ||
fetch-depth: 0 | ||
|
||
- name: Get test Services | ||
id: get-test-files | ||
run: | | ||
set -x | ||
if [ "${{ inputs.mode }}" = "CI" ]; then | ||
base_commit=${{ github.event.pull_request.base.sha }} | ||
merged_commit=$(git log -1 --format='%H') | ||
values_files=$(git diff --name-only ${base_commit} ${merged_commit} | \ | ||
grep "kubernetes" | \ | ||
sort -u ) | ||
echo $values_files | ||
elif [ "${{ inputs.mode }}" = "CD" ]; then | ||
values_files=$(ls ${{ github.workspace }}/comps/"${{ inputs.service }}"/deployment/kubernetes/*values.yaml) | ||
fi | ||
value_files="[" | ||
for file in ${values_files}; do | ||
if [ -f "$file" ]; then | ||
filename=$(basename "$file") | ||
if [[ "$filename" == *"gaudi"* ]]; then | ||
if [[ "${{ inputs.hardware }}" == "gaudi" ]]; then | ||
value_files="${value_files}\"${filename}\"," | ||
fi | ||
elif [[ "$filename" == *"nv"* ]]; then | ||
continue | ||
else | ||
if [[ "${{ inputs.hardware }}" == "xeon" ]]; then | ||
value_files="${value_files}\"${filename}\"," | ||
fi | ||
fi | ||
fi | ||
done | ||
value_files="${value_files%,}]" | ||
echo "value_files=${value_files}" | ||
echo "value_files=${value_files}" >> $GITHUB_OUTPUT | ||
helm-test: | ||
needs: [get-test-case] | ||
strategy: | ||
matrix: | ||
value_file: ${{ fromJSON(needs.get-test-case.outputs.value_files) }} | ||
runs-on: ${{ inputs.hardware }} | ||
continue-on-error: true | ||
steps: | ||
- name: Clean Up Working Directory | ||
run: | | ||
echo "value_file=${{ matrix.value_file }}" | ||
sudo rm -rf ${{github.workspace}}/* | ||
- name: Get checkout ref | ||
id: get-checkout-ref | ||
run: | | ||
if [ "${{ github.event_name }}" == "pull_request" ] || [ "${{ github.event_name }}" == "pull_request_target" ]; then | ||
CHECKOUT_REF=refs/pull/${{ github.event.number }}/merge | ||
else | ||
CHECKOUT_REF=${{ github.ref }} | ||
fi | ||
echo "CHECKOUT_REF=${CHECKOUT_REF}" >> $GITHUB_OUTPUT | ||
echo "checkout ref ${CHECKOUT_REF}" | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ steps.get-checkout-ref.outputs.CHECKOUT_REF }} | ||
fetch-depth: 0 | ||
|
||
- name: Set variables | ||
env: | ||
service: ${{ inputs.service }} | ||
run: | | ||
CHART_NAME="${service,,}" # asr | ||
echo "CHART_NAME=$CHART_NAME" >> $GITHUB_ENV | ||
echo "RELEASE_NAME=${CHART_NAME}$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV | ||
echo "NAMESPACE=${CHART_NAME}-$(date +%Y%m%d%H%M%S)" >> $GITHUB_ENV | ||
echo "ROLLOUT_TIMEOUT_SECONDS=600s" >> $GITHUB_ENV | ||
echo "TEST_TIMEOUT_SECONDS=600s" >> $GITHUB_ENV | ||
echo "KUBECTL_TIMEOUT_SECONDS=60s" >> $GITHUB_ENV | ||
echo "should_cleanup=false" >> $GITHUB_ENV | ||
echo "skip_validate=false" >> $GITHUB_ENV | ||
echo "CHART_FOLDER=comps/${service}/deployment/kubernetes" >> $GITHUB_ENV | ||
- name: Helm install | ||
id: install | ||
env: | ||
GOOGLE_CSE_ID: ${{ secrets.GOOGLE_CSE_ID }} | ||
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | ||
HUGGINGFACEHUB_API_TOKEN: ${{ secrets.HUGGINGFACEHUB_API_TOKEN }} | ||
HFTOKEN: ${{ secrets.HUGGINGFACEHUB_API_TOKEN }} | ||
value_file: ${{ matrix.value_file }} | ||
run: | | ||
set -xe | ||
echo "should_cleanup=true" >> $GITHUB_ENV | ||
if [[ ! -f ${{ github.workspace }}/${{ env.CHART_FOLDER }}/${value_file} ]]; then | ||
echo "No value file found, exiting test!" | ||
echo "skip_validate=true" >> $GITHUB_ENV | ||
echo "should_cleanup=false" >> $GITHUB_ENV | ||
exit 0 | ||
fi | ||
if ! helm install --create-namespace --namespace $NAMESPACE $RELEASE_NAME oci://ghcr.io/opea-project/charts/${CHART_NAME} --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} --set global.modelUseHostPath=/home/sdp/.cache/huggingface/hub -f comps/${{ inputs.service }}/deployment/kubernetes/${value_file} --version 0-latest --wait; then | ||
echo "Failed to install chart ${{ inputs.service }}" | ||
echo "skip_validate=true" >> $GITHUB_ENV | ||
.github/workflows/scripts/k8s-utils.sh dump_pods_status $NAMESPACE | ||
exit 1 | ||
fi | ||
helm list -A | ||
kubectl get pods -n $NAMESPACE | ||
- name: Validate e2e test | ||
if: always() | ||
run: | | ||
set -xe | ||
if $skip_validate; then | ||
echo "Skip validate" | ||
else | ||
LOG_PATH=/home/$(whoami)/helm-logs | ||
chart=${{ env.CHART_NAME }} | ||
helm test -n $NAMESPACE $RELEASE_NAME --logs --timeout "$TEST_TIMEOUT_SECONDS" | tee ${LOG_PATH}/charts-${chart}.log | ||
exit_code=$? | ||
if [ $exit_code -ne 0 ]; then | ||
echo "Chart ${chart} test failed, please check the logs in ${LOG_PATH}!" | ||
exit 1 | ||
fi | ||
echo "Checking response results, make sure the output is reasonable. " | ||
teststatus=false | ||
if [[ -f $LOG_PATH/charts-${chart}.log ]] && \ | ||
[[ $(grep -c "^Phase:.*Failed" $LOG_PATH/charts-${chart}.log) != 0 ]]; then | ||
teststatus=false | ||
${{ github.workspace }}/.github/workflows/scripts/k8s-utils.sh dump_all_pod_logs $NAMESPACE | ||
else | ||
teststatus=true | ||
fi | ||
if [ $teststatus == false ]; then | ||
echo "Response check failed, please check the logs in artifacts!" | ||
exit 1 | ||
else | ||
echo "Response check succeeded!" | ||
exit 0 | ||
fi | ||
fi | ||
- name: Helm uninstall | ||
if: always() | ||
run: | | ||
if $should_cleanup; then | ||
helm uninstall $RELEASE_NAME --namespace $NAMESPACE | ||
if ! kubectl delete ns $NAMESPACE --timeout=$KUBECTL_TIMEOUT_SECONDS; then | ||
kubectl delete pods --namespace $NAMESPACE --force --grace-period=0 --all | ||
kubectl delete ns $NAMESPACE --force --grace-period=0 --timeout=$KUBECTL_TIMEOUT_SECONDS | ||
fi | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Microservice Test With Helm Charts | ||
|
||
on: | ||
pull_request_target: | ||
branches: [main] | ||
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | ||
paths: | ||
- "!**.md" | ||
- "**/deployment/kubernetes/**" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
job1: | ||
name: Get-test-matrix | ||
runs-on: ubuntu-latest | ||
outputs: | ||
run_matrix: ${{ steps.get-test-matrix.outputs.run_matrix }} | ||
steps: | ||
- name: Checkout out Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: "refs/pull/${{ github.event.number }}/merge" | ||
fetch-depth: 0 | ||
|
||
- name: Get test matrix | ||
id: get-test-matrix | ||
run: | | ||
set -x | ||
base_commit=${{ github.event.pull_request.base.sha }} | ||
merged_commit=$(git log -1 --format='%H') | ||
values_files=$(git diff --name-only ${base_commit} ${merged_commit} | \ | ||
grep "values.yaml" | \ | ||
sort -u) # comps/agent/deployment/kubernetes/cpu-values.yaml | ||
run_matrix="{\"include\":[" | ||
for values_file in ${values_files}; do | ||
if [ -f "$values_file" ]; then | ||
valuefile=$(basename "$values_file") # cpu-values.yaml | ||
service=$(echo "$values_file" | cut -d'/' -f2) # agent | ||
if [[ "$valuefile" == *"gaudi"* ]]; then | ||
hardware="gaudi" | ||
elif [[ "$valuefile" == *"nv"* ]]; then | ||
continue | ||
else | ||
hardware="xeon" | ||
fi | ||
echo "service=${service}, hardware=${hardware}, valuefile=${valuefile}" | ||
if [[ $(echo ${run_matrix} | grep -c "{\"service\":\"${service}\",\"hardware\":\"${hardware}\"},") == 0 ]]; then | ||
run_matrix="${run_matrix}{\"service\":\"${service}\",\"hardware\":\"${hardware}\"}," | ||
echo "------------------ add one values file ------------------" | ||
fi | ||
fi | ||
done | ||
run_matrix="${run_matrix%,}" | ||
run_matrix=$run_matrix"]}" | ||
echo "run_matrix=${run_matrix}" | ||
echo "run_matrix=${run_matrix}" >> $GITHUB_OUTPUT | ||
Chart-test: | ||
needs: [job1] | ||
if: always() && ${{ needs.job1.outputs.run_matrix.service.length }} > 0 | ||
uses: ./.github/workflows/_run-helm-chart.yml | ||
strategy: | ||
matrix: ${{ fromJSON(needs.job1.outputs.run_matrix) }} | ||
with: | ||
service: ${{ matrix.service }} | ||
hardware: ${{ matrix.hardware }} | ||
mode: "CI" | ||
secrets: inherit |
Oops, something went wrong.