Skip to content

Commit 082db59

Browse files
committed
chore: go generate
Signed-off-by: Jack Yu <jack.yu@suse.com>
1 parent 7530f64 commit 082db59

3 files changed

Lines changed: 23 additions & 6 deletions

File tree

charts/templates/crds.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ spec:
112112
address:
113113
nullable: true
114114
type: string
115+
disableResourcePooling:
116+
type: boolean
115117
nodeName:
116118
nullable: true
117119
type: string
@@ -521,6 +523,9 @@ spec:
521523
- jsonPath: .status.status
522524
name: Status
523525
type: string
526+
- jsonPath: .status.message
527+
name: Message
528+
type: string
524529
name: v1beta1
525530
schema:
526531
openAPIV3Schema:
@@ -551,6 +556,9 @@ spec:
551556
type: object
552557
status:
553558
properties:
559+
message:
560+
nullable: true
561+
type: string
554562
profileStatus:
555563
items:
556564
properties:
@@ -697,6 +705,8 @@ spec:
697705
address:
698706
nullable: true
699707
type: string
708+
disableResourcePooling:
709+
type: boolean
700710
nodeName:
701711
nullable: true
702712
type: string
@@ -1105,6 +1115,9 @@ spec:
11051115
- JSONPath: .status.status
11061116
name: Status
11071117
type: string
1118+
- JSONPath: .status.message
1119+
name: Message
1120+
type: string
11081121
group: devices.harvesterhci.io
11091122
names:
11101123
kind: MigConfiguration
@@ -1143,6 +1156,9 @@ spec:
11431156
type: object
11441157
status:
11451158
properties:
1159+
message:
1160+
nullable: true
1161+
type: string
11461162
profileStatus:
11471163
items:
11481164
properties:

pkg/apis/devices.harvesterhci.io/v1beta1/pcideviceclaim.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ type PCIDeviceClaim struct {
2121
}
2222

2323
type PCIDeviceClaimSpec struct {
24-
Address string `json:"address"`
25-
NodeName string `json:"nodeName"`
26-
UserName string `json:"userName"`
27-
DisableResourcePooling bool `json:"disableResourcePooling,omitempty"`
24+
Address string `json:"address"`
25+
NodeName string `json:"nodeName"`
26+
UserName string `json:"userName"`
27+
// +kubebuilder:validation:Optional
28+
DisableResourcePooling bool `json:"disableResourcePooling,omitempty"`
2829
}
2930

3031
func (s PCIDeviceClaimSpec) NodeAddr() string {

pkg/util/gousb/usbid/load_data.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import "time"
2727
//
2828
// The baked-in data was last generated:
2929
//
30-
// 2026-04-29 02:38:21.56589096 +0000 UTC m=+1.293189684
31-
var LastUpdate = time.Unix(0, 1777430301565890960)
30+
// 2026-05-28 14:51:27.375146 +0800 CST m=+1.081143793
31+
var LastUpdate = time.Unix(0, 1779951087375146000)
3232

3333
const usbIDListData = `#
3434
# List of USB ID's

0 commit comments

Comments
 (0)