From 5ea55b26b40ece196ff4b727ead00448c6bd21e5 Mon Sep 17 00:00:00 2001 From: michalani Date: Tue, 17 Oct 2023 19:30:48 +0100 Subject: [PATCH 1/2] Update fullrun --- scripts/fullrun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fullrun b/scripts/fullrun index 25420bd..bf4c1ea 100755 --- a/scripts/fullrun +++ b/scripts/fullrun @@ -53,7 +53,7 @@ EOF sudo curl --silent --location -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.13.7/bin/linux/amd64/kubectl sudo chmod +x /usr/local/bin/kubectl - curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/latest_release/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp + curl --silent --location "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp sudo mv -v /tmp/eksctl /usr/local/bin if ! [ -x "$(command -v jq)" ] || ! [ -x "$(command -v envsubst)" ] || ! [ -x "$(command -v kubectl)" ] || ! [ -x "$(command -v eksctl)" ]; then From f673585672e8c009d4254f8afc8499cc3404e930 Mon Sep 17 00:00:00 2001 From: michalani Date: Tue, 17 Oct 2023 20:06:29 +0100 Subject: [PATCH 2/2] Update appmesh-baseline.yml ``` Successfully installed bundler-1.17.3 Parsing documentation for bundler-1.17.3 Done installing documentation for bundler after 3 seconds 38 gems installed + gem update --system ERROR: Error installing rubygems-update: There are no versions of rubygems-update (= 3.4.21) compatible with your Ruby & RubyGems rubygems-update requires Ruby version >= 2.6.0. The current ruby version is 2.5.0. ERROR: While executing gem ... (NoMethodError) undefined method `version' for nil:NilClass Updating rubygems-update ``` Commenting out the `gem update --system` as it causes bootstrap failure, which causes a 5XX behaviour from LB --- templates/appmesh-baseline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/appmesh-baseline.yml b/templates/appmesh-baseline.yml index 161306a..967e178 100644 --- a/templates/appmesh-baseline.yml +++ b/templates/appmesh-baseline.yml @@ -890,7 +890,7 @@ Resources: # Install rails and bundler gem install --force rails:4.2.10 bundler:1.17.3 - gem update --system + #gem update --system # Clone the repo and build the app export RUBY_ROOT=/tmp/ecsdemo-frontend