File tree 9 files changed +45
-14
lines changed
9 files changed +45
-14
lines changed Original file line number Diff line number Diff line change 75
75
- uses : actions-rs/cargo@v1
76
76
with :
77
77
command : clippy
78
- args : -- -D warnings
78
+ args : -- -D warnings
Original file line number Diff line number Diff line change @@ -18,9 +18,23 @@ FROM rust:alpine3.14 AS compiler
18
18
19
19
RUN apk add -q --update-cache --no-cache build-base openssl-dev
20
20
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
+
21
34
WORKDIR /parseable
22
35
23
- COPY . .
36
+ COPY . .
37
+
24
38
RUN set -eux; \
25
39
apkArch="$(apk --print-arch)" ; \
26
40
if [ "$apkArch" = "aarch64" ]; then \
@@ -36,11 +50,16 @@ RUN apk update --quiet \
36
50
37
51
# add parseable to the `/bin` so you can run it from anywhere and it's easy
38
52
# 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
40
55
41
56
# This directory should hold all the data related to parseable so we're going
42
57
# 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
44
63
45
64
EXPOSE 5678/tcp
46
65
Original file line number Diff line number Diff line change 6
6
# Run server
7
7
run :
8
8
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
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ description: A Helm chart for Kubernetes
4
4
5
5
type : application
6
6
7
- version : 0.1.0
7
+ version : " 0.0.1 "
8
8
9
- appVersion : " 1.16.0 "
9
+ appVersion : " 0.0.1 "
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 10
10
- port : {{ .Values.service.port }}
11
11
targetPort : 5678
12
12
protocol : TCP
13
- name : 5678
13
+ name : parseable
14
14
selector :
15
15
{{- include "parseable.selectorLabels" . | nindent 4 }}
File renamed without changes.
Original file line number Diff line number Diff line change 1
-
2
-
3
1
replicaCount : 1
4
2
5
3
image :
@@ -14,11 +12,11 @@ parseable:
14
12
P_S3_URL : " "
15
13
P_S3_ACCESS_KEY : " "
16
14
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 "
19
17
P_S3_BUCKET : " "
20
- P_USERNAME : " "
21
- P_PASSWORD : " "
18
+ # P_USERNAME: ""
19
+ # P_PASSWORD: ""
22
20
23
21
imagePullSecrets : []
24
22
nameOverride : " "
@@ -39,7 +37,7 @@ securityContext: {}
39
37
40
38
service :
41
39
type : ClusterIP
42
- port : 5678
40
+ port : " 5678"
43
41
44
42
resources : {}
45
43
# cpu: 100m
You can’t perform that action at this time.
0 commit comments