File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,5 @@ eks-cluster.yaml
13
13
.git
14
14
.husky
15
15
.github
16
+
17
+ config.json
Original file line number Diff line number Diff line change @@ -17,3 +17,5 @@ gitpod-ingress.yaml
17
17
.kubeconfig *
18
18
19
19
logs
20
+
21
+ config.json
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ SHELL=/bin/bash -o pipefail -o errexit
5
5
6
6
IMG =ghcr.io/gitpod-io/gitpod-eks-guide:latest
7
7
8
+ # load .env file
9
+ ifneq (,$(wildcard ./.env) )
10
+ include .env
11
+ export
12
+ endif
13
+
8
14
build : # # Build docker image containing the required tools for the installation
9
15
@docker build --quiet . -t ${IMG}
10
16
@mkdir -p ${PWD} /logs
@@ -13,6 +19,7 @@ DOCKER_RUN_CMD = docker run -it \
13
19
--env-file ${PWD}/.env \
14
20
--env NODE_ENV=production \
15
21
--volume ${PWD}/.kubeconfig:/gitpod/.kubeconfig \
22
+ --volume ${IMAGE_PULL_SECRET_FILE}:/gitpod/config.json \
16
23
--volume ${PWD}/eks-cluster.yaml:/gitpod/eks-cluster.yaml \
17
24
--volume ${PWD}/logs:/root/.npm/_logs \
18
25
--volume ${HOME}/.aws:/root/.aws \
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export class GitpodStack extends cdk.Stack {
73
73
release : 'gitpod' ,
74
74
repository : 'https://aledbf.github.io/gitpod-chart-cleanup/' ,
75
75
namespace : 'default' ,
76
- version : '1.3.2 ' ,
76
+ version : '1.3.3 ' ,
77
77
wait : true ,
78
78
values,
79
79
} ) ;
You can’t perform that action at this time.
0 commit comments