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
7fb95825
Unverified
Commit
7fb95825
authored
Feb 18, 2026
by
Thomas Montfort
Committed by
GitHub
Feb 18, 2026
Browse files
fix(ci): operator CI (#6390)
parent
82f721c7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
deploy/operator/internal/controller/dynamographdeployment_controller.go
...r/internal/controller/dynamographdeployment_controller.go
+3
-3
No files found.
deploy/operator/internal/controller/dynamographdeployment_controller.go
View file @
7fb95825
...
...
@@ -190,7 +190,7 @@ func (r *DynamoGraphDeploymentReconciler) Reconcile(ctx context.Context, req ctr
if
r
.
isRollingUpdateInProgress
(
dynamoDeployment
)
||
r
.
shouldTriggerRollingUpdate
(
dynamoDeployment
)
{
if
err
=
r
.
reconcileRollingUpdate
(
ctx
,
dynamoDeployment
);
err
!=
nil
{
logger
.
Error
(
err
,
"Failed to reconcile rolling update"
)
state
=
DGDStateFailed
state
=
nvidiacomv1alpha1
.
DGDStateFailed
reason
=
Reason
(
"RollingUpdateFailed"
)
message
=
Message
(
err
.
Error
())
return
ctrl
.
Result
{},
err
...
...
@@ -235,8 +235,8 @@ func (r *DynamoGraphDeploymentReconciler) Reconcile(ctx context.Context, req ctr
// Keep the reconcileResult state (should be Ready if resources are ready)
case
nvidiacomv1alpha1
.
RollingUpdatePhasePending
,
nvidiacomv1alpha1
.
RollingUpdatePhaseInProgress
:
// Rolling update in progress - resources are being transitioned
if
state
!=
DGDStateFailed
{
state
=
DGDStatePending
if
state
!=
nvidiacomv1alpha1
.
DGDStateFailed
{
state
=
nvidiacomv1alpha1
.
DGDStatePending
reason
=
"rolling_update_in_progress"
message
=
"Rolling update in progress"
}
...
...
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