Skip to content

Commit 1d1ebf0

Browse files
authored
Merge pull request #304 from lae/develop
Release 1.9.4
2 parents 73955ef + 9740e38 commit 1d1ebf0

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pve_zfs_enabled: no
2828
# pve_zfs_zed_email: "email address for zfs events"
2929
pve_zfs_create_volumes: []
3030
pve_ceph_enabled: false
31-
pve_ceph_repository_line: "deb http://download.proxmox.com/debian/{% if ansible_distribution_release == 'buster' %}ceph-nautilus buster{% else %}ceph-quincy bullseye{% endif %} main"
31+
pve_ceph_repository_line: "deb http://download.proxmox.com/debian/ceph-{{ pve_ceph_default_version }} {{ ansible_distribution_release }} {{ pve_ceph_debian_component }}"
3232
pve_ceph_network: "{{ (ansible_default_ipv4.network +'/'+ ansible_default_ipv4.netmask) | ansible.utils.ipaddr('net') }}"
3333
pve_ceph_nodes: "{{ pve_group }}"
3434
pve_ceph_mon_group: "{{ pve_group }}"

tasks/pcie_passthrough.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
dest: /etc/default/grub
55
marker: "# {mark}: IOMMU default grub configuration (managed by ansible)."
66
content: "\
7-
{% if '\"GenuineIntel\" in ansible_processor | unique' %}GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX intel_iommu=on\"\n{% endif %}\
7+
{% if 'GenuineIntel' in ansible_processor %}GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX intel_iommu=on\"\n{% endif %}\
88
{% if (pve_iommu_passthrough_mode | bool) %}GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX iommu=pt\"\n{% endif %}\
99
{% if (pve_mediated_devices_enabled | bool) %}GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX i915.enable_gvt=1 i915.enable_guc=0\"\n{% endif %}\
1010
{% if (pve_pci_device_ids | length > 0) %}GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX vfio-pci.ids={% for k in pve_pci_device_ids %}{{ k.id }}{% if k != (pve_pci_device_ids | last) %},{% endif %}{% endfor %}\"{% endif %}"

vars/debian-bookworm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
---
22
pve_ssh_ciphers: "aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected]"
3+
pve_ceph_default_version: reef
4+
pve_ceph_debian_component: no-subscription

vars/debian-bullseye.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
pve_release_key: proxmox-ve-release-7.x.asc
33
pve_release_key_id: DD4BA3917E23BF59
44
pve_ssh_ciphers: "aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected]"
5+
pve_ceph_default_version: quincy
6+
pve_ceph_debian_component: main

vars/debian-buster.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
pve_release_key: proxmox-ve-release-6.x.asc
33
pve_release_key_id: 7BF2812E8A6E88E0
44
pve_ssh_ciphers: "aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected]"
5+
pve_ceph_default_version: nautilus
6+
pve_ceph_debian_component: main

0 commit comments

Comments
 (0)