Skip to content

Commit

Permalink
fix: bump helm timeout to 60 minutes (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
abuchanan-airbyte authored Oct 7, 2024
1 parent 6e6dfe4 commit 23f0fd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion internal/cmd/local/local/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ func (c *Command) handleChart(
CreateNamespace: true,
Namespace: req.namespace,
Wait: true,
Timeout: 30 * time.Minute,
Timeout: 60 * time.Minute,
ValuesOptions: values.Options{Values: req.values},
ValuesYaml: req.valuesYAML,
Version: req.chartVersion,
Expand Down
8 changes: 4 additions & 4 deletions internal/cmd/local/local/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestCommand_Install(t *testing.T) {
Namespace: airbyteNamespace,
CreateNamespace: true,
Wait: true,
Timeout: 30 * time.Minute,
Timeout: 60 * time.Minute,
ValuesYaml: `global:
auth:
enabled: "true"
Expand All @@ -83,7 +83,7 @@ func TestCommand_Install(t *testing.T) {
Namespace: nginxNamespace,
CreateNamespace: true,
Wait: true,
Timeout: 30 * time.Minute,
Timeout: 60 * time.Minute,
ValuesYaml: expNginxValues,
},
release: release.Release{
Expand Down Expand Up @@ -225,7 +225,7 @@ func TestCommand_Install_HelmValues(t *testing.T) {
Namespace: airbyteNamespace,
CreateNamespace: true,
Wait: true,
Timeout: 30 * time.Minute,
Timeout: 60 * time.Minute,
ValuesYaml: `global:
auth:
enabled: "true"
Expand Down Expand Up @@ -253,7 +253,7 @@ func TestCommand_Install_HelmValues(t *testing.T) {
Namespace: nginxNamespace,
CreateNamespace: true,
Wait: true,
Timeout: 30 * time.Minute,
Timeout: 60 * time.Minute,
ValuesYaml: expNginxValues,
},
release: release.Release{
Expand Down

0 comments on commit 23f0fd6

Please sign in to comment.