Skip to content
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

Remove docker.io prefix for images #2117

Merged
merged 1 commit into from
Jan 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

public class InfinispanServerTestResource implements ContainerResourceLifecycleManager {
private static final Logger LOGGER = LoggerFactory.getLogger(InfinispanServerTestResource.class);
private static final String CONTAINER_IMAGE = "docker.io/infinispan/server:10.1.5.Final";
private static final String CONTAINER_IMAGE = "infinispan/server:10.1.5.Final";
private static final int HOTROD_PORT = 11222;
private static final String USER = "camel";
private static final String PASS = "camel";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private PodSpec createPodSpec(String containerName) {
PodSpec podSpec = new PodSpec();

Container container = new Container();
container.setImage("docker.io/busybox:latest");
container.setImage("busybox:latest");
container.setName(containerName);

List<Container> containers = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class KubernetesTest {
@Test
public void testKubernetesComponent() {
Container container = new Container();
container.setImage("docker.io/busybox:latest");
container.setImage("busybox:latest");
container.setName("camel-pod");

Pod pod = new PodBuilder()
Expand Down