Skip to content

Commit

Permalink
feat: ML on hot if ML count is zero
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-lsd committed Jul 19, 2024
1 parent bb65b10 commit 08bdfdf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/lsdmop/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: lsdmop
version: "4.7.4"
version: "4.7.5"
appVersion: "1.0.2"
# Disabling kubeVersion because GKE is dumb
# kubeVersion: ">=v1.11.0"
Expand Down
4 changes: 4 additions & 0 deletions charts/lsdmop/templates/elastic.es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ spec:
- config:
node.store.allow_mmap: false
#path.repo: /usr/share/elasticsearch/snapshots
{{- if eq .Values.lsdmop.elastic.cluster.ml.count 0}}
node.roles: ["master", "data_hot", "data", "transform", "remote_cluster_client", "ingest", "ml"]
{{ else }}
node.roles: ["master", "data_hot", "data", "transform", "remote_cluster_client", "ingest"]
{{- end}}
node.attr.data: hot
http.max_content_length: 100mb
http.compression: true
Expand Down

0 comments on commit 08bdfdf

Please sign in to comment.