Skip to content

Commit

Permalink
fix: some builder image may longer than 64 char (#72)
Browse files Browse the repository at this point in the history
# Why:
- some image length can longer than 64 char

Signed-off-by: lijie <lijie@pingcap.com>
  • Loading branch information
lijie authored Jan 26, 2024
1 parent d3934f2 commit 594e266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tibuild/pkg/rest/service/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ type DevBuildSpec struct {
BuildEnv string `json:"buildEnv,omitempty" gorm:"type:varchar(128)"`
ProductDockerfile string `json:"productDockerfile,omitempty" gorm:"type:varchar(128)"`
ProductBaseImg string `json:"productBaseImg,omitempty" gorm:"type:varchar(128)"`
BuilderImg string `json:"builderImg,omitempty" gorm:"type:varchar(64)"`
BuilderImg string `json:"builderImg,omitempty" gorm:"type:varchar(128)"`
GithubRepo string `json:"githubRepo,omitempty" gorm:"type:varchar(64)"`
IsPushGCR bool `json:"isPushGCR,omitempty"`
Features string `json:"features,omitempty" gorm:"type:varchar(128)"`
Expand Down

0 comments on commit 594e266

Please sign in to comment.