|
80 | 80 | default: cluster.local |
81 | 81 | description: Cluster Domain - used for DNS |
82 | 82 | type: string |
| 83 | + clusterPreferredEndpointType: |
| 84 | + default: hostname |
| 85 | + description: Which endpoint is shown as the preferred endpoint valid |
| 86 | + values are 'ip', 'hostname', or 'unknown-endpoint'. |
| 87 | + type: string |
83 | 88 | exporterImage: |
84 | 89 | description: Exporter Image to use |
85 | 90 | type: string |
@@ -211,6 +216,11 @@ spec: |
211 | 216 | image: |
212 | 217 | description: Image to use |
213 | 218 | type: string |
| 219 | + nodeSelector: |
| 220 | + additionalProperties: |
| 221 | + type: string |
| 222 | + description: Node Selector |
| 223 | + type: object |
214 | 224 | nodes: |
215 | 225 | default: 3 |
216 | 226 | description: Number of shards |
@@ -722,6 +732,45 @@ spec: |
722 | 732 | default: false |
723 | 733 | description: TLS Support |
724 | 734 | type: boolean |
| 735 | + tolerations: |
| 736 | + description: Tolerations |
| 737 | + items: |
| 738 | + description: |- |
| 739 | + The pod this Toleration is attached to tolerates any taint that matches |
| 740 | + the triple <key,value,effect> using the matching operator <operator>. |
| 741 | + properties: |
| 742 | + effect: |
| 743 | + description: |- |
| 744 | + Effect indicates the taint effect to match. Empty means match all taint effects. |
| 745 | + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. |
| 746 | + type: string |
| 747 | + key: |
| 748 | + description: |- |
| 749 | + Key is the taint key that the toleration applies to. Empty means match all taint keys. |
| 750 | + If the key is empty, operator must be Exists; this combination means to match all values and all keys. |
| 751 | + type: string |
| 752 | + operator: |
| 753 | + description: |- |
| 754 | + Operator represents a key's relationship to the value. |
| 755 | + Valid operators are Exists and Equal. Defaults to Equal. |
| 756 | + Exists is equivalent to wildcard for value, so that a pod can |
| 757 | + tolerate all taints of a particular category. |
| 758 | + type: string |
| 759 | + tolerationSeconds: |
| 760 | + description: |- |
| 761 | + TolerationSeconds represents the period of time the toleration (which must be |
| 762 | + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, |
| 763 | + it is not set, which means tolerate the taint forever (do not evict). Zero and |
| 764 | + negative values will be treated as 0 (evict immediately) by the system. |
| 765 | + format: int64 |
| 766 | + type: integer |
| 767 | + value: |
| 768 | + description: |- |
| 769 | + Value is the taint value the toleration matches to. |
| 770 | + If the operator is Exists, the value should be empty, otherwise just a regular string. |
| 771 | + type: string |
| 772 | + type: object |
| 773 | + type: array |
725 | 774 | volumePermissions: |
726 | 775 | default: false |
727 | 776 | description: Turn on an init container to set permissions on the persistent |
|
0 commit comments