Skip to content

Commit

Permalink
Merge pull request #35 from oracle-quickstart/temp-conf-fix
Browse files Browse the repository at this point in the history
Temporary fix for registries.conf for non-stack deployments
  • Loading branch information
arnaudfroidmont authored Oct 3, 2024
2 parents 8d48da6 + bfec232 commit b09f579
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion terraform/cloud-init/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ while fuser /var/lib/apt/lists/lock >/dev/null 2>&1 ; do
done

apt update

apt install -y oci-oke-node-all*

# TEMPORARY REQUIREMENT: Edit registries.conf to add unqualified registries
cat <<EOF > /etc/containers/registries.conf
unqualified-search-registries = ["container-registry.oracle.com", "docker.io"]
short-name-mode = "permissive"
EOF

oke bootstrap --manage-gpu-services

0 comments on commit b09f579

Please sign in to comment.