11# Recommended Post-Installation Configuration
22
3- After completing the base Helm installation, we strongly recommend enabling the
3+ After completing the base Helm installation, we recommend enabling the
44following features for a production-ready FiftyOne Enterprise deployment:
55
661 . [ Dedicated Plugins Mode] ( #dedicated-plugins-mode )
771 . [ Delegated Operators] ( #delegated-operators )
881 . [ GPU Workloads (Optional)] ( #gpu-workloads-optional )
99
10- The default installation uses ** builtin-only plugins** and has ** no delegated
11- operator workers** . While this is sufficient to get started, it limits the
12- ability to install custom plugins and run long-running or compute-heavy tasks
13- in the background.
10+ The default installation uses ** built-in plugins** and has ** no delegated
11+ operator workers** . While sufficient to get started, it limits the ability to
12+ install custom plugins and tasks ( run long-running or compute-heavy) in the
13+ background.
1414
1515> ** Note:** Steps 1 and 2 require shared storage (a PersistentVolumeClaim).
1616> See [ Prerequisites] ( #prerequisites-shared-storage ) before proceeding.
@@ -35,7 +35,7 @@ The examples below assume:
3535
3636## Dedicated Plugins Mode
3737
38- By default, plugins run inside the ` fiftyone-app ` pod (builtin- only mode).
38+ By default, plugins run inside the ` fiftyone-app ` pod (built-in only mode).
3939We recommend enabling ** dedicated plugins mode** , which runs plugins in their
4040own ` teams-plugins ` pod. This provides:
4141
@@ -51,7 +51,7 @@ There are three plugin modes available:
5151
5252| Mode | Description |
5353| --- | --- |
54- | Builtin Only (default) | Only builtin plugins shipped with FiftyOne Enterprise |
54+ | Built-in Only (default) | Only built-in plugins shipped with FiftyOne Enterprise |
5555| Shared | Custom plugins run inside ` fiftyone-app ` — may starve the app |
5656| ** Dedicated (recommended)** | Custom plugins run in a dedicated ` teams-plugins ` pod |
5757
@@ -96,9 +96,9 @@ computing embeddings, running model evaluations, importing datasets, or
9696annotation workflows — to be scheduled from the FiftyOne UI and executed in
9797the background on dedicated compute workers.
9898
99- > ** Note:** If you are using builtin- only plugin mode, omit the PVC volume
99+ > ** Note:** If you are using built-in only plugin mode, omit the PVC volume
100100> mount from the configuration below. The ` teamsDo ` pod will only be able to
101- > execute builtin operators.
101+ > execute built-in operators.
102102
103103To enable delegated operators with dedicated plugins, add the following to
104104your ` values.yaml ` :
@@ -212,7 +212,7 @@ delegatedOperatorDeployments:
212212 - name : plugins-vol
213213 mountPath : /opt/plugins
214214
215- teamsDocpu :
215+ teamsDoCpu :
216216 replicaCount : 2
217217 env :
218218 FIFTYONE_PLUGINS_DIR : /opt/plugins
@@ -276,7 +276,7 @@ Once dedicated plugins are enabled, you can install community plugins from the
276276[FiftyOne Plugin Library](https://github.com/voxel51/fiftyone-plugins) or
277277the [FiftyOne Docs](https://docs.voxel51.com/plugins/index.html).
278278
279- Some recommended plugins to get started :
279+ We recommend starting with these plugins :
280280
281281- [`@voxel51/brain`](https://github.com/voxel51/fiftyone-plugins/tree/main/plugins/brain)
282282 — compute embeddings and similarity indexes
@@ -287,6 +287,5 @@ Some recommended plugins to get started:
287287- [`@voxel51/zoo`](https://github.com/voxel51/fiftyone-plugins/tree/main/plugins/zoo)
288288 — access the FiftyOne Model Zoo
289289
290- To use plugins with custom dependencies (e.g. `torch`, `transformers`), build
291- and use
290+ To use plugins with custom dependencies (e.g. `transformers`), build and use
292291[Custom Plugin Images](https://github.com/voxel51/fiftyone-teams-app-deploy/blob/main/docs/custom-plugins.md).
0 commit comments