Skip to content

Commit 62d5e18

Browse files
authored
chore: release 1.6.0 (#67)
* chore: prepare changelog * fix: broken links in README * chore: add missing make docs Signed-off-by: Ville Vesilehto <ville.vesilehto@upcloud.com>
1 parent 4487796 commit 62d5e18

File tree

6 files changed

+18
-3
lines changed

6 files changed

+18
-3
lines changed

.web-docs/components/builder/upcloud/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ The upcloud builder is used to generate storage templates on UpCloud.
5050
Changing this value is useful if you aim to build a template for larger server configurations where the preconfigured server disk is larger than 25 GB.
5151
The operating system disk can also be later extended if needed. Note that Windows templates require large storage size, than default 25 Gb.
5252

53+
- `storage_tier` (string) - The storage tier to use. Available options are `maxiops`, `archive`, and `standard`. Defaults to `maxiops`.
54+
For most production workloads, MaxIOPS is recommended for best performance.
55+
5356
- `state_timeout_duration` (duration string | ex: "1h5m2s") - The amount of time to wait for resource state changes. Defaults to `5m`.
5457

5558
- `boot_wait` (duration string | ex: "1h5m2s") - The amount of time to wait after booting the server. Defaults to '0s'
@@ -138,6 +141,8 @@ source "upcloud" "test" {
138141
zone = "nl-ams1"
139142
storage_name = "ubuntu server 20.04"
140143
template_prefix = "ubuntu-server"
144+
# uncomment to use standard tier storage
145+
# storage_tier = "standard
141146
}
142147
143148
build {

.web-docs/components/post-processor/upcloud-import/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Username and password configuration arguments can be omitted if environment vari
2727

2828
- `replace_existing` (bool) - Replace existing template if one exists with the same name. Defaults to `false`.
2929

30+
- `storage_tier` (string) - The storage tier to use. Available options are `maxiops`, `archive`, and `standard`. Defaults to `maxiops`.
31+
3032
- `state_timeout_duration` (duration string | ex: "1h5m2s") - The amount of time to wait for resource state changes. Defaults to `60m`.
3133

3234
<!-- End of code generated from the comments of the Config struct in post-processor/upcloud-import/config.go; -->
@@ -74,6 +76,7 @@ build {
7476
username = "${var.username}"
7577
password = "${var.password}"
7678
zones = ["pl-waw1", "fi-hel2"]
79+
storage_tier = "maxiops"
7780
}
7881
}
7982
}

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77

8+
## [1.6.0] - 2025-05-23
9+
810
### Added
911

1012
- Enable storage tier customisation through `storage_tier` parameter
@@ -100,7 +102,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
100102
- Upgrade to Packer 1.7.0
101103
- Copy codebase from https://github.com/UpCloudLtd/upcloud-packer
102104

103-
[Unreleased]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.5.3...HEAD
105+
[Unreleased]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.6.0...HEAD
106+
[1.6.0]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.5.3...v1.6.0
104107
[1.5.3]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.5.2...v1.5.3
105108
[1.5.2]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.5.1...v1.5.2
106109
[1.5.1]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.5.0...v1.5.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ This is a builder plugin for Packer which can be used to generate storage templa
77

88
## Documentation
99

10-
Documentation is available in [docs](docs/) directory.
10+
See [plugin documentation](https://developer.hashicorp.com/packer/integrations/UpCloudLtd/upcloud/).
1111

12-
Check the [example](example/) directory for working example.
12+
Check also the [examples](example/).
1313

1414
## License
1515

docs-partials/post-processor/upcloud-import/Config-not-required.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
- `replace_existing` (bool) - Replace existing template if one exists with the same name. Defaults to `false`.
44

5+
- `storage_tier` (string) - The storage tier to use. Available options are `maxiops`, `archive`, and `standard`. Defaults to `maxiops`.
6+
57
- `state_timeout_duration` (duration string | ex: "1h5m2s") - The amount of time to wait for resource state changes. Defaults to `60m`.
68

79
<!-- End of code generated from the comments of the Config struct in post-processor/upcloud-import/config.go; -->

post-processor/upcloud-import/config.hcl2spec.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)