Skip to content
Merged
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
598 changes: 326 additions & 272 deletions build/v1/generated.pb.go

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions build/v1/generated.proto

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

7 changes: 7 additions & 0 deletions build/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1411,6 +1411,9 @@ const (

// BuildVolumeSourceTypeConfigmap is the ConfigMap build source volume type
BuildVolumeSourceTypeConfigMap BuildVolumeSourceType = "ConfigMap"

// BuildVolumeSourceTypeCSI is the CSI build source volume type
BuildVolumeSourceTypeCSI BuildVolumeSourceType = "CSI"
)

// BuildVolumeSource represents the source of a volume to mount
Expand All @@ -1430,6 +1433,10 @@ type BuildVolumeSource struct {
// configMap represents a ConfigMap that should populate this volume
// +optional
ConfigMap *corev1.ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,3,opt,name=configMap"`

// csi represents ephemeral storage provided by external CSI drivers which support this capability
// +optional
CSI *corev1.CSIVolumeSource `json:"csi,omitempty" protobuf:"bytes,4,opt,name=csi"`
}

// BuildVolumeMount describes the mounting of a Volume within buildah's runtime environment.
Expand Down
5 changes: 5 additions & 0 deletions build/v1/zz_generated.deepcopy.go

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

1 change: 1 addition & 0 deletions build/v1/zz_generated.swagger_doc_generated.go

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

1 change: 1 addition & 0 deletions dependencymagnet/doc.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build tools
// +build tools

// go mod won't pull in code that isn't depended upon, but we have some code we don't depend on from code that must be included
Expand Down