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

feat: Introduce proxy parameters to ExpandedProject struct #433

Merged
merged 1 commit into from
Apr 4, 2022
Merged
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
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"`
}