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
1313.git
1414.husky
1515.github
16+
17+ config.json
Original file line number Diff line number Diff line change @@ -17,3 +17,5 @@ gitpod-ingress.yaml
1717.kubeconfig *
1818
1919logs
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
55
66IMG =ghcr.io/gitpod-io/gitpod-eks-guide:latest
77
8+ # load .env file
9+ ifneq (,$(wildcard ./.env) )
10+ include .env
11+ export
12+ endif
13+
814build : # # Build docker image containing the required tools for the installation
915 @docker build --quiet . -t ${IMG}
1016 @mkdir -p ${PWD} /logs
@@ -13,6 +19,7 @@ DOCKER_RUN_CMD = docker run -it \
1319 --env-file ${PWD}/.env \
1420 --env NODE_ENV=production \
1521 --volume ${PWD}/.kubeconfig:/gitpod/.kubeconfig \
22+ --volume ${IMAGE_PULL_SECRET_FILE}:/gitpod/config.json \
1623 --volume ${PWD}/eks-cluster.yaml:/gitpod/eks-cluster.yaml \
1724 --volume ${PWD}/logs:/root/.npm/_logs \
1825 --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 {
7373 release : 'gitpod' ,
7474 repository : 'https://aledbf.github.io/gitpod-chart-cleanup/' ,
7575 namespace : 'default' ,
76- version : '1.3.2 ' ,
76+ version : '1.3.3 ' ,
7777 wait : true ,
7878 values,
7979 } ) ;
You can’t perform that action at this time.
0 commit comments