Skip to content

Commit 87e672e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f5bd7db commit 87e672e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/scripts/e2e/go_test.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function install_gmc() {
1919
kubectl apply -f $(pwd)/config/rbac/gmc-manager-rbac.yaml
2020
kubectl create configmap gmcyaml -n $SYSTEM_NAMESPACE --from-file $(pwd)/config/manifests
2121
kubectl apply -f $(pwd)/config/manager/gmc-manager.yaml
22-
23-
# Wait until the gmc conroller pod is ready
22+
23+
# Wait until the gmc controller pod is ready
2424
wait_until_pod_ready "gmc-controller" $SYSTEM_NAMESPACE "gmc-controller"
2525
}
2626

@@ -47,7 +47,7 @@ function validate_chatqna() {
4747
kubectl create ns $APP_NAMESPACE
4848
sed -i "s|namespace: chatqa|namespace: $APP_NAMESPACE|g" $(pwd)/config/samples/chatQnA_xeon.yaml
4949
kubectl apply -f $(pwd)/config/samples/chatQnA_xeon.yaml
50-
50+
5151

5252

5353
output=$(kubectl get pods)
@@ -59,13 +59,13 @@ function validate_chatqna() {
5959

6060

6161
# deploy client pod for testing
62-
kubectl create deployment client-test -n $APP_NAMESPACE --image=python:3.8.13 -- sleep infinity
62+
kubectl create deployment client-test -n $APP_NAMESPACE --image=python:3.8.13 -- sleep infinity
6363

6464
# wait for client pod ready
6565
wait_until_pod_ready "client-test" $APP_NAMESPACE "client-test"
6666
# giving time to populating data
6767
sleep 180
68-
kubectl get pods -n $APP_NAMESPACE
68+
kubectl get pods -n $APP_NAMESPACE
6969
# send request to chatqnA
7070
export CLIENT_POD=$(kubectl get pod -n $APP_NAMESPACE -l app=client-test -o jsonpath={.items..metadata.name})
7171
echo "$CLIENT_POD"

0 commit comments

Comments
 (0)