Skip to content

Commit

Permalink
Update CRDs and deepcopy via make generate
Browse files Browse the repository at this point in the history
  • Loading branch information
qu1queee committed Oct 18, 2023
1 parent 9ef8506 commit f5b8ed4
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 1 deletion.
47 changes: 46 additions & 1 deletion deploy/crds/shipwright.io_buildruns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6388,7 +6388,8 @@ spec:
description: BuildRunSpec defines the desired state of BuildRun
properties:
build:
description: Build refers to an embedded build specification
description: Build refers to an embedded build specification This
field is mandatory
properties:
name:
description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names'
Expand Down Expand Up @@ -6703,6 +6704,17 @@ spec:
description: URL describes the URL of the Git repository.
type: string
type: object
local:
description: LocalSource
properties:
name:
description: Name of the local step
type: string
timeout:
description: Timeout how long the BuildSource execution
must take.
type: string
type: object
ociArtifact:
description: OCIArtifact
properties:
Expand Down Expand Up @@ -8786,6 +8798,26 @@ spec:
which is used for resource control. Default serviceaccount will
be set if it is empty
type: string
source:
description: Source refers to the location where the source code is,
this could only be a local source
properties:
local:
description: LocalSource
properties:
name:
description: Name of the local step
type: string
timeout:
description: Timeout how long the BuildSource execution must
take.
type: string
type: object
type:
description: Type is the BuildRunSource qualifier, the type of
the data-source. Only LocalType is supported.
type: string
type: object
state:
description: State is used for canceling a buildrun (and maybe more
later on).
Expand Down Expand Up @@ -10354,6 +10386,8 @@ spec:
- name
type: object
type: array
required:
- build
type: object
status:
description: BuildRunStatus defines the observed state of BuildRun
Expand Down Expand Up @@ -10662,6 +10696,17 @@ spec:
description: URL describes the URL of the Git repository.
type: string
type: object
local:
description: LocalSource
properties:
name:
description: Name of the local step
type: string
timeout:
description: Timeout how long the BuildSource execution
must take.
type: string
type: object
ociArtifact:
description: OCIArtifact
properties:
Expand Down
11 changes: 11 additions & 0 deletions deploy/crds/shipwright.io_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2479,6 +2479,17 @@ spec:
description: URL describes the URL of the Git repository.
type: string
type: object
local:
description: LocalSource
properties:
name:
description: Name of the local step
type: string
timeout:
description: Timeout how long the BuildSource execution must
take.
type: string
type: object
ociArtifact:
description: OCIArtifact
properties:
Expand Down
36 changes: 36 additions & 0 deletions pkg/apis/build/v1beta1/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 f5b8ed4

Please sign in to comment.