Skip to content

Commit a64f042

Browse files
committed
Cleanup
Signed-off-by: Manuel Alejandro de Brito Fontes <[email protected]>
1 parent d257165 commit a64f042

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ eks-cluster.yaml
1313
.git
1414
.husky
1515
.github
16+
17+
config.json

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ gitpod-ingress.yaml
1717
.kubeconfig*
1818

1919
logs
20+
21+
config.json

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ SHELL=/bin/bash -o pipefail -o errexit
55

66
IMG=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+
814
build: ## 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 \

lib/gitpod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)