Skip to content

Commit 2cf070c

Browse files
authored
Update Parseable Helm Chart (#57)
1 parent 28e8884 commit 2cf070c

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

1616
# Compile
17-
FROM rust:alpine3.14 AS compiler
17+
FROM rust:1.63-alpine AS compiler
1818

1919
RUN apk add -q --update-cache --no-cache build-base openssl-dev
2020

helm/parseable/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: parseable
33
description: Helm chart for Parseable Server
44
type: application
55
version: 0.0.1
6-
AppVersion: ""
6+
AppVersion: "sha-b6d9366"

helm/parseable/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
resources:
4242
{{- toYaml .Values.parseable.resources | nindent 12 }}
4343
volumeMounts:
44-
- mountPath: "/cache"
44+
- mountPath: "/parseable/cache"
4545
name: cache-volume
4646
volumes:
4747
- name: cache-volume

helm/parseable/values.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ parseable:
99
P_TLS_CERT_PATH: ""
1010
P_LOCAL_STORAGE: "data"
1111
P_STORAGE_UPLOAD_INTERVAL: "60"
12-
P_S3_URL: ""
13-
P_S3_ACCESS_KEY: ""
14-
P_S3_SECRET_KEY: ""
15-
P_S3_REGION: ""
16-
P_S3_BUCKET: ""
12+
RUST_LOG: "parseable=info"
13+
# By default parseable uses demo env digital ocean spaces
14+
#P_S3_URL: ""
15+
#P_S3_ACCESS_KEY: ""
16+
#P_S3_SECRET_KEY: ""
17+
#P_S3_REGION: ""
18+
#P_S3_BUCKET: ""
1719
P_USERNAME: "parseable"
1820
P_PASSWORD: "parseable"
1921
nameOverride: ""
@@ -32,9 +34,11 @@ parseable:
3234
requests:
3335
cpu: 100m
3436
memory: 128Mi
37+
securityContext:
38+
runAsUser: 10001
39+
allowPrivilegeEscalation: false
3540
podAnnotations: {}
3641
podSecurityContext: {}
37-
securityContext: {}
3842
nodeSelector: {}
3943
affinity: {}
4044
tolerations: []

0 commit comments

Comments
 (0)