[ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
}
-function create_k8s_secret_regcred() {
- [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
- echo "Creating K8s secret regcred with the docker registry credentials from $HOME/.docker/config.json"
- kubectl -n osm create secret generic regcred \
- --from-file=.dockerconfigjson=$HOME/.docker/config.json \
- --type=kubernetes.io/dockerconfigjson
- [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
-}
-
function pull_docker_images() {
[ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
echo "Pulling docker images"
- if [ -n "${DOCKER_REGISTRY_URL}" ]; then
- docker_login
- create_k8s_secret_registrycreds
- fi
+ [ -n "${DOCKER_REGISTRY_URL}" ] && docker_login
echo "Pulling non-OSM docker images"
if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q KAFKA ; then
sudo service docker restart
echo "... restarted Docker service again"
fi
+
+ echo "Configuring containerd"
+ sudo mv /etc/containerd/config.toml /etc/containerd/config.toml.orig 2>/dev/null
+ sudo bash -c "containerd config default > /etc/containerd/config.toml"
+ sudo sed -i "s#\[plugins.\"io.containerd.grpc.v1.cri\".registry.mirrors\]#\[plugins.\"io.containerd.grpc.v1.cri\".registry.mirrors\]\n \[plugins.\"io.containerd.grpc.v1.cri\".registry.mirrors.\"docker.io\"\]\n endpoint = \[\"${DOCKER_PROXY_URL}\"\]\n \[plugins.\"io.containerd.grpc.v1.cri\".registry.mirrors.\"registry.hub.docker.com\"]\n endpoint = \[\"${DOCKER_PROXY_URL}\"]#" /etc/containerd/config.toml
+ sudo diff /etc/containerd/config.toml.orig /etc/containerd/config.toml
+ sudo service containerd restart
+
[ -z "${DEBUG_INSTALL}" ] || ! echo "File: /etc/docker/daemon.json" || cat /etc/docker/daemon.json
sg docker -c "docker version" || FATAL "Docker installation failed"
echo "... Docker CE installation done"