diff --git a/Dockerfile b/Dockerfile index 118ce35e7..0aed7ab4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # along with this program. If not, see . # Compile -FROM rust:alpine3.14 AS compiler +FROM rust:1.63-alpine AS compiler RUN apk add -q --update-cache --no-cache build-base openssl-dev diff --git a/helm/parseable/Chart.yaml b/helm/parseable/Chart.yaml index fd209c91f..3d19217f2 100644 --- a/helm/parseable/Chart.yaml +++ b/helm/parseable/Chart.yaml @@ -3,4 +3,4 @@ name: parseable description: Helm chart for Parseable Server type: application version: 0.0.1 -AppVersion: "" +AppVersion: "sha-b6d9366" diff --git a/helm/parseable/templates/deployment.yaml b/helm/parseable/templates/deployment.yaml index c67da6dec..c45922e4a 100644 --- a/helm/parseable/templates/deployment.yaml +++ b/helm/parseable/templates/deployment.yaml @@ -41,7 +41,7 @@ spec: resources: {{- toYaml .Values.parseable.resources | nindent 12 }} volumeMounts: - - mountPath: "/cache" + - mountPath: "/parseable/cache" name: cache-volume volumes: - name: cache-volume diff --git a/helm/parseable/values.yaml b/helm/parseable/values.yaml index dd0ebfc01..5cb12edf7 100644 --- a/helm/parseable/values.yaml +++ b/helm/parseable/values.yaml @@ -9,11 +9,13 @@ parseable: P_TLS_CERT_PATH: "" P_LOCAL_STORAGE: "data" P_STORAGE_UPLOAD_INTERVAL: "60" - P_S3_URL: "" - P_S3_ACCESS_KEY: "" - P_S3_SECRET_KEY: "" - P_S3_REGION: "" - P_S3_BUCKET: "" + RUST_LOG: "parseable=info" + # By default parseable uses demo env digital ocean spaces + #P_S3_URL: "" + #P_S3_ACCESS_KEY: "" + #P_S3_SECRET_KEY: "" + #P_S3_REGION: "" + #P_S3_BUCKET: "" P_USERNAME: "parseable" P_PASSWORD: "parseable" nameOverride: "" @@ -32,9 +34,11 @@ parseable: requests: cpu: 100m memory: 128Mi + securityContext: + runAsUser: 10001 + allowPrivilegeEscalation: false podAnnotations: {} podSecurityContext: {} - securityContext: {} nodeSelector: {} affinity: {} tolerations: []