perf: update builder runner version (#1961)

Signed-off-by: 张启航 <101104760+ZhangSetSail@users.noreply.github.com>
This commit is contained in:
张启航 2024-07-31 11:44:53 +08:00 committed by GitHub
parent 2601860ca9
commit 1e9f3b73c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ on:
default: 'https://github.com/goodrain' default: 'https://github.com/goodrain'
version: version:
description: 'version' description: 'version'
default: 'v5.17.2-release' default: 'v5.17.3-release'
required: true required: true
environment: environment:
description: 'environment' description: 'environment'

View File

@ -118,4 +118,4 @@ func GetRunnerImage(brVersion string) string {
} }
// CIVERSION - // CIVERSION -
var CIVERSION = "v5.17.2-release" var CIVERSION = "v5.17.3-release"

View File

@ -112,7 +112,7 @@ func (a *Builder) AddFlags(fs *pflag.FlagSet) {
fs.BoolVar(&a.BuildKitCache, "buildkit-cache", false, "whether to enable the buildkit image cache") fs.BoolVar(&a.BuildKitCache, "buildkit-cache", false, "whether to enable the buildkit image cache")
fs.IntVar(&a.KeepCount, "keep-count", 5, "default number of reserved copies for images") fs.IntVar(&a.KeepCount, "keep-count", 5, "default number of reserved copies for images")
fs.IntVar(&a.CleanInterval, "clean-interval", 60, "clean image interval,default 60 minute") fs.IntVar(&a.CleanInterval, "clean-interval", 60, "clean image interval,default 60 minute")
fs.StringVar(&a.BRVersion, "br-version", "v5.17.2-release", "builder and runner version") fs.StringVar(&a.BRVersion, "br-version", "v5.17.3-release", "builder and runner version")
fs.StringSliceVar(&a.EventLogServers, "event-servers", []string{"rbd-eventlog:6366"}, "event log server address. simple lb") fs.StringSliceVar(&a.EventLogServers, "event-servers", []string{"rbd-eventlog:6366"}, "event log server address. simple lb")
fs.StringVar(&a.MQAPI, "mq-api", "rbd-mq:6300", "acp_mq api") fs.StringVar(&a.MQAPI, "mq-api", "rbd-mq:6300", "acp_mq api")