You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New version contains breaking changes: Deppy no longer
has variable source API. Instead it accepts a slice
of variables as input.
Signed-off-by: Mikalai Radchuk <[email protected]>
setResolvedStatusConditionUnknown(&op.Status.Conditions, "validation has not been attempted as spec is invalid", op.GetGeneration())
125
133
return ctrl.Result{}, nil
126
134
}
135
+
136
+
// gather vars for resolution
137
+
vars, err:=r.variables(ctx)
138
+
iferr!=nil {
139
+
op.Status.InstalledBundleResource=""
140
+
setInstalledStatusConditionUnknown(&op.Status.Conditions, "installation has not been attempted due to failure to gather data for resolution", op.GetGeneration())
0 commit comments