Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions operator/v1/types_console.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,16 @@ type ConsoleCustomization struct {
// +listMapKey=id
// +optional
Perspectives []Perspective `json:"perspectives"`
// customLoginServerURL is an optional field that, when set, overrides the server
// address displayed in the 'oc login' command shown in the console. Use this
// to advertise an alternative API endpoint (for example, a Proxy
// or any other front-end that accepts oc login traffic) without changing
// how the console itself communicates with the Kubernetes API server.
// When omitted, the console falls back to the standard cluster API server URL.
// Must be a valid HTTPS URL.
// +optional
// +kubebuilder:validation:Pattern=`^$|^https://[^\s].*$`
CustomLoginServerURL string `json:"customLoginServerURL,omitempty"`
Comment thread
qodo-code-review[bot] marked this conversation as resolved.
Comment thread
qodo-code-review[bot] marked this conversation as resolved.
Comment thread
coderabbitai[bot] marked this conversation as resolved.
}

// ProjectAccess contains options for project access roles
Expand Down