Skip to content
Open
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
29 changes: 17 additions & 12 deletions apis/installer/v1alpha1/openfga_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,18 +175,23 @@ type OpenfgaTrace struct {
}

type OpenfgaDatastore struct {
Engine string `json:"engine"`
Uri *string `json:"uri"`
UriSecret *string `json:"uriSecret"`
MaxCacheSize *string `json:"maxCacheSize"`
MaxOpenConns *string `json:"maxOpenConns"`
MaxIdleConns *string `json:"maxIdleConns"`
ConnMaxIdleTime *string `json:"connMaxIdleTime"`
ConnMaxLifetime *string `json:"connMaxLifetime"`
ApplyMigrations bool `json:"applyMigrations"`
WaitForMigrations bool `json:"waitForMigrations"`
MigrationType string `json:"migrationType"`
Migrations OpenfgaMigrations `json:"migrations"`
Engine string `json:"engine"`
Uri *string `json:"uri"`
UriSecret *string `json:"uriSecret"`
MaxCacheSize *string `json:"maxCacheSize"`
MaxOpenConns *string `json:"maxOpenConns"`
MaxIdleConns *string `json:"maxIdleConns"`
ConnMaxIdleTime *string `json:"connMaxIdleTime"`
ConnMaxLifetime *string `json:"connMaxLifetime"`
ApplyMigrations bool `json:"applyMigrations"`
WaitForMigrations bool `json:"waitForMigrations"`
MigrationType string `json:"migrationType"`
Metrics *OpenfgaDatastoreMetrics `json:"metrics,omitempty"`
Migrations OpenfgaMigrations `json:"migrations"`
}

type OpenfgaDatastoreMetrics struct {
Enabled bool `json:"enabled"`
}

type OpenfgaMigrations struct {
Expand Down
20 changes: 20 additions & 0 deletions apis/installer/v1alpha1/zz_generated.deepcopy.go

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

7 changes: 5 additions & 2 deletions charts/ace/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ dependencies:
- name: outbox-syncer
repository: file://../outbox-syncer
version: v2025.10.17
digest: sha256:742ed65c84f7c0a6144ab4430b67670b70812c54a0cf9cc38482a90b9e381d82
generated: "2025-10-21T04:14:39.74993423Z"
- name: platform-grafana-dashboards
repository: file://../platform-grafana-dashboards
version: v2025.10.17
digest: sha256:45929f046dd2f5c0bdeba06d48912bffb0e2454310756e279a56435d36e88c57
generated: "2025-10-24T11:47:23.289959808+06:00"
7 changes: 7 additions & 0 deletions charts/ace/values.openapiv3_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10774,6 +10774,13 @@ properties:
type: string
maxOpenConns:
type: string
metrics:
properties:
enabled:
type: boolean
required:
- enabled
type: object
migrationType:
type: string
migrations:
Expand Down
4 changes: 2 additions & 2 deletions charts/platform-grafana-dashboards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The following table lists the configurable parameters of the `platform-grafana-d
|---------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| nameOverride | Overrides name template | <code>""</code> |
| fullnameOverride | Overrides fullname template | <code>""</code> |
| resources | List of Platform resources for which dashboards will be applied | <code>["nats"]</code> |
| resources | List of Platform resources for which dashboards will be applied | <code>["nats","openfga"]</code> |
| dashboard.folderID | ID of Grafana folder where these dashboards will be applied | <code>0</code> |
| dashboard.overwrite | If true, dashboard with matching uid will be overwritten | <code>true</code> |
| dashboard.templatize.title | If true, datasource will be prefixed to dashboard name | <code>false</code> |
Expand Down Expand Up @@ -82,7 +82,7 @@ The following table lists the configurable parameters of the `platform-grafana-d
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```bash
$ helm upgrade -i platform-grafana-dashboards appscode/platform-grafana-dashboards -n ace --create-namespace --version=v2025.10.17 --set resources=["nats"]
$ helm upgrade -i platform-grafana-dashboards appscode/platform-grafana-dashboards -n ace --create-namespace --version=v2025.10.17 --set resources=["nats","openfga"]
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1133,8 +1133,8 @@
"allValue": "\".+\"",
"current": {
"selected": false,
"text": "demo",
"value": "demo"
"text": "{{ .Release.Namespace }}",
"value": "{{ .Release.Namespace }}"
},
"datasource": "${datasource}",
"description": null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -928,8 +928,8 @@
"allValue": "\".+\"",
"current": {
"selected": false,
"text": "demo",
"value": "demo"
"text": "{{ .Release.Namespace }}",
"value": "{{ .Release.Namespace }}"
},
"datasource": "${datasource}",
"description": null,
Expand Down
Loading