Skip to content

Commit d259fdf

Browse files
committed
update
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
1 parent 70bc899 commit d259fdf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

charts/stable/skypilot/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: skypilot
33
description: A Helm chart for deploying SkyPilot API server on Kubernetes
44
icon: "https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg"
55
type: application
6-
version: 0.0.2-pre-07
6+
version: 0.0.2-pre-08
77
appVersion: "0.0"
88
dependencies:
99
- name: ingress-nginx

charts/stable/skypilot/templates/api-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)