Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: biswajit-9776 <biswajitpatt139@gmail.com>
  • Loading branch information
biswajit-9776 committed Sep 14, 2024
1 parent a713a4c commit bb20a6b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pss_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
# Apply the patch
kubectl get "$KIND" "$NAME" -n "$NAMESPACE" &> /dev/null
if [ $? -eq 0 ]; then
kubectl patch "$KIND" "$NAME" -n "$NAMESPACE" --patch-file "$file"
if [ "$NAME" = "metacontroller" ]; then
kubectl patch "$KIND" statefulset -n kubeflow --patch-file "$file"
else
kubectl patch "$KIND" "$NAME" -n "$NAMESPACE" --patch-file "$file"
fi
# if [ "$NAME" = "oauth2-proxy" ]; then
# kubectl wait -n oauth2-proxy --for=condition=ready pod -l 'app.kubernetes.io/name=oauth2-proxy' --timeout=180s
# elif [ "$NAME" = "metadata-envoy-deployment" ]; then
Expand Down

0 comments on commit bb20a6b

Please sign in to comment.