Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/opensearch-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ A Helm chart for OpenSearch Cluster
| cluster.ingress.opensearch.enabled | bool | `false` | Enable ingress for Opensearch service |
| cluster.ingress.opensearch.hosts | list | `[]` | Opensearch Ingress hostnames |
| cluster.ingress.opensearch.tls | list | `[]` | Opensearch tls configuration |
| cluster.initHelper.image | string | `"docker.io/busybox"` | initHelper image |
| cluster.initHelper.imagePullPolicy | string | `"IfNotPresent"` | initHelper image pull policy |
| cluster.initHelper.imagePullSecrets | list | `[]` | initHelper image pull secret |
| cluster.initHelper.resources | object | `{}` | initHelper pod cpu and memory resources |
Expand Down
4 changes: 3 additions & 1 deletion charts/opensearch-cluster/templates/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ spec:
serviceName: {{ .serviceName | default $clusterName }}
{{- end }}
{{- with .Values.cluster.initHelper }}
initHelper: {{ . | toYaml | nindent 4 }}
initHelper:
{{- omit . "image" | toYaml | nindent 4 }}
Copy link
Contributor Author

@YeonghyeonKO YeonghyeonKO Jun 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems enough to add image field like spec.dashboards for now, but it anyone has a better idea, feel free to share your suggestion.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@YeonghyeonKO thanks for the PR!
I feel this should be sufficient.

image: {{ .image }}:{{ .version }}
{{- end }}
{{- with .Values.cluster.nodePools }}
nodePools: {{ . | toYaml | nindent 4 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/opensearch-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ cluster:

# initHelper configuration
initHelper:
# -- initHelper image
image: docker.io/busybox
Copy link
Contributor Author

@YeonghyeonKO YeonghyeonKO Jul 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


# -- initHelper image pull policy
imagePullPolicy: "IfNotPresent"

Expand Down