Creating bootable containers with open access after reboot

I am new to openshift and should know if after restarting the oc cluster or restarting the server it is possible to make all containers at the initial start by restarting the server.

The following tutorial requires that you create a cluster

The following was done:
oc cluster up

The problem I'm currently facing is that after entering my openshift application, the application oc cluster down && oc cluser updoes not display any of my running containers.

I tried reloading them all by doing docker start $(docker ps -qa), but the containers are still not showing up in the openshift source application.

Any advice on how to solve this problem would be greatly appreciated.

+1
source share
1 answer

You need to say that it saves etcd and configuration data through reboots. Cm:

If you specify that to save data may depend on whether you use the local Docker service directly or the docker machine.

+2
source

Source: https://habr.com/ru/post/1666466/


All Articles