Skip to content

Commit bf38706

Browse files
committed
Back to 1.24
1 parent e216306 commit bf38706

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25
44

55
require (
66
connectrpc.com/connect v1.18.1
7-
github.com/metal-stack/api v0.0.19-0.20250903123459-76b300f1eee1
7+
github.com/metal-stack/api v0.0.19-0.20250903124535-eeb8f8f82166
88
github.com/metal-stack/v v1.0.3
99
github.com/pin/tftp/v3 v3.1.0
1010
github.com/prometheus/client_golang v1.23.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
3131
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
3232
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
3333
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
34-
github.com/metal-stack/api v0.0.19-0.20250903123459-76b300f1eee1 h1:UAuEGjwclVCgHzhwMU6kZv5atp7ABq06TqDnzxlxvYU=
35-
github.com/metal-stack/api v0.0.19-0.20250903123459-76b300f1eee1/go.mod h1:z3DWiuc85eAINClNVp7/4uBbhClYDdSLihynXPzEiBw=
34+
github.com/metal-stack/api v0.0.19-0.20250903124535-eeb8f8f82166 h1:Ry/Wr0xeEsrCuXp+YjKpjURhuF14DYfJAc/5W40lWiY=
35+
github.com/metal-stack/api v0.0.19-0.20250903124535-eeb8f8f82166/go.mod h1:z3DWiuc85eAINClNVp7/4uBbhClYDdSLihynXPzEiBw=
3636
github.com/metal-stack/v v1.0.3 h1:Sh2oBlnxrCUD+mVpzfC8HiqL045YWkxs0gpTvkjppqs=
3737
github.com/metal-stack/v v1.0.3/go.mod h1:YTahEu7/ishwpYKnp/VaW/7nf8+PInogkfGwLcGPdXg=
3838
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=

pixiecore/booters.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131

3232
"connectrpc.com/connect"
3333
"github.com/metal-stack/api/go/client"
34-
"github.com/metal-stack/api/go/metalstack/infra/v2"
34+
infrav2 "github.com/metal-stack/api/go/metalstack/infra/v2"
3535

3636
"github.com/metal-stack/pixie/api"
3737
)
@@ -91,8 +91,8 @@ func (g *grpcbooter) BootSpec(m Machine) (*Spec, error) {
9191
if m.GUID != "" {
9292
// Very first dhcp call which contains Machine UUID, tell metal-api this uuid
9393
req := &infrav2.BootServiceDhcpRequest{
94-
Uuid: string(m.GUID),
95-
PartitionId: g.partition,
94+
Uuid: string(m.GUID),
95+
Partition: g.partition,
9696
}
9797
g.log.Info("dhcp", "req", req)
9898
_, err := g.apiclient.Infrav2().Boot().Dhcp(ctx, connect.NewRequest(req))
@@ -104,8 +104,8 @@ func (g *grpcbooter) BootSpec(m Machine) (*Spec, error) {
104104
} else {
105105
// machine asks for a dhcp answer, ask metal-api for a proper response in this partition
106106
req := &infrav2.BootServiceBootRequest{
107-
Mac: m.MAC.String(),
108-
PartitionId: g.partition,
107+
Mac: m.MAC.String(),
108+
Partition: g.partition,
109109
}
110110
g.log.Info("boot", "req", req)
111111
resp, err := g.apiclient.Infrav2().Boot().Boot(ctx, connect.NewRequest(req))

0 commit comments

Comments
 (0)