From: Varsha Rao Date: Fri, 11 Dec 2020 13:02:34 +0000 (+0530) Subject: script/kubejacker: Add podman push example for plain HTTP registry X-Git-Tag: v16.1.0~280^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c139d0da441fecc2c60569307f28491d1e531785;p=ceph.git script/kubejacker: Add podman push example for plain HTTP registry If the image is pushed to a plain HTTP registry then tls-verify needs to be set to false. This patch adds an example for it. Signed-off-by: Varsha Rao --- diff --git a/src/script/kubejacker/kubejacker.sh b/src/script/kubejacker/kubejacker.sh index 78670b83ea59b..586871b0e81a5 100755 --- a/src/script/kubejacker/kubejacker.sh +++ b/src/script/kubejacker/kubejacker.sh @@ -75,6 +75,8 @@ popd #docker tag $REPO/$IMAGE:$TAG $REPO/$IMAGE:latest docker push $REPO/ceph/ceph:latest #docker push $REPO/$IMAGE:$TAG +# With a plain HTTP registry +#podman push $REPO/ceph/ceph:latest --tls-verify=false # Finally, bounce the containers to pick up the new image kubectl -n $NAMESPACE delete pod -l app=rook-ceph-mds