Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions api/disaggregated/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,15 @@ type CommonSpec struct {

//volume template for mountPath
PersistentVolumes []PersistentVolume `json:"persistentVolumes,omitempty"`

// List of volumes that can be mounted by containers belonging to the pod.
// More info: https://kubernetes.io/docs/concepts/storage/volumes
Volumes []corev1.Volume `json:"volumes,omitempty"`

// Pod volumes to mount into the container's filesystem.
// Cannot be updated.
VolumeMounts []corev1.VolumeMount `json:"volumeMounts,omitempty"`

// (Optional) Tolerations for scheduling pods onto some dedicated nodes
//+optional
Tolerations []corev1.Toleration `json:"tolerations,omitempty"`
Expand Down
14 changes: 14 additions & 0 deletions api/disaggregated/v1/zz_generated.deepcopy.go

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

Loading