Skip to content

Commit 64712ed

Browse files
committed
objectStore to store, remove local flag
1 parent 7e15253 commit 64712ed

File tree

4 files changed

+28
-31
lines changed

4 files changed

+28
-31
lines changed

helm/templates/ingestor-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
imagePullPolicy: {{ .Values.parseable.image.pullPolicy }}
4343
args:
4444
- /usr/bin/parseable
45-
- {{ .Values.parseable.objectStore }}
45+
- {{ .Values.parseable.store }}
4646
- --ingestor-endpoint=$(HOSTNAME).{{ include "parseable.fullname" . }}-ingestor-headless.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.parseable.highAvailability.ingestor.port }}
4747
env:
4848
{{- range $key, $value := .Values.parseable.highAvailability.ingestor.env }}

helm/templates/querier-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
imagePullPolicy: {{ .Values.parseable.image.pullPolicy }}
4646
args:
4747
- /usr/bin/parseable
48-
- {{ .Values.parseable.objectStore }}
48+
- {{ .Values.parseable.store }}
4949
env:
5050
- name: HOSTNAME
5151
valueFrom:

helm/templates/standalone-deployment.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ spec:
3636
imagePullPolicy: {{ .Values.parseable.image.pullPolicy }}
3737
# Uncomment to debug
3838
# command: [ "/bin/sh", "-c", "sleep 1000000" ]
39-
{{- if .Values.parseable.local }}
40-
args: ["/usr/bin/parseable", "local-store"]
41-
{{- else }}
42-
args: ["/usr/bin/parseable", {{ .Values.parseable.objectStore | quote }}]
43-
{{- end }}
39+
args: ["/usr/bin/parseable", {{ .Values.parseable.store | quote }}]
4440
env:
4541
- name: HOSTNAME
4642
valueFrom:

helm/values.yaml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ parseable:
33
repository: containers.parseable.com/parseable/parseable
44
tag: v1.5.5
55
pullPolicy: Always
6-
## Set to true if you want to deploy Parseable in local mode (store logs
7-
## on local mount point instead of S3 bucket)
8-
local: false
9-
## object store can be s3, blob
6+
## object store can be local, s3 or blob.
107
## local needs to be false if set to object store.
11-
objectStore: s3-store
8+
store: local
129
## Set to true if you want to deploy Parseable in a HA mode (multiple ingestors)
1310
## Please note that highAvailability is not supported in local mode
1411
highAvailability:
@@ -75,6 +72,10 @@ parseable:
7572
storageClass: ""
7673
accessMode: ReadWriteOnce
7774
size: 1Gi
75+
## comment out the secrets depending upon deployment option
76+
## localModeSecret if store is set to local
77+
## blobModeSecret if store is set to blob-store
78+
## s3ModeSecret if store is set to s3-store
7879
localModeSecret:
7980
- type: env
8081
name: parseable-env-secret
@@ -97,25 +98,25 @@ parseable:
9798
# - azr.account
9899
# - azr.container
99100
# - azr.url
100-
s3ModeSecret:
101-
- type: env
102-
name: parseable-env-secret
103-
prefix: P_
104-
keys:
105-
## Comment / uncomment the following lines as required
106-
# - tls.cert.path
107-
# - tls.key.path
108-
# - storage.upload.interval
109-
- addr
110-
- username
111-
- password
112-
- staging.dir
113-
- fs.dir
114-
- s3.url
115-
- s3.access.key
116-
- s3.secret.key
117-
- s3.bucket
118-
- s3.region
101+
# s3ModeSecret:
102+
# - type: env
103+
# name: parseable-env-secret
104+
# prefix: P_
105+
# keys:
106+
# ## Comment / uncomment the following lines as required
107+
# # - tls.cert.path
108+
# # - tls.key.path
109+
# # - storage.upload.interval
110+
# - addr
111+
# - username
112+
# - password
113+
# - staging.dir
114+
# - fs.dir
115+
# - s3.url
116+
# - s3.access.key
117+
# - s3.secret.key
118+
# - s3.bucket
119+
# - s3.region
119120
serviceAccount:
120121
create: true
121122
name: "parseable"

0 commit comments

Comments
 (0)