Skip to content

Commit

Permalink
Wait a bit before starting checks
Browse files Browse the repository at this point in the history
  • Loading branch information
nandajavarma committed May 28, 2024
1 parent 5760fb3 commit ab3e7cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gitpod-network-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A CLI to check if your network setup is suitable for the installation of Gitpod.

1. Download the `gitpod-network-check` binary using:
```
curl -L "https://github.com/gitpod-io/enterprise-deployment-toolkit/releases/download/v0.1.2/enterprise-deployment-toolkit_$(uname -s -m | awk '{print $1"_"$2}').tar.gz" | tar -xz
curl -L "https://github.com/gitpod-io/enterprise-deployment-toolkit/releases/download/v0.1.3/enterprise-deployment-toolkit_$(uname -s -m | awk '{print $1"_"$2}').tar.gz" | tar -xz
```

You can also download and untar the binary directly from the Github releases page [here](https://github.com/gitpod-io/enterprise-deployment-toolkit/releases/latest)
Expand Down
2 changes: 2 additions & 0 deletions gitpod-network-check/cmd/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ var checkCommand = &cobra.Command{ // nolint:gochecknoglobals
return fmt.Errorf("❌ could not connect to SSM: %w", err)
}

time.Sleep(time.Minute)

log.Infof("ℹ️ Checking if the required AWS Services can be reached from the ec2 instances")
serviceEndpoints := map[string]string{
"SSM": fmt.Sprintf("https://ssm.%s.amazonaws.com", networkConfig.AwsRegion),
Expand Down

0 comments on commit ab3e7cf

Please sign in to comment.