|
15 | 15 | # fiftyone-teams-app |
16 | 16 |
|
17 | 17 | <!-- markdownlint-disable line-length --> |
18 | | -   |
| 18 | +   |
19 | 19 |
|
20 | 20 | FiftyOne Enterprise is the enterprise version of the open source [FiftyOne](https://github.com/voxel51/fiftyone) project. |
21 | 21 | The FiftyOne Enterprise Helm chart is the recommended way to install and configure FiftyOne Enterprise on Kubernetes. |
@@ -316,6 +316,21 @@ helm repo update voxel51 |
316 | 316 |
|
317 | 317 | Finally, edit your `values.yaml` file and install FiftyOne Enterprise: |
318 | 318 |
|
| 319 | +> **NOTE**: This chart uses `namespace.name` from your `values.yaml` to set the |
| 320 | +> namespace for all chart resources. The Helm `--namespace` flag alone does |
| 321 | +> **not** control where resources are created. You **must** set `namespace.name` |
| 322 | +> in your `values.yaml` to match your target namespace. If deploying to a |
| 323 | +> namespace other than the default `fiftyone-teams`, add the following to your |
| 324 | +> `values.yaml`: |
| 325 | +> |
| 326 | +> ```yaml |
| 327 | +> namespace: |
| 328 | +> # Set to true to have the chart create the namespace, or false if it |
| 329 | +> # already exists |
| 330 | +> create: false |
| 331 | +> name: your-namespace-here |
| 332 | +> ``` |
| 333 | + |
319 | 334 | ```shell |
320 | 335 | helm install fiftyone-teams-app voxel51/fiftyone-teams-app \ |
321 | 336 | --namespace your-namespace-here \ |
@@ -1023,7 +1038,7 @@ If pods show unhealthy states (e.g., `0/1`, `CrashLoopBackOff`, `Pending`): |
1023 | 1038 | | teamsAppSettings.env.APP_USE_HTTPS | bool | `true` | Controls the protocol of the `teams-app`. Configure your ingress to match. When `true`, uses the https protocol. When `false`, uses the http protocol. | |
1024 | 1039 | | teamsAppSettings.env.FIFTYONE_APP_ALLOW_MEDIA_EXPORT | bool | `true` | When `false`, disables media export options | |
1025 | 1040 | | teamsAppSettings.env.FIFTYONE_APP_ANONYMOUS_ANALYTICS_ENABLED | bool | `true` | Controls whether anonymous analytics are captured for the application. Set to false to opt-out of anonymous analytics. | |
1026 | | -| teamsAppSettings.env.FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION | string | `"2.16.4"` | The recommended fiftyone SDK version that will be displayed in the install modal (i.e. `pip install ... fiftyone==0.11.0`). | |
| 1041 | +| teamsAppSettings.env.FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION | string | `"2.16.5"` | The recommended fiftyone SDK version that will be displayed in the install modal (i.e. `pip install ... fiftyone==0.11.0`). | |
1027 | 1042 | | teamsAppSettings.env.FIFTYONE_APP_THEME | string | `"dark"` | The default theme configuration. `dark`: Theme will be dark when user visits for the first time. `light`: Theme will be light theme when user visits for the first time. `always-dark`: Sets dark theme on each refresh (overrides user theme changes in the app). `always-light`: Sets light theme on each refresh (overrides user theme changes in the app). | |
1028 | 1043 | | teamsAppSettings.env.RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED | bool | `false` | Disable duplicate atom/selector key checking that generated false-positive errors. [Reference][recoil-env]. | |
1029 | 1044 | | teamsAppSettings.fiftyoneApiOverride | string | `""` | Overrides the `FIFTYONE_API_URI` environment variable. When set `FIFTYONE_API_URI` controls the value shown in the API Key Modal providing guidance for connecting to the FiftyOne Enterprise API. `FIFTYONE_API_URI` uses the value from apiSettings.dnsName if it is set, or uses the teamsAppSettings.dnsName | |
|
0 commit comments