forked from NetApp/trident
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http write timeout for the rest api frontend
- Loading branch information
1 parent
800db19
commit 556bfc6
Showing
14 changed files
with
360 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
@Library(['tools@master', 'tools-override@main']) _ | ||
|
||
node { | ||
execute_pipeline(repository: 'trident') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package k8sclient | ||
|
||
import ( | ||
"github.com/netapp/trident/utils" | ||
) | ||
|
||
type DeploymentYAMLArguments struct { | ||
DeploymentName string `json:"deploymentName"` | ||
TridentImage string `json:"tridentImage"` | ||
AutosupportImage string `json:"autosupportImage"` | ||
AutosupportProxy string `json:"autosupportProxy"` | ||
AutosupportCustomURL string `json:"autosupportCustomURL"` | ||
AutosupportSerialNumber string `json:"autosupportSerialNumber"` | ||
AutosupportHostname string `json:"autosupportHostname"` | ||
ImageRegistry string `json:"imageRegistry"` | ||
LogFormat string `json:"logFormat"` | ||
SnapshotCRDVersion string `json:"snapshotCRDVersion"` | ||
ImagePullSecrets []string `json:"imagePullSecrets"` | ||
Labels map[string]string `json:"labels"` | ||
ControllingCRDetails map[string]string `json:"controllingCRDetails"` | ||
Debug bool `json:"debug"` | ||
UseIPv6 bool `json:"useIPv6"` | ||
SilenceAutosupport bool `json:"silenceAutosupport"` | ||
Version *utils.Version `json:"version"` | ||
TopologyEnabled bool `json:"topologyEnabled"` | ||
HTTPRequestTimeout string `json:"httpRequestTimeout"` | ||
} | ||
|
||
type DaemonsetYAMLArguments struct { | ||
DaemonsetName string `json:"daemonsetName"` | ||
TridentImage string `json:"tridentImage"` | ||
ImageRegistry string `json:"imageRegistry"` | ||
KubeletDir string `json:"kubeletDir"` | ||
LogFormat string `json:"logFormat"` | ||
ProbePort string `json:"probePort"` | ||
ImagePullSecrets []string `json:"imagePullSecrets"` | ||
Labels map[string]string `json:"labels"` | ||
ControllingCRDetails map[string]string `json:"controllingCRDetails"` | ||
Debug bool `json:"debug"` | ||
NodePrep bool `json:"nodePrep"` | ||
Version *utils.Version `json:"version"` | ||
HTTPRequestTimeout string `json:"httpRequestTimeout"` | ||
} |
Oops, something went wrong.