diff options
| author | peter <[email protected]> | 2021-01-23 20:40:47 -0800 |
|---|---|---|
| committer | peter <[email protected]> | 2021-01-23 20:40:47 -0800 |
| commit | 25670548051dfb87cf9de83744ace67a312fa763 (patch) | |
| tree | fa3c362eb49f76dae486c95dbd1e8fb6e9fd4f20 /helm/values.yaml | |
| parent | add gpu passthrough support as well as dynamic OpenCore regeneration (diff) | |
| download | docker-osx-25670548051dfb87cf9de83744ace67a312fa763.tar.xz docker-osx-25670548051dfb87cf9de83744ace67a312fa763.zip | |
remove cmd to install kernel in pod runtime as it has been migrated to Dockerfile
Diffstat (limited to 'helm/values.yaml')
| -rw-r--r-- | helm/values.yaml | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/helm/values.yaml b/helm/values.yaml index 984d266..bbf416a 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -12,37 +12,41 @@ image: # Please note, this must be a directory name within `/system_image` mounted at the bottom in extraVolumeMounts serverName: server -# add kexts to EFI/OC/kexts and update config.plist -# make sure your kexts are in kexts.path -kexts: - add: false - path: /system_image/kexts - kextsToAdd: {} - # - name: BrcmBluetoothInjector.kext - # executablePath: Contents/MacOS/BrcmBluetoothInjector - # plistPath: Contents/Info.plist - # - name: BrcmFirmwareData.kext - # executablePath: Contents/MacOS/BrcmFirmwareData - # plistPath: Contents/Info.plist - # - name: BrcmPatchRAM3.kext - # executablePath: Contents/MacOS/BrcmPatchRAM3 - # plistPath: Contents/Info.plist - -# SMBIOS settings -configPlist: - SystemProductName: iMacPro1,1 - MLB: D25338500GUF8YLJA - SystemSerialNumber: D25LF7ZEF8JC - SystemUUID: 139C94D6-A533-47D2-874F-D365BFD8B047 - bootArgs: '-v keepsyms=1 tlbto_us=0 vti=9 -wegoff agdpmod=pikera' - -openCore: - # Rebuild OpenCore.qcow2: this can be disabled if none of the above parameters in kexts, configPlist changes, and changing the - # resolution are not desired, utilizing gpu passthrough and a few other things. Disabling is not recommended - rebuild: true - boot: - # set to zero to have OpenCore stay at boot menu - timeout: 0 +macos: + # add kexts to EFI/OC/kexts and update config.plist + # make sure your kexts are in kexts.path + kexts: + add: false + path: /system_image/kexts + kextsToAdd: {} + # - name: BrcmBluetoothInjector.kext + # executablePath: Contents/MacOS/BrcmBluetoothInjector + # plistPath: Contents/Info.plist + # - name: BrcmFirmwareData.kext + # executablePath: Contents/MacOS/BrcmFirmwareData + # plistPath: Contents/Info.plist + # - name: BrcmPatchRAM3.kext + # executablePath: Contents/MacOS/BrcmPatchRAM3 + # plistPath: Contents/Info.plist + # SMBIOS settings + configPlist: + SystemProductName: iMacPro1,1 + MLB: D25338500GUF8YLJA + SystemSerialNumber: D25LF7ZEF8JC + SystemUUID: 139C94D6-A533-47D2-874F-D365BFD8B047 + bootArgs: '-v keepsyms=1 tlbto_us=0 vti=9 -wegoff agdpmod=pikera' + openCore: + # Rebuild OpenCore.qcow2: this can be disabled if none of the above parameters in kexts, configPlist changes, and changing the + # resolution are not desired, utilizing gpu passthrough and a few other things. Disabling is not recommended + rebuild: true + boot: + # set to zero to have OpenCore stay at boot menu + timeout: 0 + installerSettings: + # if using more than one deployment, a write lock will be put on the system installer dmg, so this will need to be disabled + # for other pods + version: 10.15.7 + path: /system_image/installers # This section defines QEMU and virtlo parameters # @@ -75,8 +79,6 @@ qemu: # if using more than one deployment, a write lock will be put on the system installer dmg, so this will need to be disabled # for other pods enabled: false - version: 10.15.7 - path: /system_image/installers downloadDelay: 15 # can be `writethrough`, `writeback`, or `none` cache: none |