Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initializing shallow cloning logic and CRD change #1824

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
6 changes: 4 additions & 2 deletions cmd/git/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ func init() {
// Optional flag to be able to override the default shallow clone depth,
// which should be fine for almost all use cases we use the Git source step
// for (in the context of Shipwright build).
pflag.UintVar(&flagValues.depth, "depth", 1, "Create a shallow clone based on the given depth")
// Setting depth to 0 means no shallow clone (full clone)
pflag.UintVar(&flagValues.depth, "depth", 0, "Create a shallow clone with the given depth. 0 means full clone (no shallow).")
Comment on lines -96 to +97
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a breaking change - current Shipwright users will see a performance hit if we switch from "no history" when cloning to "full history." I recommend reverting this change.


// Mostly internal flag
pflag.BoolVar(&flagValues.skipValidation, "skip-validation", false, "skip pre-requisite validation")
Expand All @@ -120,7 +121,7 @@ func main() {

// Execute performs flag parsing, input validation and the Git clone
func Execute(ctx context.Context) error {
flagValues = settings{depth: 1}
flagValues = settings{depth: 0}
Comment on lines -123 to +124
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Likewise - please revert so we don't change the current behavior of cloning source.

pflag.Parse()

if flagValues.help {
Expand Down Expand Up @@ -266,6 +267,7 @@ func clone(ctx context.Context) error {
cloneArgs = append(cloneArgs, "--branch", flagValues.revision)
}

// Only add depth if it's greater than 0 (meaning shallow clone is requested)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 great comment.

if flagValues.depth > 0 {
cloneArgs = append(cloneArgs, "--depth", fmt.Sprintf("%d", flagValues.depth))
}
Expand Down
14 changes: 14 additions & 0 deletions deploy/crds/shipwright.io_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,13 @@ spec:
url:
description: URL describes the URL of the Git repository.
type: string
shallowCloneDepth:
description: |-
The depth of the shallow clone. If not specified or set to 0,
a full clone will be performed. Values greater than 0 will
create a shallow clone with the specified depth.
type: integer
minimum: 0
type: object
sources:
description: |-
Expand Down Expand Up @@ -2734,6 +2741,13 @@ spec:
url:
description: URL describes the URL of the Git repository.
type: string
shallowCloneDepth:
description: |-
The depth of the shallow clone. If not specified or set to 0,
a full clone will be performed. Values greater than 0 will
create a shallow clone with the specified depth.
type: integer
minimum: 0
required:
- url
type: object
Expand Down
1 change: 1 addition & 0 deletions docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ A `Build` resource can specify a source type, such as a Git repository or an OCI
- `source.git.url` - Specify the source location using a Git repository.
- `source.git.cloneSecret` - For private repositories or registries, the name references a secret in the namespace that contains the SSH private key or Docker access credentials, respectively.
- `source.git.revision` - A specific revision to select from the source repository, this can be a commit, tag or branch name. If not defined, it will fall back to the Git repository default branch.
- `source.git.shallowCloneDepth` - The depth of the shallow clone. If not specified or set to 0, a full clone will be performed. Values greater than 0 will create a shallow clone with the specified depth.
- `source.contextDir` - For repositories where the source code is not located at the root folder, you can specify this path here.

By default, the Build controller does not validate that the Git repository exists. If the validation is desired, users can explicitly define the `build.shipwright.io/verify.repository` annotation with `true`. For example:
Expand Down
1 change: 0 additions & 1 deletion pkg/apis/build/v1beta1/build_conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@ func getAlphaBuildSource(src BuildSpec) v1alpha1.Source {
source.URL = &src.Source.Git.URL
revision = src.Source.Git.Revision
}

}

if credentials.Name != "" {
Expand Down
7 changes: 7 additions & 0 deletions pkg/apis/build/v1beta1/source.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ type Git struct {
//
// +optional
CloneSecret *string `json:"cloneSecret,omitempty"`

// ShallowCloneDepth specifies the depth of the shallow clone.
// If not specified or set to 0, a full clone will be performed.
// Values greater than 0 will create a shallow clone with the specified depth.
//
// +optional
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would default this value to 1 so that we do not introduce a breaking change, and add a validation that this must be greater than or equal to 0.

Suggested change
// +optional
// +optional
// +default=1
// +kubebuilder:validation:Minimum=0

ShallowCloneDepth *int `json:"shallowCloneDepth,omitempty"`
Comment on lines +63 to +68
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would simplify the name of this field to "Depth". This matches the --depth flag in the git command line.

Suggested change
// ShallowCloneDepth specifies the depth of the shallow clone.
// If not specified or set to 0, a full clone will be performed.
// Values greater than 0 will create a shallow clone with the specified depth.
//
// +optional
ShallowCloneDepth *int `json:"shallowCloneDepth,omitempty"`
// Depth specifies the git clone depth. If set to 0, cloning will include the full source history.
// Values greater than 0 will create a shallow clone with the specified history depth.
//
// +optional
Depth *int `json:"depth,omitempty"`

}

// OCIArtifact describes the source code bundle container to pull
Expand Down
9 changes: 9 additions & 0 deletions pkg/reconciler/buildrun/resources/sources/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,15 @@ func AppendGitStep(
)
}

// Check if shallow clone is requested
if source.ShallowCloneDepth != nil && *source.ShallowCloneDepth > 0 {
gitStep.Args = append(
gitStep.Args,
"--depth",
fmt.Sprintf("%d", *source.ShallowCloneDepth),
)
}
Comment on lines +82 to +89
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤔 if we set a default value of 1, and validate that Depth must be >= 0, can we simply pass the depth value as-is?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we still need the nil-check. I am not 100 % sure whether k8s api server with default=1 will actually set it on create/update operations. But even if so, for existing objects it will be nil.


// If configure, use Git URL rewrite flag
if cfg.GitRewriteRule {
gitStep.Args = append(gitStep.Args, "--git-url-rewrite")
Expand Down
Loading