Skip to content

Commit 058ceb1

Browse files
AdheipSinghnitisht
authored andcommitted
Fix minor helm chart issues (#134)
Also update Dockerfile to use non root users Part of #96
1 parent a53c929 commit 058ceb1

File tree

9 files changed

+45
-14
lines changed

9 files changed

+45
-14
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ jobs:
7575
- uses: actions-rs/cargo@v1
7676
with:
7777
command: clippy
78-
args: -- -D warnings
78+
args: -- -D warnings

Dockerfile

+22-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,23 @@ FROM rust:alpine3.14 AS compiler
1818

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

21+
# Create appuser
22+
ENV USER=parseable
23+
ENV UID=10001
24+
25+
RUN adduser \
26+
--disabled-password \
27+
--gecos "" \
28+
--home "/nonexistent" \
29+
--shell "/sbin/nologin" \
30+
--no-create-home \
31+
--uid "${UID}" \
32+
"${USER}"
33+
2134
WORKDIR /parseable
2235

23-
COPY . .
36+
COPY . .
37+
2438
RUN set -eux; \
2539
apkArch="$(apk --print-arch)"; \
2640
if [ "$apkArch" = "aarch64" ]; then \
@@ -36,11 +50,16 @@ RUN apk update --quiet \
3650

3751
# add parseable to the `/bin` so you can run it from anywhere and it's easy
3852
# to find.
39-
COPY --from=compiler /parseable/target/release/parseable /bin/parseable
53+
COPY --from=compiler /etc/passwd /etc/passwd
54+
COPY --from=compiler /etc/group /etc/group
4055

4156
# This directory should hold all the data related to parseable so we're going
4257
# to move our PWD in there.
43-
WORKDIR /parseable/data
58+
WORKDIR /parseable
59+
60+
COPY --from=compiler /parseable/target/release/parseable /bin/parseable
61+
62+
USER parseable:parseable
4463

4564
EXPOSE 5678/tcp
4665

Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,17 @@ fmt:
66
# Run server
77
run:
88
cd server && cargo run
9+
10+
# Helm template
11+
template:
12+
helm template parseable \
13+
helm/parseable \
14+
-f helm/parseable/values.yaml
15+
16+
# Helm Upgrade
17+
upgrade:
18+
helm upgrade --install \
19+
parseable --namespace parseable \
20+
--create-namespace \
21+
helm/parseable \
22+
-f helm/parseable/values.yaml

helm/Chart.yaml helm/parseable/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ description: A Helm chart for Kubernetes
44

55
type: application
66

7-
version: 0.1.0
7+
version: "0.0.1"
88

9-
appVersion: "1.16.0"
9+
appVersion: "0.0.1"
File renamed without changes.
File renamed without changes.

helm/templates/service.yaml helm/parseable/templates/service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ spec:
1010
- port: {{ .Values.service.port }}
1111
targetPort: 5678
1212
protocol: TCP
13-
name: 5678
13+
name: parseable
1414
selector:
1515
{{- include "parseable.selectorLabels" . | nindent 4 }}

helm/values.yaml helm/parseable/values.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
replicaCount: 1
42

53
image:
@@ -14,11 +12,11 @@ parseable:
1412
P_S3_URL: ""
1513
P_S3_ACCESS_KEY: ""
1614
P_S3_SECRET_KEY: ""
17-
P_S3_REGION: ""
18-
P_STORAGE_SYNC_DURATION: ""
15+
P_S3_REGION: "us-east-1"
16+
P_STORAGE_SYNC_DURATION: "600"
1917
P_S3_BUCKET: ""
20-
P_USERNAME: ""
21-
P_PASSWORD: ""
18+
# P_USERNAME: ""
19+
# P_PASSWORD: ""
2220

2321
imagePullSecrets: []
2422
nameOverride: ""
@@ -39,7 +37,7 @@ securityContext: {}
3937

4038
service:
4139
type: ClusterIP
42-
port: 5678
40+
port: "5678"
4341

4442
resources: {}
4543
# cpu: 100m

0 commit comments

Comments
 (0)