Skip to content

Commit ab3e7cf

Browse files
committed
Wait a bit before starting checks
1 parent 5760fb3 commit ab3e7cf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gitpod-network-check/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A CLI to check if your network setup is suitable for the installation of Gitpod.
66

77
1. Download the `gitpod-network-check` binary using:
88
```
9-
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
9+
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
1010
```
1111

1212
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)

gitpod-network-check/cmd/checks.go

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ var checkCommand = &cobra.Command{ // nolint:gochecknoglobals
109109
return fmt.Errorf("❌ could not connect to SSM: %w", err)
110110
}
111111

112+
time.Sleep(time.Minute)
113+
112114
log.Infof("ℹ️ Checking if the required AWS Services can be reached from the ec2 instances")
113115
serviceEndpoints := map[string]string{
114116
"SSM": fmt.Sprintf("https://ssm.%s.amazonaws.com", networkConfig.AwsRegion),

0 commit comments

Comments
 (0)