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
Copy file name to clipboardExpand all lines: docs/api-reference/operator-controller-api-reference.md
+1
Original file line number
Diff line number
Diff line change
@@ -326,6 +326,7 @@ _Appears in:_
326
326
| --- | --- | --- | --- |
327
327
| `conditions` _[Condition](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#condition-v1-meta) array_ | The set of condition types which apply to all spec.source variations are Installed and Progressing.<br /><br />The Installed condition represents whether or not the bundle has been installed for this ClusterExtension.<br />When Installed is True and the Reason is Succeeded, the bundle has been successfully installed.<br />When Installed is False and the Reason is Failed, the bundle has failed to install.<br /><br />The Progressing condition represents whether or not the ClusterExtension is advancing towards a new state.<br />When Progressing is True and the Reason is Succeeded, the ClusterExtension is making progress towards a new state.<br />When Progressing is True and the Reason is Retrying, the ClusterExtension has encountered an error that could be resolved on subsequent reconciliation attempts.<br />When Progressing is False and the Reason is Blocked, the ClusterExtension has encountered an error that requires manual intervention for recovery.<br /><br />When the ClusterExtension is sourced from a catalog, if may also communicate a deprecation condition.<br />These are indications from a package owner to guide users away from a particular package, channel, or bundle.<br />BundleDeprecated is set if the requested bundle version is marked deprecated in the catalog.<br />ChannelDeprecated is set if the requested channel is marked deprecated in the catalog.<br />PackageDeprecated is set if the requested package is marked deprecated in the catalog.<br />Deprecated is a rollup condition that is present when any of the deprecated conditions are present. | | |
328
328
|`install`_[ClusterExtensionInstallStatus](#clusterextensioninstallstatus)_| install is a representation of the current installation status for this ClusterExtension. |||
Copy file name to clipboardExpand all lines: internal/operator-controller/authorization/internal/kubernetes/pkg/apis/rbac/v1/zz_generated.conversion.go
// RoleEscalationAuthorized checks if the user associated with the context is explicitly authorized to escalate the role resource associated with the context
@@ -99,7 +98,7 @@ func RoleEscalationAuthorized(ctx context.Context, a authorizer.Authorizer) bool
99
98
}
100
99
101
100
// BindingAuthorized returns true if the user associated with the context is explicitly authorized to bind the specified roleRef
102
-
funcBindingAuthorized(ctx context.Context, roleRefrbac.RoleRef, bindingNamespacestring, a authorizer.Authorizer) bool {
101
+
funcBindingAuthorized(ctx context.Context, roleRefrbac2.RoleRef, bindingNamespacestring, a authorizer.Authorizer) bool {
Copy file name to clipboardExpand all lines: internal/operator-controller/authorization/internal/kubernetes/pkg/registry/rbac/validation/policy_compact.go
msg:=fmt.Sprintf("user %q (groups=%q) is attempting to grant RBAC permissions not currently held:\n%s", e.User.GetName(), e.User.GetGroups(), strings.Join(missingDescriptions.List(), "\n"))
msg:=fmt.Sprintf("user %q (groups=%q) is attempting to grant RBAC permissions not currently held:\n%s", user.GetName(), user.GetGroups(), strings.Join(missingDescriptions.List(), "\n"))
0 commit comments