-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load images #1649
Load images #1649
Conversation
Configure Renovate
@@ -63,8 +63,8 @@ public void start() { | |||
hostPodWatcher.start(); | |||
scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(); | |||
scheduledExecutorService.scheduleAtFixedRate(leadershipController::update, | |||
leaderProperties.getUpdatePeriod().toMillis(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nothing changed here, just formatting
@@ -65,7 +65,9 @@ static void beforeAll() throws Exception { | |||
Commons.validateImage(IMAGE_NAME, K3S); | |||
Commons.loadSpringCloudKubernetesImage(IMAGE_NAME, K3S); | |||
|
|||
Images.loadIstioctl(K3S); | |||
Images.loadIstioCtl(K3S); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
load all 3 images
@@ -54,7 +62,7 @@ public static String busyboxVersion() { | |||
return imageVersion(BUSYBOX); | |||
} | |||
|
|||
public static String istioctlVersion() { | |||
public static String istioVersion() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
renamed the method, since we want the same version for all 3 images
@ryanjbaxter saw your comment from yesterday, here is the fix. thank you |
No description provided.