You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// MachineConfigNodeStatusPinnedImageSet holds information about the current, desired, and failed pinned image sets for the observed machine config node.
139
149
// +kubebuilder:validation:XValidation:rule="has(self.desiredGeneration) && has(self.currentGeneration) ? self.desiredGeneration >= self.currentGeneration : true",message="desired generation must be greater than or equal to the current generation"
140
150
// +kubebuilder:validation:XValidation:rule="has(self.lastFailedGeneration) && has(self.desiredGeneration) ? self.desiredGeneration >= self.lastFailedGeneration : true",message="desired generation must be greater than or equal to the last failed generation"
Copy file name to clipboardExpand all lines: machineconfiguration/v1alpha1/zz_generated.crd-manifests/0000_80_machine-config_01_machineconfignodes.crd.yaml
+153Lines changed: 153 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -274,6 +274,159 @@ spec:
274
274
required:
275
275
- desired
276
276
type: object
277
+
internalReleaseImage:
278
+
description: internalReleaseImage describes the status of the release
279
+
payloads stored in the node
280
+
items:
281
+
description: |-
282
+
MachineConfigNodeStatusInternalReleaseImage holds information about the current, desidered and discovered release bundles for the observed machine
283
+
config node.
284
+
properties:
285
+
availableReleases:
286
+
description: |-
287
+
availableReleases is a list of release bundle identifiers currently detected
288
+
from the attached ISO.
289
+
items:
290
+
properties:
291
+
image:
292
+
description: |-
293
+
image is an OCP release imaged referenced by digest.
294
+
The format of the image pull spec is: host[:port][/namespace]/name@sha256:<digest>,
295
+
where the digest must be 64 characters long, and consist only of lowercase hexadecimal characters, a-f and 0-9.
296
+
The length of the whole spec must be between 1 to 447 characters.
297
+
maxLength: 447
298
+
minLength: 1
299
+
type: string
300
+
x-kubernetes-validations:
301
+
- message: the OCI Image reference must end with a valid
0 commit comments