Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions console/v1alpha1/types_console_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ type ConsolePluginProxyService struct {
// +kubebuilder:validation:Pattern=`^-----BEGIN CERTIFICATE-----([\s\S]*)-----END CERTIFICATE-----\s?$`
// +kubebuilder:validation:Optional
// +optional
CACertificate string `json:"caCertificate"`
CACertificate string `json:"caCertificate,omitempty"`
// authorize indicates if the proxied request will logged-in user's
// OpenShift access token in the "Authorization" request header:
//
Expand All @@ -97,7 +97,7 @@ type ConsolePluginProxyService struct {
// +kubebuilder:default:=false
// +kubebuilder:validation:Optional
// +optional
Authorize bool `json:"authorize"`
Authorize bool `json:"authorize,omitempty"`
}

// ConsolePluginService holds information on Service that is serving
Expand Down