shared.go 286 B

123456789101112
  1. package deploy
  2. // SharedOpts are common options for build, create, and deploy agents
  3. type SharedOpts struct {
  4. ProjectID uint
  5. ClusterID uint
  6. Namespace string
  7. LocalPath string
  8. LocalDockerfile string
  9. OverrideTag string
  10. Method DeployBuildType
  11. }