Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

create-kubernetes-binaries-iso.sh builds the ISO without setting a volume ID on EL8 based os's

Đang mở Phù hợp với người mới
#14,180 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
1/5
Thời gian dự kiến
Dưới một giờ
Mức phù hợp với người mới
88/100
Loại issue
Lỗi
Độ rõ ràng
Đặc tả rõ ràng
Mức độ hoạt động
Sôi nổi
Công nghệ
kubernetes, shell
Lĩnh vực
cloud, infrastructure

Hướng nghiên cứu

Bắt đầu trong create-kubernetes-binaries-iso.sh và tìm lệnh mkisofs tạo ISO. Tái hiện vấn đề bằng các công cụ tương thích với xorriso của EL8, sau đó xác minh bằng blkid rằng ISO được tạo có nhãn volume CDROM như mong đợi và có thể được mount trong CloudStack.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

bug component:kubernetes
problem

create-kubernetes-binaries-iso.sh builds the ISO without setting a volume ID on EL8 based os

versions

ACS 4.20.X
ACS 4.22.X
ACS 4.23
Management server : Oracle 8 , rocky 8

The steps to reproduce the bug
  1. ISO tooling — genisoimage does not exist on EL8; xorriso provides mkisofs
sudo dnf install -y xorriso curl wget
  1. containerd (for ctr) — static tarball avoids the docker-ce repo and podman conflicts
VER=1.7.24
curl -fsSL "https://github.com/containerd/containerd/releases/download/v${VER}/containerd-${VER}-linux-amd64.tar.gz" \
  | sudo tar -C /usr/local -xz
curl -fsSL -o /tmp/runc https://github.com/opencontainers/runc/releases/download/v1.2.3/runc.amd64
sudo install -m 755 /tmp/runc /usr/local/sbin/runc
curl -fsSL https://raw.githubusercontent.com/containerd/containerd/main/containerd.service \
  | sudo tee /etc/systemd/system/containerd.service >/dev/null
sudo systemctl daemon-reload && sudo systemctl enable --now containerd
sudo ln -sf /usr/local/bin/ctr /usr/bin/ctr      # sudo secure_path excludes /usr/local/bin
  1. Verify
mkisofs --version && sudo ctr --version && wget --version | head -1 && curl --version | head -1
  1. Execute the script
./create-kubernetes-binaries-iso.sh   /var/www/html   1.37.0 1.9.1 1.37.0   https://raw.githubusercontent.com/projectcalico/calico/v3.32.2/manifests/calico.yaml   0.45.0 setup-v1.37.0 amd64 3.7.0
  1. Verify the generated iso volume label
[root@ref-trl-12298-k-Mr8-suresh-anaparti-mgmt1 util]# blkid /var/www/html/setup-v1.37.0-x86_64.iso

/var/www/html/setup-v1.37.0-x86_64.iso: BLOCK_SIZE="2048" UUID="2026-09-16-08-13-12-00" LABEL="ISOIMAGE" TYPE="iso9660"
  1. If the iso is used in cloudstack , the iso doesn't get mounted

  2. Change the script

sed -i 's|^mkisofs -o |mkisofs -V CDROM -o |' create-kubernetes-binaries-iso.sh
  1. Run the script again and check the volume label

./create-kubernetes-binaries-iso.sh   /var/www/html   1.37.0 1.9.1 1.37.0   https://raw.githubusercontent.com/projectcalico/calico/v3.32.2/manifests/calico.yaml   0.45.0 setup-v1.37.0 amd64 3.7.0


blkid /var/www/html/setup-v1.37.0-x86_64.iso
/var/www/html/setup-v1.37.0-x86_64.iso: BLOCK_SIZE="2048" UUID="2026-09-16-08-34-56-00" LABEL="CDROM" TYPE="iso9660"

Issue is not present with ubuntu based os


┌──────────────────────┬───────────────┬───────────────────┐
│                      │ Default volid │   With -V CDROM   │
├──────────────────────┼───────────────┼───────────────────┤
│ Ubuntu (genisoimage) │ CDROM         │ CDROM — unchanged │
├──────────────────────┼───────────────┼───────────────────┤
│ OL8 (xorriso compat) │ ISOIMAGE      │ CDROM — fixed     │
└──────────────────────┴───────────────┴───────────────────┘
What to do about it?

Make the following modification to the create-kubernetes-binaries-iso.sh

sed -i 's|^mkisofs -o |mkisofs -V CDROM -o |' create-kubernetes-binaries-iso.sh

Ngôn ngữ chính
Java
Star
3.1k
Fork
1.4k
Merge trung bình
6 ngày 20 giờ
Pull request đã merge (30 ngày)
27

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của apache/cloudstack

Tất cả issue của apache/cloudstack

Issue tương tự

Thêm issue về Java

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.