You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -825,6 +825,7 @@ If containers show unhealthy states (e.g., `Restarting`, `Exited`):
825
825
| `FIFTYONE_APP_THEME` | The default theme configuration for your FiftyOne Enterprise application as described [in our documentation](https://docs.voxel51.com/user_guide/config.html#configuring-the-app) | No |
826
826
| `FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE` | Controls whether Query Performance mode is enabled by default for every dataset for the application. Set to false to set default mode to off. | No |
827
827
| `FIFTYONE_APP_ENABLE_QUERY_PERFORMANCE` | Controls whether Query Performance mode is enabled for the application. Set to false to disable Query Performance mode for entire application. | No |
828
+
| `FIFTYONE_APP_DEPLOYMENT_CHARACTERISTICS` | Deployment characteristics for the `teams-app` | No |
828
829
| `FIFTYONE_API_URI` | The URI to be displayed in the `Install FiftyOne` Modal and `API Keys` configuration screens | No |
829
830
| `FIFTYONE_AUTH_SECRET` | The secret used for services to authenticate with `teams-cas`; also used to login to the SuperAdmin UI | Yes |
830
831
| `FIFTYONE_DATABASE_NAME` | The MongoDB Database that `fiftyone-app`, `teams-api`, and `teams-app` use for FiftyOne Enterprise dataset metadata; the default is `fiftyone` | Yes |
Copy file name to clipboardExpand all lines: helm/fiftyone-teams-app/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1038,6 +1038,7 @@ If pods show unhealthy states (e.g., `0/1`, `CrashLoopBackOff`, `Pending`):
1038
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. |
1039
1039
| teamsAppSettings.env.FIFTYONE_APP_ALLOW_MEDIA_EXPORT | bool | `true` | When `false`, disables media export options |
1040
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. |
1041
+
| teamsAppSettings.env.FIFTYONE_APP_DEPLOYMENT_CHARACTERISTICS | string | `"kubernetes"` | Deployment characteristics for the `teams-app`. `kubernetes`: Indicates the app is running in a Kubernetes environment. `docker`: Indicates the app is running in a Docker environment. `kubernetes,managed`: Indicates the app is running in a managed Kubernetes environment |
1041
1042
| teamsAppSettings.env.FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION | string | `"2.17.1"` | The recommended fiftyone SDK version that will be displayed in the install modal (i.e. `pip install ... fiftyone==0.11.0`). |
1042
1043
| 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). |
Copy file name to clipboardExpand all lines: helm/fiftyone-teams-app/values.schema.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3672,6 +3672,13 @@
3672
3672
"boolean"
3673
3673
]
3674
3674
},
3675
+
"FIFTYONE_APP_DEPLOYMENT_CHARACTERISTICS": {
3676
+
"default": "kubernetes",
3677
+
"description": "Deployment characteristics for the `teams-app`.\n`kubernetes`: Indicates the app is running in a Kubernetes environment.\n`docker`: Indicates the app is running in a Docker environment.\n`kubernetes,managed`: Indicates the app is running in a managed Kubernetes environment",
0 commit comments