Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
- **Feature:** Add method to list all public ip ranges: `ListPublicIpRanges`
- Add size attribute to image model
- Add CPU architecture attribute to image config model
- `serviceenablement: [v0.6.0](services/serviceenablement/CHANGELOG.md#v060-2025-02-27)
- `iaas`: [v0.21.1](services/iaas/CHANGELOG.md#v0211-2025-03-02)
- Increase Timeouts for volume and network wait handlers
- `serviceenablement`: [v0.6.0](services/serviceenablement/CHANGELOG.md#v060-2025-02-27)
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.


Expand Down
5 changes: 5 additions & 0 deletions services/iaas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
## v0.21.1 (2025-03-02)

- Increase Timeouts for volume and network wait handlers

## v0.21.0 (2025-02-27)

- **Feature:** Add method to list all public ip ranges: `ListPublicIpRanges`
- Add size attribute to image model
- Add CPU architecture attribute to image config model

## v0.20.0 (2025-02-21)

- **New:** Minimal go version is now Go 1.21

## v0.19.0 (2024-12-20)
Expand Down
20 changes: 10 additions & 10 deletions services/iaas/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func CreateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
}
return false, area, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -84,7 +84,7 @@ func UpdateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
return false, area, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -104,7 +104,7 @@ func DeleteNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
}
return true, nil, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -125,7 +125,7 @@ func CreateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
return false, network, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -146,7 +146,7 @@ func UpdateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
return false, network, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -166,7 +166,7 @@ func DeleteNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
}
return true, nil, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -188,7 +188,7 @@ func CreateVolumeWaitHandler(ctx context.Context, a APIClientInterface, projectI
}
return false, volume, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand Down Expand Up @@ -216,7 +216,7 @@ func DeleteVolumeWaitHandler(ctx context.Context, a APIClientInterface, projectI
}
return true, nil, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand Down Expand Up @@ -521,7 +521,7 @@ func AddVolumeToServerWaitHandler(ctx context.Context, a APIClientInterface, pro
}
return false, nil, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand All @@ -546,7 +546,7 @@ func RemoveVolumeFromServerWaitHandler(ctx context.Context, a APIClientInterface
}
return true, nil, nil
})
handler.SetTimeout(10 * time.Minute)
handler.SetTimeout(15 * time.Minute)
return handler
}

Expand Down
Loading