track agnhost version in dependencies.yaml

This commit is contained in:
Benjamin Elder 2020-08-20 16:54:07 -07:00
parent 1c548c328a
commit 9d7a94263a
2 changed files with 20 additions and 1 deletions

View File

@ -1,4 +1,20 @@
dependencies:
# agnhost: bump this one first
- name: "agnhost"
version: "2.20"
refPaths:
- path: test/images/agnhost/VERSION
match: \d.\d
- path: test/images/agnhost/agnhost.go
match: "Version:"
# then after merge and successful postsubmit image push / promotion, bump this
- name: "agnhost: dependents"
version: "2.20"
refPaths:
- path: test/utils/image/manifest.go
match: configs\[Agnhost\] = Config{promoterE2eRegistry, "agnhost", "\d+\.\d+"}
# Bazel
- name: "repo-infra"
version: 0.0.12

View File

@ -49,7 +49,10 @@ import (
)
func main() {
rootCmd := &cobra.Command{Use: "app", Version: "2.20"}
rootCmd := &cobra.Command{
Use: "app",
Version: "2.20",
}
rootCmd.AddCommand(auditproxy.CmdAuditProxy)
rootCmd.AddCommand(connect.CmdConnect)