Skip to content

Commit 1d2db5d

Browse files
committed
Fix config
fix deleted harbortoken.yaml
1 parent 9561c90 commit 1d2db5d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
- name: Setup nodeJS
157157
uses: actions/setup-node@v4
158158
with:
159-
node-version: 14
159+
node-version: 18
160160

161161
- name: Install the packages necessary for lint checking
162162
working-directory: ./qlkube

qlkube/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.3-alpine
1+
FROM node:18-alpine
22

33
RUN mkdir --parent /qlkube
44
RUN chown node:node /qlkube && chmod 770 /qlkube
@@ -13,6 +13,6 @@ RUN yarn install --production=true --frozen-lockfile
1313

1414
COPY src/*.js ./src/
1515

16-
ENV NODE_EXTRA_CA_CERTS /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
16+
ENV NODE_EXTRA_CA_CERTS=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
1717

1818
ENTRYPOINT [ "yarn", "start" ]

qlkube/deploy/qlkube/templates/harbortoken.yaml qlkube/deploy/qlkube/templates/secret-harbor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ metadata:
77
type: Opaque
88
stringData:
99
harbor_token.json: |
10-
{{ .Values.harborToken | toJson | ndent 4 }}
10+
{{ .Values.harborToken | toJson | indent 4 }}

0 commit comments

Comments
 (0)