Skip to content

Commit

Permalink
add the fields that are accidentally deleted in previous commits
Browse files Browse the repository at this point in the history
Signed-off-by: asararatnakar <[email protected]>
  • Loading branch information
asararatnakar authored and jkneubuh committed Aug 2, 2022
1 parent d1f21d0 commit 8546a39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1beta1/common_struct.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ type License struct {
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors.x-descriptors="urn:alm:descriptor:com.tectonic.ui:checkbox"
// +kubebuilder:validation:Enum=true
Accept bool `json:"accept"`
Accept bool `json:"accept,omitempty"`
}

// +k8s:deepcopy-gen=true
Expand Down
6 changes: 6 additions & 0 deletions api/v1beta1/ibpconsole_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ type IBPConsoleSpec struct {
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
AuthScheme string `json:"authScheme,omitempty"`

// AllowDefaultPassword, if true, will bypass the password reset flow
// on the first connection to the console GUI. By default (false), all
// consoles require a password reset at the first login.
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
AllowDefaultPassword bool `json:"allowDefaultPassword,omitempty"`

// Components is database name used for components
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true
Components string `json:"components,omitempty"`
Expand Down

0 comments on commit 8546a39

Please sign in to comment.