mirror of
https://github.com/rancher/os.git
synced 2025-09-15 14:40:51 +00:00
v2.0.0-rc1
* Load apparmor on boot also when booting from disk * Rename system-dockerd to system-engine * Do not cache service metadatas * Do not cache Docker image to ISO file * Disable system-docker bridge by default * Remove deprecated --oom-score-adjust flag * Update VMware tools to 12.2.5 * Update QEMU guest agent to 7.2 * Remove broken VirtualBox tools
This commit is contained in:
@@ -32,10 +32,6 @@ ln -s bin ${INITRD_DIR}/usr/sbin
|
||||
ln -s usr/sbin ${INITRD_DIR}/sbin
|
||||
|
||||
curl -SL ${!SYSTEM_DOCKER_URL} | tar --strip-components=1 -xzvf - -C ${INITRD_DIR}/usr/bin/
|
||||
# we have diabled the user-proxy so we get rid of system-docker-proxy
|
||||
rm -f ${INITRD_DIR}/usr/bin/system-docker-proxy
|
||||
# reduce size by removing debugging tool system-docker-containerd-ctr
|
||||
rm -f ${INITRD_DIR}/usr/bin/system-docker-containerd-ctr
|
||||
|
||||
cat <<HERE > ${INITRD_DIR}/usr/share/ros/os-release
|
||||
NAME="BurmillaOS"
|
||||
@@ -50,11 +46,6 @@ BUG_REPORT_URL="https://github.com/burmilla/os/issues"
|
||||
BUILD_ID=
|
||||
HERE
|
||||
|
||||
# cache os-services yml file
|
||||
cache_services "h/hyperv-vm-tools.yml"
|
||||
cache_services "o/open-vm-tools.yml"
|
||||
cache_services "q/qemu-guest-agent.yml"
|
||||
|
||||
pushd ${INITRD_DIR}/usr/etc
|
||||
ln -s ../share/ros/os-release .
|
||||
popd
|
||||
|
@@ -3,11 +3,6 @@ set -ex
|
||||
|
||||
cd $(dirname $0)/..
|
||||
|
||||
# touch .make-azurebase
|
||||
touch .make-hyperv
|
||||
touch .make-proxmoxve
|
||||
touch .make-vmware
|
||||
|
||||
source ./scripts/version
|
||||
./scripts/release-build
|
||||
|
||||
|
@@ -19,6 +19,11 @@ for i in ${APPEND_SYSTEM_IMAGES};do
|
||||
done
|
||||
|
||||
for i in ${IMAGES}; do
|
||||
# Reduce ISO file size by not caching Docker engine
|
||||
if [[ ${i} == "burmilla/os-docker:"* ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
echo "tar-image: pull($i)"
|
||||
if ! docker inspect $i >/dev/null 2>&1; then
|
||||
docker pull ${i}
|
||||
|
Reference in New Issue
Block a user