Skip to content
Merged
Show file tree
Hide file tree
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
36 changes: 35 additions & 1 deletion api/catalog/v1alpha1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions api/catalog/v1alpha1/shared_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ const (
type BindingSpec struct {
// SourceRef refers to the source app instance.
SourceRef kmapi.ObjectReference `json:"sourceRef"`
// UIExposure holds the specification of UI exposer
// +optional
UIExposure *UIExposureSpec `json:"uiExposure,omitempty"`
}

type UIExposureSpec struct {
DisableUI bool `json:"disableUI"`
DisableCostEfficiency bool `json:"disableCostEfficiency"`
}

// +kubebuilder:validation:Enum=Pending;InProgress;Terminating;Current;Failed;Expired
Expand Down
68 changes: 44 additions & 24 deletions api/catalog/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions crds/catalog.appscode.com_cassandrabindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ spec:
required:
- name
type: object
uiExposure:
description: UIExposure holds the specification of UI exposer
properties:
disableCostEfficiency:
type: boolean
disableUI:
type: boolean
required:
- disableCostEfficiency
- disableUI
type: object
required:
- sourceRef
type: object
Expand Down
11 changes: 11 additions & 0 deletions crds/catalog.appscode.com_clickhousebindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ spec:
required:
- name
type: object
uiExposure:
description: UIExposure holds the specification of UI exposer
properties:
disableCostEfficiency:
type: boolean
disableUI:
type: boolean
required:
- disableCostEfficiency
- disableUI
type: object
required:
- sourceRef
type: object
Expand Down
11 changes: 11 additions & 0 deletions crds/catalog.appscode.com_druidbindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ spec:
required:
- name
type: object
uiExposure:
description: UIExposure holds the specification of UI exposer
properties:
disableCostEfficiency:
type: boolean
disableUI:
type: boolean
required:
- disableCostEfficiency
- disableUI
type: object
required:
- sourceRef
type: object
Expand Down
11 changes: 11 additions & 0 deletions crds/catalog.appscode.com_elasticsearchbindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,17 @@ spec:
required:
- name
type: object
uiExposure:
description: UIExposure holds the specification of UI exposer
properties:
disableCostEfficiency:
type: boolean
disableUI:
type: boolean
required:
- disableCostEfficiency
- disableUI
type: object
required:
- sourceRef
type: object
Expand Down
Loading
Loading