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
2 changes: 2 additions & 0 deletions apis/installer/v1alpha1/ace_ace_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ type AceOpenfga struct {
// shadows the inlined OpenfgaSpec.Datastore so that ace/values.yaml only
// carries these knobs instead of the full upstream datastore schema.
type AceOpenfgaDatastore struct {
// +optional
Engine string `json:"engine"`
// +optional
MaxOpenConns string `json:"maxOpenConns,omitempty"`
// +optional
Expand Down
1 change: 1 addition & 0 deletions charts/ace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ The following table lists the configurable parameters of the `ace` chart and the
| s3proxy.enabled | | <code>false</code> |
| openfga.enabled | | <code>false</code> |
| openfga.datastoreURI | | <code>""</code> |
| openfga.datastore.engine | | <code>postgres</code> |
| openfga.datastore.maxOpenConns | | <code>"20"</code> |
| openfga.datastore.connMaxIdleTime | | <code>"10m"</code> |
| pgoutbox.enabled | | <code>false</code> |
Expand Down
1 change: 1 addition & 0 deletions charts/ace/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ openfga:
enabled: false
datastoreURI: ""
datastore:
engine: postgres
maxOpenConns: "20"
connMaxIdleTime: "10m"
## configured in lib-selfhost
Expand Down
Loading