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: charts/dremio_v2/docs/Values-Reference.md
+69-2Lines changed: 69 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -235,6 +235,24 @@ extraInitContainers: |
235
235
[...]
236
236
```
237
237
238
+
#### `extraContainers`
239
+
240
+
Type: String
241
+
242
+
By default, this value is not set.
243
+
244
+
This value controls additional `containers` ("sidecars") that run alongside the standard containers in Dremio's pods. The value specified here may reference values specified in the built-in `Values` object in Helm.
245
+
246
+
For example, to have a `container` with the Dremio image, you can specify the following:
More Info: Refer to the [`extraInitContainers`](#extrainitcontainers) section of this reference.
574
592
593
+
#### `coordinator.extraContainers`
594
+
595
+
Type: String
596
+
597
+
By default, this value is not set. If this value is omitted or set to an empty string, this value will be inherited from the top level `extraContainers`.
598
+
599
+
This value controls additional `containers` ("sidecars") that run alongside the standard containers in Dremio's coordinator pods. The value specified here may reference values specified in the `values.yaml` file.
600
+
601
+
For example, to have a `container` with the Dremio image, you can specify the following:
More Info: Refer to the [`extraContainers`](#extracontainers) section of this reference.
614
+
575
615
#### `coordinator.extraVolumes`
576
616
577
617
Type: Array
@@ -818,7 +858,7 @@ This value controls additional parameters passed to the Dremio process.
818
858
For example, to pass an additional system property to the java process, you can specify the following:
819
859
820
860
```yaml
821
-
coordinator:
861
+
executor:
822
862
[...]
823
863
extraStartParams: >-
824
864
-DsomeTestKey=someValue
@@ -838,7 +878,7 @@ This value controls additional `initContainers` that are started as part of the
838
878
For example, to have an `initContainer` with the Dremio image, you can specify the following:
839
879
840
880
```yaml
841
-
coordinator:
881
+
executor:
842
882
[...]
843
883
extraInitContainers: |
844
884
- name: dremio-hello-world
@@ -849,6 +889,28 @@ coordinator:
849
889
850
890
More Info: Refer to the [`extraInitContainers`](#extrainitcontainers) section of this reference.
851
891
892
+
#### `executor.extraContainers`
893
+
894
+
Type: String
895
+
896
+
By default, this value is not set. If this value is omitted or set to an empty string, this value will be inherited from the top level `extraContainers`.
897
+
898
+
This value controls additional `containers` ("sidecars") that run alongside the standard containers in Dremio's executor pods. The value specified here may reference values specified in the `values.yaml` file.
899
+
900
+
For example, to have a `container` with the Dremio image, you can specify the following:
0 commit comments