KubeFATE
KubeFATE copied to clipboard
Docker-compose deployment requirements
- Without testing with actual data, docker is equivalent to a layer of virtualization based on the virtual machine. Performance and stability still need a complete test. I have observed that the context switch of the CPU is very serious.
- The existing docker deployment method needs to add a certificate method.
- The compatibility of the docker version also needs to be tested, including the host machine is centos, redhat, and docker version. It seems that the low version of docker has the risk of losing files during operation.
- Serving dockerized deployment also needs to be split off-line, and multi-server deployment must be implemented.
- The logs of nodemanger, clustermanager, and rollsite will be lost after restarting docker.
- The time zone and time of docker can be consistent with that of the host.
- The created image can support some basic commands, such as netstat, telnet, etc.
I suppose we can fix by this order:
- The time zone and time of docker can be consistent with that of the host.
- The existing docker deployment method needs to add a certificate method.
- The logs of nodemanger, clustermanager, and rollsite will be lost after restarting docker.
- The created image can support some basic commands, such as netstat, telnet, etc. ...