Skip to content

Commit 0863da7

Browse files
committed
docs: update README for Ubuntu Resolute
Documents the Ubuntu Resolute (26.04) stemcell build and test process.
1 parent 32083fe commit 0863da7

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,25 @@ docker run \
3434
--privileged \
3535
-v "$(pwd):/opt/bosh" \
3636
--workdir /opt/bosh \
37-
--user=1000:1000 \
37+
--user="$(id -u):$(id -g)" \
3838
-it \
3939
bosh/os-image-stemcell-builder:${short_name}
4040

4141
# You're now in the Docker container
42+
export short_name="resolute"
43+
4244
ulimit -n 16384 # only necessary if your host is Fedora
4345
gem install bundler
4446
bundle install
4547

4648
# build OS image
47-
bundle exec rake stemcell:build_os_image[ubuntu,${short_name},${PWD}/tmp/ubuntu_base_image.tgz]
49+
bundle exec rake stemcell:build_os_image[ubuntu,${short_name},${PWD}/tmp/ubuntu_base_image_${short_name}.tgz]
4850

4951
# build vSphere stemcell
50-
bundle exec rake stemcell:build[vsphere,esxi,ubuntu,${short_name},${PWD}/tmp/ubuntu_base_image.tgz]
52+
bundle exec rake stemcell:build[vsphere,esxi,ubuntu,${short_name},${PWD}/tmp/ubuntu_base_image_${short_name}.tgz,9.000]
53+
54+
# build warden (BOSH Lite) stemcell
55+
bundle exec rake stemcell:build[warden,warden,ubuntu,${short_name},${PWD}/tmp/ubuntu_base_image_${short_name}.tgz,9.000]
5156
```
5257

5358
When building a vSphere stemcell, you must download `VMware-ovftool-*.bundle`

0 commit comments

Comments
 (0)