Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
5c9f646d
Unverified
Commit
5c9f646d
authored
Feb 12, 2026
by
Tushar Sharma
Committed by
GitHub
Feb 12, 2026
Browse files
ci: allow deploy tests to run even when operator is skipped (#6120)
Signed-off-by:
Tushar Sharma
<
tusharma@nvidia.com
>
parent
3967ec0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
.github/workflows/pr.yaml
.github/workflows/pr.yaml
+20
-2
No files found.
.github/workflows/pr.yaml
View file @
5c9f646d
...
@@ -234,12 +234,30 @@ jobs:
...
@@ -234,12 +234,30 @@ jobs:
deploy-operator
:
deploy-operator
:
runs-on
:
prod-default-small-v2
runs-on
:
prod-default-small-v2
if
:
needs.changed-files.outputs.core == 'true'
# Run when any deploy test will run: if core, any framework, or deploy files changed
if
:
|
always() &&
(needs.changed-files.outputs.core == 'true' ||
needs.changed-files.outputs.vllm == 'true' ||
needs.changed-files.outputs.sglang == 'true' ||
needs.changed-files.outputs.trtllm == 'true' ||
needs.changed-files.outputs.deploy == 'true') &&
(needs.operator.result == 'success' || needs.operator.result == 'skipped')
needs
:
[
changed-files
,
operator
]
needs
:
[
changed-files
,
operator
]
outputs
:
outputs
:
NAMESPACE
:
${{ steps.deploy-operator-step.outputs.namespace }}
NAMESPACE
:
${{ steps.deploy-operator-step.outputs.namespace }}
steps
:
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/checkout@v4
-
name
:
Determine operator image tag
id
:
operator-tag
run
:
|
if [ "${{ needs.operator.result }}" == "success" ]; then
echo "tag=${{ needs.operator.outputs.operator_default_tag }}" >> $GITHUB_OUTPUT
echo "Using newly built operator image: ${{ needs.operator.outputs.operator_default_tag }}"
else
echo "tag=main-operator" >> $GITHUB_OUTPUT
echo "Using stable operator image: main-operator"
fi
-
name
:
Deploy Operator
-
name
:
Deploy Operator
id
:
deploy-operator-step
id
:
deploy-operator-step
env
:
env
:
...
@@ -296,7 +314,7 @@ jobs:
...
@@ -296,7 +314,7 @@ jobs:
--set dynamo-operator.namespaceRestriction.enabled=true \
--set dynamo-operator.namespaceRestriction.enabled=true \
--set dynamo-operator.namespaceRestriction.allowedNamespaces[0]=${NAMESPACE} \
--set dynamo-operator.namespaceRestriction.allowedNamespaces[0]=${NAMESPACE} \
--set dynamo-operator.controllerManager.manager.image.repository=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo \
--set dynamo-operator.controllerManager.manager.image.repository=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo \
--set dynamo-operator.controllerManager.manager.image.tag=${{
need
s.operator.outputs.
operator_default_
tag }} \
--set dynamo-operator.controllerManager.manager.image.tag=${{
step
s.operator
-tag
.outputs.tag }} \
--set dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret
--set dynamo-operator.imagePullSecrets[0].name=docker-imagepullsecret
# Wait for all deployments to be ready
# Wait for all deployments to be ready
timeout 300s kubectl rollout status deployment -n $NAMESPACE --watch
timeout 300s kubectl rollout status deployment -n $NAMESPACE --watch
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment