forked from antrea-io/antrea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix base image for antrea/antrea-controller-ubi (antrea-io#6260)
The image was incorrectly using ubuntu:22.04 as the base image instead of registry.access.redhat.com/ubi8. This issue must have been present since introducing split images for the Agent and Controller in v1.15.0. Credit goes to @xliuxu for finding this issue. Signed-off-by: Antonin Bas <antonin.bas@broadcom.com>
- Loading branch information
1 parent
e9e70ec
commit 863557d
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ case $key in | |
;; | ||
--skip-unified-image) | ||
UNIFIED=false | ||
shift 2 | ||
shift | ||
;; | ||
-h|--help) | ||
print_usage | ||
|