Skip to content

Commit 11118fe

Browse files
ci(release): Automated merge from release/v2.11.2 workflow
Release/v2.11.2
2 parents bcea672 + 763de48 commit 11118fe

18 files changed

Lines changed: 92 additions & 92 deletions

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ You can override the default image used by any service in
193193
```yaml
194194
services:
195195
fiftyone-app:
196-
image: voxel51/fiftyone-app-torch:v2.11.1
196+
image: voxel51/fiftyone-app-torch:v2.11.2
197197
```
198198

199199
## :rocket: Step 4: Initial Deployment

docker/common-services.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
fiftyone-app-common:
4-
image: voxel51/fiftyone-app:v2.11.1
4+
image: voxel51/fiftyone-app:v2.11.2
55
environment:
66
API_URL: ${API_URL}
77
FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE: ${FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE}
@@ -32,7 +32,7 @@ services:
3232
restart: always
3333

3434
teams-api-common:
35-
image: voxel51/fiftyone-teams-api:v2.11.1
35+
image: voxel51/fiftyone-teams-api:v2.11.2
3636
environment:
3737
API_EXTERNAL_URL: ${FIFTYONE_API_URI}
3838
CAS_BASE_URL: ${CAS_BASE_URL:-http://teams-cas:3000/cas/api}
@@ -61,13 +61,13 @@ services:
6161
restart: always
6262

6363
teams-app-common:
64-
image: voxel51/fiftyone-teams-app:v2.11.1
64+
image: voxel51/fiftyone-teams-app:v2.11.2
6565
environment:
6666
API_URL: ${API_URL}
6767
APP_USE_HTTPS: ${APP_USE_HTTPS:-true}
6868
FIFTYONE_API_URI: ${FIFTYONE_API_URI:-"Please contact your Admin for an API URI"}
6969
FIFTYONE_APP_ALLOW_MEDIA_EXPORT: ${FIFTYONE_APP_ALLOW_MEDIA_EXPORT:-true}
70-
FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION: 2.11.1
70+
FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION: 2.11.2
7171
FIFTYONE_AUTH_SECRET: ${FIFTYONE_AUTH_SECRET}
7272
FIFTYONE_SERVER_ADDRESS: ""
7373
FIFTYONE_SERVER_PATH_PREFIX: /api/proxy/fiftyone-teams
@@ -94,7 +94,7 @@ services:
9494
restart: always
9595

9696
teams-cas-common:
97-
image: voxel51/fiftyone-teams-cas:v2.11.1
97+
image: voxel51/fiftyone-teams-cas:v2.11.2
9898
environment:
9999
CAS_DATABASE_NAME: ${CAS_DATABASE_NAME:-cas}
100100
CAS_DEFAULT_USER_ROLE: ${CAS_DEFAULT_USER_ROLE:-GUEST}
@@ -129,7 +129,7 @@ services:
129129
read_only: true
130130

131131
teams-plugins-common:
132-
image: voxel51/fiftyone-app-torch:v2.11.1
132+
image: voxel51/fiftyone-app-torch:v2.11.2
133133
environment:
134134
API_URL: ${API_URL}
135135
FIFTYONE_AUTH_SECRET: ${FIFTYONE_AUTH_SECRET}
@@ -156,7 +156,7 @@ services:
156156
restart: always
157157

158158
teams-do-common:
159-
image: voxel51/fiftyone-teams-cv-full:v2.11.1
159+
image: voxel51/fiftyone-teams-cv-full:v2.11.2
160160
deploy:
161161
replicas: ${FIFTYONE_DELEGATED_OPERATOR_WORKER_REPLICAS:-3}
162162
command: >

docker/docs/configuring-gpu-workloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ services:
6565
service: teams-do-common
6666

6767
teams-do-with-gpu:
68-
image: voxel51/fiftyone-teams-cv-full:v2.11.1
68+
image: voxel51/fiftyone-teams-cv-full:v2.11.2
6969
command: >
7070
/bin/sh -c "fiftyone delegated launch -t remote -n 'teams-do-with-gpu'"
7171
environment:

docker/docs/upgrading.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ quickstart 0.21.2
7878

7979
### From FiftyOne Enterprise Version 2.0.0 and Later
8080

81-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
81+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
8282
1. Voxel51 recommends upgrading all FiftyOne Enterprise SDK users to FiftyOne Enterprise
83-
version 2.11.1
83+
version 2.11.2
8484
1. Login to the FiftyOne Enterprise UI
8585
1. To obtain the CLI command to install the FiftyOne SDK associated with
8686
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
@@ -121,7 +121,7 @@ To utilize the prior image, update your `common-services.yaml` similar to the be
121121

122122
```yaml
123123
teams-do-common:
124-
image: voxel51/fiftyone-app:v2.11.1
124+
image: voxel51/fiftyone-app:v2.11.2
125125
```
126126
127127
#### FiftyOne Enterprise v2.2+ Delegated Operator Changes
@@ -156,7 +156,7 @@ Additionally,
156156

157157
### From FiftyOne Enterprise Versions 1.6.0 to 1.7.1
158158

159-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
159+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
160160
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
161161
> 2.0 or beyond.
162162
>
@@ -191,15 +191,15 @@ Additionally,
191191
mv license.key "${LOCAL_LICENSE_FILE_DIR}/license"
192192
```
193193

194-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
195-
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.1
194+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
195+
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.2
196196
1. Login to the FiftyOne Enterprise UI
197197
1. To obtain the CLI command to install the FiftyOne SDK associated with
198198
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
199199
1. Upgrade all the datasets
200-
> **NOTE**: Any FiftyOne SDK less than 2.11.1
200+
> **NOTE**: Any FiftyOne SDK less than 2.11.2
201201
> will lose connectivity at this point.
202-
> Upgrading to `fiftyone==2.11.1` is required.
202+
> Upgrading to `fiftyone==2.11.2` is required.
203203

204204
```shell
205205
FIFTYONE_DATABASE_ADMIN=true fiftyone migrate --all
@@ -213,7 +213,7 @@ Additionally,
213213

214214
### From FiftyOne Enterprise Version 1.1.0 and Before Version 1.6.0
215215

216-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_
216+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_
217217
> your users to log in after the upgrade is complete.
218218
> This will interrupt active workflows in the FiftyOne Enterprise Hosted Web App.
219219
> You should coordinate this upgrade carefully with your end-users.
@@ -231,7 +231,7 @@ Additionally,
231231

232232
---
233233

234-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
234+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
235235
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
236236
> 2.0 or beyond.
237237
>
@@ -283,15 +283,15 @@ Additionally,
283283
unset FIFTYONE_DATABASE_ADMIN
284284
```
285285

286-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
287-
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.1
286+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
287+
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.2
288288
1. Login to the FiftyOne Enterprise UI
289289
1. To obtain the CLI command to install the FiftyOne SDK associated with
290290
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
291291
1. Upgrade all the datasets
292-
> **NOTE**: Any FiftyOne SDK less than 2.11.1
292+
> **NOTE**: Any FiftyOne SDK less than 2.11.2
293293
> will lose connectivity at this point.
294-
> Upgrading to `fiftyone==2.11.1` is required.
294+
> Upgrading to `fiftyone==2.11.2` is required.
295295

296296
```shell
297297
FIFTYONE_DATABASE_ADMIN=true fiftyone migrate --all
@@ -322,14 +322,14 @@ Additionally,
322322

323323
---
324324

325-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ your users to
325+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ your users to
326326
> log in after the upgrade is complete.
327327
> This will interrupt active workflows in the FiftyOne Enterprise Hosted Web App.
328328
> You should coordinate this upgrade carefully with your end-users.
329329

330330
---
331331

332-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
332+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
333333
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
334334
> 2.0 or beyond.
335335
>
@@ -360,13 +360,13 @@ Additionally,
360360
1. Update your web server routes to include routing
361361
`/cas/*` traffic to the `teams-cas` service.
362362
Please see our [example nginx configurations](../) for more information.
363-
1. [Upgrade to FiftyOne Enterprise v2.11.1](#upgrading-from-previous-versions)
363+
1. [Upgrade to FiftyOne Enterprise v2.11.2](#upgrading-from-previous-versions)
364364
with `FIFTYONE_DATABASE_ADMIN=true`
365365
(this is not the default for this release).
366366
> **NOTE**: FiftyOne SDK users will lose access to the FiftyOne
367-
> Enterprise Database at this step until they upgrade to `fiftyone==2.11.1`
367+
> Enterprise Database at this step until they upgrade to `fiftyone==2.11.2`
368368

369-
1. Upgrade your FiftyOne SDKs to version 2.11.1
369+
1. Upgrade your FiftyOne SDKs to version 2.11.2
370370
1. Login to the FiftyOne Enterprise UI
371371
1. To obtain the CLI command to install the FiftyOne SDK associated
372372
with your FiftyOne Enterprise version, navigate to

docs/configuring-on-demand-orchestrator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Configuring On-Demand Orchestrators
1616

17-
As of FiftyOne Enterprise v2.11.1, delegated operations can be run on-demand
17+
As of FiftyOne Enterprise v2.11.2, delegated operations can be run on-demand
1818
in select external compute platforms (orchestrators).
1919

2020
This is the list of supported orchestrators and their configuration guides:

docs/custom-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ With a Dockerfile like this, you could use the following commands to
4646
build, and publish, your image to your internal registry
4747

4848
```shell
49-
FIFTYONE_ENTERPRISE_VERSION=v2.11.1
49+
FIFTYONE_ENTERPRISE_VERSION=v2.11.2
5050
docker buildx build --push \
5151
--build-arg FIFTYONE_ENTERPRISE_IMAGE_NAME="voxel51/fiftyone-app:${FIFTYONE_ENTERPRISE_VERSION}" \
5252
-t your-internal-registry/fiftyone-app-internal:${FIFTYONE_ENTERPRISE_VERSION} .
@@ -63,7 +63,7 @@ After your custom plugins image is built, you can add it to your
6363
```yaml
6464
services:
6565
teams-plugins:
66-
image: your-internal-registry/fiftyone-app-internal:v2.11.1
66+
image: your-internal-registry/fiftyone-app-internal:v2.11.2
6767
```
6868
6969
Please see

docs/orchestrators/configuring-databricks-orchestrator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ w = WorkspaceClient()
5858
DBFS_PATH = "/FileStore/my_project/requirements.txt"
5959

6060
PYTHON_DEPENDENCIES = [
61-
"fiftyone==2.11.1", # use your FiftyOne version here
61+
"fiftyone==2.11.2", # use your FiftyOne version here
6262
"ultralytics",
6363
"torch",
6464
"transformers",

helm/docs/upgrading.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ quickstart 0.21.2
119119
120120
### From FiftyOne Enterprise Version 2.0.0 or Higher
121121
122-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
122+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
123123
1. Voxel51 recommends upgrading all FiftyOne Enterprise SDK users to FiftyOne Enterprise
124-
version 2.11.1
124+
version 2.11.2
125125
1. Login to the FiftyOne Enterprise UI
126126
1. To obtain the CLI command to install the FiftyOne SDK associated with
127127
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
@@ -308,7 +308,7 @@ For a full list of settings, please refer to the
308308
309309
### From FiftyOne Enterprise Versions 1.6.0 to 1.7.1
310310
311-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
311+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
312312
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
313313
> 2.0 or beyond.
314314
>
@@ -348,17 +348,17 @@ For a full list of settings, please refer to the
348348
fiftyone-license --from-file=license=./your-license-file
349349
```
350350
351-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
352-
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.1
351+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
352+
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.2
353353
1. Login to the FiftyOne Enterprise UI
354354
1. To obtain the CLI command to install the FiftyOne SDK associated with
355355
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
356356
357357
1. Upgrade all the datasets
358358
359-
> **NOTE**: Any FiftyOne SDK less than 2.11.1 will lose connectivity after
359+
> **NOTE**: Any FiftyOne SDK less than 2.11.2 will lose connectivity after
360360
> this point.
361-
> Upgrading all SDKs to `fiftyone==2.11.1` is recommended before migrating
361+
> Upgrading all SDKs to `fiftyone==2.11.2` is recommended before migrating
362362
> your database.
363363
364364
```shell
@@ -373,7 +373,7 @@ For a full list of settings, please refer to the
373373
374374
### From FiftyOne Enterprise Versions After 1.1.0 and Before Version 1.6.0
375375
376-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_
376+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_
377377
> your users to log in after the upgrade is complete.
378378
> This will interrupt active workflows in the FiftyOne Enterprise Hosted
379379
> Web App. You should coordinate this upgrade carefully with your
@@ -392,7 +392,7 @@ For a full list of settings, please refer to the
392392
393393
---
394394
395-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
395+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
396396
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
397397
> 2.0 or beyond.
398398
>
@@ -432,17 +432,17 @@ For a full list of settings, please refer to the
432432
1. `secret.fiftyone.fiftyoneAuthSecret` (or your deployment's equivalent)
433433
1. This sets the `FIFTYONE_AUTH_SECRET` environment variable
434434
in the appropriate service pods
435-
1. [Upgrade to FiftyOne Enterprise version 2.11.1](#upgrading-from-previous-versions)
436-
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.1
435+
1. [Upgrade to FiftyOne Enterprise version 2.11.2](#upgrading-from-previous-versions)
436+
1. Upgrade FiftyOne Enterprise SDK users to FiftyOne Enterprise version 2.11.2
437437
1. Login to the FiftyOne Enterprise UI
438438
1. To obtain the CLI command to install the FiftyOne SDK associated with
439439
your FiftyOne Enterprise version, navigate to `Account > Install FiftyOne`
440440
441441
1. Upgrade all the datasets
442442
443-
> **NOTE**: Any FiftyOne SDK less than 2.11.1 will lose connectivity after
443+
> **NOTE**: Any FiftyOne SDK less than 2.11.2 will lose connectivity after
444444
> this point.
445-
> Upgrading all SDKs to `fiftyone==2.11.1` is recommended before migrating
445+
> Upgrading all SDKs to `fiftyone==2.11.2` is recommended before migrating
446446
> your database.
447447
448448
```shell
@@ -474,14 +474,14 @@ For a full list of settings, please refer to the
474474
475475
---
476476
477-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_
477+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_
478478
> your users to log in after the upgrade is complete.
479479
> This will interrupt active workflows in the FiftyOne Enterprise Hosted Web App.
480480
> You should coordinate this upgrade carefully with your end-users.
481481
482482
---
483483
484-
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.1 _requires_ a license file.
484+
> **NOTE**: Upgrading to FiftyOne Enterprise v2.11.2 _requires_ a license file.
485485
> Please contact your Customer Success Team before upgrading to FiftyOne Enterprise
486486
> 2.0 or beyond.
487487
>
@@ -520,10 +520,10 @@ For a full list of settings, please refer to the
520520
fiftyone-license --from-file=license=./your-license-file
521521
```
522522
523-
1. [Upgrade to FiftyOne Enterprise v2.11.1](#upgrading-from-previous-versions)
523+
1. [Upgrade to FiftyOne Enterprise v2.11.2](#upgrading-from-previous-versions)
524524
> **NOTE**: At this step, FiftyOne SDK users will lose access to the
525-
> FiftyOne Enterprise Database until they upgrade to `fiftyone==2.11.1`
526-
1. Upgrade your FiftyOne SDKs to version 2.11.1
525+
> FiftyOne Enterprise Database until they upgrade to `fiftyone==2.11.2`
526+
1. Upgrade your FiftyOne SDKs to version 2.11.2
527527
1. Login to the FiftyOne Enterprise UI
528528
1. To obtain the CLI command to install the FiftyOne SDK associated
529529
with your FiftyOne Enterprise version, navigate to

helm/fiftyone-teams-app/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: |
66
FiftyOne Enterprise is the enterprise version of the open source [FiftyOne](https://github.com/voxel51/fiftyone) project.
77
The FiftyOne Enterprise Helm chart is the recommended way to install and configure FiftyOne Enterprise on Kubernetes.
88
type: application
9-
version: 2.11.1
10-
appVersion: "v2.11.1"
9+
version: 2.11.2
10+
appVersion: "v2.11.2"
1111
icon: https://voxel51.com/images/logo/voxel51-logo-horz-color-600dpi.png
1212
kubeVersion: ">=1.31-0"

helm/fiftyone-teams-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# fiftyone-teams-app
1616

1717
<!-- markdownlint-disable line-length -->
18-
![Version: 2.11.1](https://img.shields.io/badge/Version-2.11.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.11.1](https://img.shields.io/badge/AppVersion-v2.11.1-informational?style=flat-square)
18+
![Version: 2.11.2](https://img.shields.io/badge/Version-2.11.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.11.2](https://img.shields.io/badge/AppVersion-v2.11.2-informational?style=flat-square)
1919

2020
FiftyOne Enterprise is the enterprise version of the open source [FiftyOne](https://github.com/voxel51/fiftyone) project.
2121
The FiftyOne Enterprise Helm chart is the recommended way to install and configure FiftyOne Enterprise on Kubernetes.
@@ -757,7 +757,7 @@ follow
757757
| 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. |
758758
| teamsAppSettings.env.FIFTYONE_APP_ALLOW_MEDIA_EXPORT | bool | `true` | When `false`, disables media export options |
759759
| 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. |
760-
| teamsAppSettings.env.FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION | string | `"2.11.1"` | The recommended fiftyone SDK version that will be displayed in the install modal (i.e. `pip install ... fiftyone==0.11.0`). |
760+
| teamsAppSettings.env.FIFTYONE_APP_TEAMS_SDK_RECOMMENDED_VERSION | string | `"2.11.2"` | The recommended fiftyone SDK version that will be displayed in the install modal (i.e. `pip install ... fiftyone==0.11.0`). |
761761
| 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). |
762762
| teamsAppSettings.env.RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED | bool | `false` | Disable duplicate atom/selector key checking that generated false-positive errors. [Reference][recoil-env]. |
763763
| 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

Comments
 (0)