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
{{ message }}
This repository was archived by the owner on Nov 2, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -122,11 +122,15 @@ spec:
122
122
| affinity | No | [Affinity](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#affinity-v1-core) | Affinity settings for the workload pods |
123
123
| nodeSelector | No | map | NodeSelector for the workload pods. If this exists it will override the globalNodeSelector |
124
124
| tolerations | No | [Toleration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#toleration-v1-core) *array* | Tolerations for the workload. These will be combined with the globalTolerations (if any) |
125
-
| opensearch | No | [OpensearchClusterRef](#opensearchclusterref) | Reference to an existing OpensearchCluster to point the Dashboards deployment at |
125
+
| opensearch | No | [LocalObjectReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#localobjectreference-v1-core)| Reference to an existing OpensearchCluster to point the Dashboards deployment at. Must be in the same namespace |
126
+
| opensearchConfig | No | [OpensearchConfigSpec](#opensearchconfigspec)| Configuration for an external Opensearch cluster |
127
+
| tlsSecret | No | [LocalObjectReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#localobjectreference-v1-core)| A TLS secret containing the cert and key to use for Dashboards SSL. If the opensearch field is preset this isn't required as it will reuse the Opensearch HTTP CA to generate a cert |
126
128
127
-
#### OpensearchClusterRef
129
+
#### OpensearchConfigSpec
128
130
129
131
| Field | Required | Type | Description |
130
132
|:------|:---------|:-----|:------------|
131
-
| name | Yes | *string* | Name of the OpensearchCluster resource |
132
-
| namespace | No | *string* | Namespace of the OpensearchCluster resource. Defaults to the namespace of the Dashboards resource |
133
+
| url | Yes | *string* | Endpoint for the Opensearch cluster |
134
+
| username | Yes | *string* | Username to connect to the cluster with |
135
+
| passwordFrom | Yes | [SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#secretkeyselector-v1-core) | Secret key which contains the password for the cluster |
136
+
| verifySSL | No | *bool* | Whether to use strict SSL checking. Defaults to true |
0 commit comments