You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installing with install.sh should generate SSL certifcates with only containerd installed
if [[ $ENABLE_SSL = "true" ]];then
echo "[Step 0/6] Generate SSL key and cert"
exist=$(kubectl get secret -n kube-system kube-ovn-tls --ignore-not-found)
if [[ $exist == "" ]];then
docker run --rm -v "$PWD":/etc/ovn $REGISTRY/kube-ovn:$VERSION bash generate-ssl.sh
kubectl create secret generic -n kube-system kube-ovn-tls --from-file=cacert=cacert.pem --from-file=cert=ovn-cert.pem --from-file=key=ovn-privkey.pem
rm -rf cacert.pem ovn-cert.pem ovn-privkey.pem ovn-req.pem
fi
echo "-------------------------------"
echo ""
fi
The text was updated successfully, but these errors were encountered:
Smithx10
changed the title
Installing with install.sh should generating SSL certifcates with crictl if docker not present
Installing with install.sh should generate SSL certifcates with crictl if docker not present
Mar 23, 2024
Smithx10
changed the title
Installing with install.sh should generate SSL certifcates with crictl if docker not present
Installing with install.sh should generate SSL certifcates with only containerd installed
Mar 23, 2024
Installing with install.sh should generate SSL certifcates with only containerd installed
The text was updated successfully, but these errors were encountered: