Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reinstall macos - downloading the installer build manifest failed #175

Open
cc901109 opened this issue Jan 2, 2025 · 0 comments
Open

Reinstall macos - downloading the installer build manifest failed #175

cc901109 opened this issue Jan 2, 2025 · 0 comments

Comments

@cc901109
Copy link

cc901109 commented Jan 2, 2025

Operating system

ubuntu 22.04 / k8s v1.28.0

Description

I follow the steps
Choose Disk Utility and then select the largest Apple Inc. VirtIO Block Media disk.

Click the Erase button to format the disk to APFS, and give it any recognizable name you like.

Close the current window and proceed the installation by clicking Reinstall macOS.

when reinstall macos has this error

image

Docker compose

---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: macos-pvc
spec:
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 64Gi
---
apiVersion: v1
kind: Pod
metadata:
  name: macos
  labels:
    name: macos
spec:
  containers:
  - name: macos
    image: dockurr/macos
    env:
    - name: VERSION
      value: "13"
    - name: RAM_SIZE
      value: "4G"
    - name: CPU_CORES
      value: "2"
    - name: DISK_SIZE
      value: "64G"
    ports:
    - containerPort: 8006
    - containerPort: 5900
    - containerPort: 5900
      protocol: UDP
    securityContext:
      capabilities:
        add:
        - NET_ADMIN
      privileged: true
    volumeMounts:
    - mountPath: /storage
      name: storage
    - mountPath: /dev/kvm
      name: dev-kvm
    - mountPath: /dev/net/tun
      name: dev-tun
  terminationGracePeriodSeconds: 120
  volumes:
  - name: storage
    persistentVolumeClaim:
      claimName: macos-pvc
  - hostPath:
      path: /dev/kvm
    name: dev-kvm
  - hostPath:
      path: /dev/net/tun
      type: CharDevice
    name: dev-tun
---
apiVersion: v1
kind: Service
metadata:
  name: macos
spec:
  ports:
  - name: tcp-8006
    port: 8006
  - name: tcp-5900
    port: 5900
  - name: udp-5900
    port: 5900
    protocol: UDP
  selector:
    name: macos
  type: NodePort

Docker log

image

Screenshots (optional)

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant