Skip to content

Commit 38a158d

Browse files
authored
Merge branch 'main' into ignition-25-92
2 parents 6bb638f + 5c7c765 commit 38a158d

File tree

366 files changed

+45281
-20054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+45281
-20054
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Fedora packaging:
2525
- [ ] Run `kinit [email protected]`
2626
- [ ] Run `fedpkg new-sources $(spectool -S ignition.spec | sed 's:.*/::')`
2727
- [ ] PR the changes in [Fedora](https://src.fedoraproject.org/rpms/ignition)
28-
- [ ] Once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f38) then push those, for example:
28+
- [ ] Once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f39) then push those, for example:
2929
```bash
3030
git checkout rawhide
3131
git pull --ff-only
32-
git checkout f38
32+
git checkout f39
3333
git merge --ff-only rawhide
34-
git push origin f38
34+
git push origin f39
3535
```
3636
- [ ] On each of those branches run `fedpkg build` including rawhide.
3737
- [ ] Once the builds have finished, submit them to [bodhi](https://bodhi.fedoraproject.org/updates/new), filling in:

Dockerfile.validate

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.fedoraproject.org/fedora:38 AS builder
1+
FROM registry.fedoraproject.org/fedora:39 AS builder
22
RUN dnf install -y golang git-core
33
RUN mkdir /ignition-validate
44
COPY . /ignition-validate

docs/release-notes.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@ nav_order: 9
44

55
# Release Notes
66

7-
## Upcoming Ignition 2.18.0 (unreleased)
7+
## Upcoming Ignition 2.19.0 (unreleased)
8+
9+
### Breaking changes
10+
11+
### Features
12+
13+
- Support Akamai Connected Cloud (Linode)
14+
15+
### Changes
16+
17+
### Bug fixes
18+
19+
## Ignition 2.18.0 (2024-03-01)
820

921
### Breaking changes
1022

@@ -13,6 +25,7 @@ nav_order: 9
1325

1426
### Features
1527

28+
- Support Scaleway
1629

1730

1831
### Changes
@@ -23,7 +36,7 @@ nav_order: 9
2336

2437
- Fix failure when config only disables units already disabled
2538
- Fix validation to catch conflicts with the parent directory of another file, link or directories
26-
39+
- Retry HTTP requests on Azure on status codes 404, 410, and 429
2740

2841
## Ignition 2.17.0 (2023-11-20)
2942

docs/supported-platforms.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ nav_order: 8
66

77
Ignition is currently only supported for the following platforms:
88

9+
* [Akamai Connected Cloud] (`akamai`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys and network configuration are handled separately.
910
* [Alibaba Cloud] (`aliyun`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
1011
* [Apple Hypervisor] (`applehv`) - Ignition will read its configuration using an HTTP GET over a vsock connection with its host on port 1024.
1112
* [Amazon Web Services] (`aws`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
@@ -26,6 +27,7 @@ Ignition is currently only supported for the following platforms:
2627
* [Equinix Metal] (`packet`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
2728
* [IBM Power Systems Virtual Server] (`powervs`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
2829
* [QEMU] (`qemu`) - Ignition will read its configuration from the 'opt/com.coreos/config' key on the QEMU Firmware Configuration Device (available in QEMU 2.4.0 and higher).
30+
* [Scaleway] (`scaleway`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
2931
* [VirtualBox] (`virtualbox`) - Use the VirtualBox guest property `/Ignition/Config` to provide the config to the virtual machine.
3032
* [VMware] (`vmware`) - Use the VMware Guestinfo variables `ignition.config.data` and `ignition.config.data.encoding` to provide the config and its encoding to the virtual machine. Valid encodings are "", "base64", and "gzip+base64". Guestinfo variables can be provided directly or via an OVF environment, with priority given to variables specified directly.
3133
* [Vultr] (`vultr`) - Ignition will read its configuration from the instance userdata. Cloud SSH keys are handled separately.
@@ -35,6 +37,7 @@ Ignition is under active development, so this list may grow over time.
3537

3638
For most cloud providers, cloud SSH keys and custom network configuration are handled by [Afterburn].
3739

40+
[Akamai Connected Cloud]: https://www.linode.com
3841
[Alibaba Cloud]: https://www.alibabacloud.com/product/ecs
3942
[Apple Hypervisor]: https://developer.apple.com/documentation/hypervisor
4043
[Amazon Web Services]: https://aws.amazon.com/ec2/
@@ -54,6 +57,7 @@ For most cloud providers, cloud SSH keys and custom network configuration are ha
5457
[Equinix Metal]: https://metal.equinix.com/product/
5558
[IBM Power Systems Virtual Server]: https://www.ibm.com/products/power-virtual-server
5659
[QEMU]: https://www.qemu.org/
60+
[Scaleway]: https://www.scaleway.com
5761
[VirtualBox]: https://www.virtualbox.org/
5862
[VMware]: https://www.vmware.com/
5963
[Vultr]: https://www.vultr.com/products/cloud-compute/

go.mod

+27-29
Original file line numberDiff line numberDiff line change
@@ -4,63 +4,61 @@ go 1.20
44

55
require (
66
cloud.google.com/go/compute/metadata v0.2.3
7-
cloud.google.com/go/storage v1.36.0
8-
github.com/aws/aws-sdk-go v1.49.16
7+
cloud.google.com/go/storage v1.40.0
8+
github.com/aws/aws-sdk-go v1.51.16
99
github.com/beevik/etree v1.3.0
10-
github.com/containers/libhvee v0.6.0
10+
github.com/containers/libhvee v0.7.1
1111
github.com/coreos/go-semver v0.3.1
1212
github.com/coreos/go-systemd/v22 v22.5.0
1313
github.com/coreos/vcontext v0.0.0-20230201181013-d72178a18687
1414
github.com/google/renameio/v2 v2.0.0
15-
github.com/google/uuid v1.5.0
15+
github.com/google/uuid v1.6.0
1616
github.com/mdlayher/vsock v1.2.1
1717
github.com/mitchellh/copystructure v1.2.0
1818
github.com/pin/tftp v2.1.0+incompatible
1919
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
20-
github.com/stretchr/testify v1.8.4
20+
github.com/stretchr/testify v1.9.0
2121
github.com/vincent-petithory/dataurl v1.0.0
2222
github.com/vmware/vmw-guestinfo v0.0.0-20220317130741-510905f0efa3
23-
golang.org/x/net v0.19.0
24-
golang.org/x/oauth2 v0.15.0
25-
golang.org/x/sys v0.16.0
26-
google.golang.org/api v0.155.0
23+
golang.org/x/net v0.24.0
24+
golang.org/x/oauth2 v0.19.0
25+
golang.org/x/sys v0.19.0
26+
google.golang.org/api v0.172.0
2727
gopkg.in/yaml.v3 v3.0.1
2828
)
2929

3030
require (
31-
cloud.google.com/go v0.110.10 // indirect
32-
cloud.google.com/go/compute v1.23.3 // indirect
33-
cloud.google.com/go/iam v1.1.5 // indirect
31+
cloud.google.com/go v0.112.1 // indirect
32+
cloud.google.com/go/compute v1.24.0 // indirect
33+
cloud.google.com/go/iam v1.1.7 // indirect
3434
github.com/coreos/go-json v0.0.0-20230131223807-18775e0fb4fb // indirect
3535
github.com/davecgh/go-spew v1.1.1 // indirect
3636
github.com/felixge/httpsnoop v1.0.4 // indirect
37-
github.com/go-logr/logr v1.3.0 // indirect
37+
github.com/go-logr/logr v1.4.1 // indirect
3838
github.com/go-logr/stdr v1.2.2 // indirect
3939
github.com/godbus/dbus/v5 v5.0.4 // indirect
4040
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
41-
github.com/golang/protobuf v1.5.3 // indirect
41+
github.com/golang/protobuf v1.5.4 // indirect
4242
github.com/google/s2a-go v0.1.7 // indirect
4343
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
44-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
44+
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
4545
github.com/jmespath/go-jmespath v0.4.0 // indirect
4646
github.com/mdlayher/socket v0.4.1 // indirect
4747
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4848
github.com/pmezard/go-difflib v1.0.0 // indirect
4949
go.opencensus.io v0.24.0 // indirect
50-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
51-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
52-
go.opentelemetry.io/otel v1.21.0 // indirect
53-
go.opentelemetry.io/otel/metric v1.21.0 // indirect
54-
go.opentelemetry.io/otel/trace v1.21.0 // indirect
55-
golang.org/x/crypto v0.17.0 // indirect
56-
golang.org/x/sync v0.5.0 // indirect
50+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
51+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
52+
go.opentelemetry.io/otel v1.24.0 // indirect
53+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
54+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
55+
golang.org/x/crypto v0.22.0 // indirect
56+
golang.org/x/sync v0.6.0 // indirect
5757
golang.org/x/text v0.14.0 // indirect
5858
golang.org/x/time v0.5.0 // indirect
59-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
60-
google.golang.org/appengine v1.6.8 // indirect
61-
google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 // indirect
62-
google.golang.org/genproto/googleapis/api v0.0.0-20231211222908-989df2bf70f3 // indirect
63-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect
64-
google.golang.org/grpc v1.60.1 // indirect
65-
google.golang.org/protobuf v1.31.0 // indirect
59+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
60+
google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect
61+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
62+
google.golang.org/grpc v1.62.1 // indirect
63+
google.golang.org/protobuf v1.33.0 // indirect
6664
)

0 commit comments

Comments
 (0)