Skip to content

Commit

Permalink
auto-bumper: Skip kube-secondary-dns (#1474)
Browse files Browse the repository at this point in the history
Until go-git/go-git#485 is fixed since
it blocks the auto bumper when cloning the KSD repository.
https://github.com/kubevirt/cluster-network-addons-operator/actions/runs/3629947036/jobs/6122730934

Signed-off-by: Or Shoval <oshoval@redhat.com>

Signed-off-by: Or Shoval <oshoval@redhat.com>
  • Loading branch information
oshoval committed Dec 7, 2022
1 parent cd23d72 commit b07ac62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/bumper/bumper.go
Expand Up @@ -50,6 +50,10 @@ func main() {

var failedComponents []string
for componentName, component := range componentsConfig.Components {
if componentName == "kube-secondary-dns" {
logger.Printf("~~Skipping %s because of known problem with go-git~~", componentName)
continue
}
logger.Printf("~~Checking if %s needs bumping~~", componentName)

err = printCurrentComponentParams(component)
Expand Down

0 comments on commit b07ac62

Please sign in to comment.