File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: skypilot
33description : A Helm chart for deploying SkyPilot API server on Kubernetes
44icon : " https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg"
55type : application
6- version : 0.0.2-pre-07
6+ version : 0.0.2-pre-08
77appVersion : " 0.0"
88dependencies :
99 - name : ingress-nginx
Original file line number Diff line number Diff line change @@ -541,15 +541,15 @@ spec:
541541 args :
542542 - |
543543 echo "Setting up OCI credentials..."
544- if [ -n "$OCI_CREDENTIALS_CONFIG" && -n "$OCI_CREDENTIALS_KEY" ]; then
544+ if [ -n "$OCI_CREDENTIALS_CONFIG" ] && [ -n "$OCI_CREDENTIALS_KEY" ]; then
545545 echo "OCI credentials found in environment variable."
546546 mkdir -p /root/.oci
547547 cat > /root/.oci/config <<EOF
548548 $OCI_CREDENTIALS_CONFIG
549549 EOF
550550 cat > /root/.oci/oci_api_key.pem <<EOF
551551 $OCI_CREDENTIALS_KEY
552- EOF
552+ EOF
553553 else
554554 echo "OCI credentials not found in environment variables. Skipping credentials setup."
555555 sleep 600
You can’t perform that action at this time.
0 commit comments