Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppServeApp ¶
type AppServeApp struct { ID uuid.UUID `gorm:"primarykey;type:uuid;default:uuid_generate_v4()"` Name string ContractId string Type string AppType string EndpointUrl string PreviewEndpointUrl string TargetClusterId string Status string CreatedAt time.Time UpdatedAt time.Time }
AppServeApp contains information of each AppServe application
func (*AppServeApp) BeforeCreate ¶
func (c *AppServeApp) BeforeCreate(tx *gorm.DB) (err error)
type AppServeAppTask ¶
type AppServeAppTask struct { ID uuid.UUID `gorm:"primarykey;type:uuid;default:uuid_generate_v4()"` AppServeAppId uuid.UUID Version string Strategy string Status string Output string ArtifactUrl string ImageUrl string ExecutablePath string ResourceSpec string Profile string AppConfig string AppSecret string ExtraEnv string Port string HelmRevision int32 CreatedAt time.Time UpdatedAt time.Time }
AppServeAppTask contains information of each AppServeApp task.
func (*AppServeAppTask) BeforeCreate ¶
func (c *AppServeAppTask) BeforeCreate(tx *gorm.DB) (err error)
Click to show internal directories.
Click to hide internal directories.