We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921792d commit 276bf12Copy full SHA for 276bf12
cloudinit/operator.template.yaml
@@ -3,8 +3,6 @@
3
4
#cloud-config
5
package_upgrade: ${operator_upgrade}
6
-packages:
7
- - python3
8
timezone: ${timezone}
9
write_files:
10
# setup script
scripts/operator.template.sh
@@ -4,11 +4,13 @@
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
if [ ${ol} = 8 ]; then
- dnf -y upgrade --security
+ dnf makecache
+ dnf config-manager --enable ol8_developer && dnf -y install python3-oci-cli
else
yum -y -t update --security
11
+ yum install -y python3
12
+ pip3 install oci-cli
13
fi
14
15
sed -i -e "s/autoinstall\s=\sno/autoinstall = yes/g" /etc/uptrack/uptrack.conf
-uptrack-upgrade -y
-pip3 install oci-cli
16
+uptrack-upgrade -y
0 commit comments