Skip to content

Commit

Permalink
updated deepcopy
Browse files Browse the repository at this point in the history
  • Loading branch information
henderiw committed Apr 20, 2023
1 parent 06157be commit 8253c21
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 7 deletions.
53 changes: 51 additions & 2 deletions config/crd/bases/req.nephio.org_datanetworks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
type: object
spec:
properties:
networkInstanceReference:
networkInstance:
description: NetworkInstance defines the networkInstance context to
which this DNN belongs Name and optionally Namespace is used here
properties:
Expand Down Expand Up @@ -87,9 +87,58 @@ spec:
type: object
type: array
required:
- networkInstanceReference
- networkInstance
type: object
status:
properties:
ipAllocationStatus:
description: IPAllocationStatus defines the observed state of IPAllocation
properties:
conditions:
description: Conditions of the resource.
items:
description: A Condition that may apply to a resource
properties:
kind:
description: Type of this condition. At most one of each
condition type may apply to a resource at any point in
time.
type: string
lastTransitionTime:
description: LastTransitionTime is the last time this condition
transitioned from one status to another.
format: date-time
type: string
message:
description: A Message containing details about this condition's
last transition from one status to another, if any.
type: string
reason:
description: A Reason for this condition's last transition
from one status to another.
type: string
status:
description: Status of this condition; is it currently True,
False, or Unknown?
type: string
required:
- kind
- lastTransitionTime
- reason
- status
type: object
type: array
expiryTime:
description: expiryTime indicated when the allocation expires
type: string
gateway:
description: Gateway identifies the gatway IP for the network
type: string
prefix:
description: AllocatedPrefix identifies the prefix that was allocated
by the IPAM system
type: string
type: object
type: object
type: object
served: true
Expand Down
98 changes: 98 additions & 0 deletions config/crd/bases/req.nephio.org_interfaces.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,104 @@ spec:
- networkInstance
type: object
status:
properties:
ipAllocationStatus:
description: IPAllocationStatus defines the observed state of IPAllocation
properties:
conditions:
description: Conditions of the resource.
items:
description: A Condition that may apply to a resource
properties:
kind:
description: Type of this condition. At most one of each
condition type may apply to a resource at any point in
time.
type: string
lastTransitionTime:
description: LastTransitionTime is the last time this condition
transitioned from one status to another.
format: date-time
type: string
message:
description: A Message containing details about this condition's
last transition from one status to another, if any.
type: string
reason:
description: A Reason for this condition's last transition
from one status to another.
type: string
status:
description: Status of this condition; is it currently True,
False, or Unknown?
type: string
required:
- kind
- lastTransitionTime
- reason
- status
type: object
type: array
expiryTime:
description: expiryTime indicated when the allocation expires
type: string
gateway:
description: Gateway identifies the gatway IP for the network
type: string
prefix:
description: AllocatedPrefix identifies the prefix that was allocated
by the IPAM system
type: string
type: object
vlanAllocationStatus:
description: VLANAllocationStatus defines the observed state of VLANAllocation
properties:
conditions:
description: Conditions of the resource.
items:
description: A Condition that may apply to a resource
properties:
kind:
description: Type of this condition. At most one of each
condition type may apply to a resource at any point in
time.
type: string
lastTransitionTime:
description: LastTransitionTime is the last time this condition
transitioned from one status to another.
format: date-time
type: string
message:
description: A Message containing details about this condition's
last transition from one status to another, if any.
type: string
reason:
description: A Reason for this condition's last transition
from one status to another.
type: string
status:
description: Status of this condition; is it currently True,
False, or Unknown?
type: string
required:
- kind
- lastTransitionTime
- reason
- status
type: object
type: array
expiryTime:
description: expiryTime indicated when the allocation expires
type: string
vlanID:
description: AllocatedVlan identifies the vlan that was allocated
by the VLAN backend
type: integer
vlanRange:
description: AllocatedVlan identifies the vlan range that was
allocated by the VLAN backend
type: string
type: object
type: object
type: object
served: true
Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/workload.nephio.org_amfdeployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ spec:
- bgpNeighbors
- routerID
type: object
dnns:
dataNetworks:
description: DataNetworks defines the data networks assocated
with the network instance
items:
Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/workload.nephio.org_smfdeployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ spec:
- bgpNeighbors
- routerID
type: object
dnns:
dataNetworks:
description: DataNetworks defines the data networks assocated
with the network instance
items:
Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/workload.nephio.org_upfdeployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ spec:
- bgpNeighbors
- routerID
type: object
dnns:
dataNetworks:
description: DataNetworks defines the data networks assocated
with the network instance
items:
Expand Down
21 changes: 19 additions & 2 deletions nf_requirements/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8253c21

Please sign in to comment.