Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
feat: Introduce proxy parameters to ExpandedProject struct (#433)
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT authored Apr 4, 2022
1 parent fe974e5 commit 6c53542
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkg/api/models/expanded_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ type ExpandedProject struct {
// Version of the shipyard file
ShipyardVersion string `json:"shipyardVersion,omitempty"`

// git proxy URL
GitProxyURL string `json:"gitProxyUrl,omitempty"`

// git proxy scheme
GitProxyScheme string `json:"gitProxyScheme,omitempty"`

// git proxy user
GitProxyUser string `json:"gitProxyUser,omitempty"`

// git proxy insecure
GitProxyInsecure bool `json:"gitProxyInsecure,omitempty"`

// stages
Stages []*ExpandedStage `json:"stages"`
}

0 comments on commit 6c53542

Please sign in to comment.