Last active
November 12, 2022 18:50
-
-
Save tobiasmcnulty/7dbbdbc67abc08cbb013bf5983852ed6 to your computer and use it in GitHub Desktop.
Kolla-Ansible files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: localhost | |
tags: ext_net | |
tasks: | |
- name: Check OS_ environment variables are available | |
assert: | |
that: | |
- os_images_auth['auth_url'] != "" | |
# Network and subnet adapted from: | |
# https://github.com/openstack/kolla-ansible/blob/22cc60b21f98bb0ae0b2d78f0465b6fbdf07d5a2/tools/init-runonce#L99-L103 | |
- name: External network in OpenStack | |
openstack.cloud.network: | |
auth: "{{ os_images_auth }}" | |
state: present | |
name: ext_net | |
external: true | |
provider_physical_network: physnet1 | |
provider_network_type: flat | |
- name: External subnet in OpenStack | |
openstack.cloud.subnet: | |
auth: "{{ os_images_auth }}" | |
state: present | |
network_name: ext_net | |
name: ext_net_subnet | |
enable_dhcp: no | |
cidr: 192.168.50.0/24 | |
gateway_ip: 192.168.50.1 | |
allocation_pool_start: 192.168.50.10 | |
allocation_pool_end: 192.168.50.254 | |
- hosts: localhost | |
tags: security_group | |
tasks: | |
- name: Check OS_ environment variables are available | |
assert: | |
that: | |
- os_images_auth['auth_url'] != "" | |
- openstack.cloud.security_group_rule: | |
auth: "{{ os_images_auth }}" | |
security_group: default | |
protocol: icmp | |
remote_ip_prefix: 0.0.0.0/0 | |
- openstack.cloud.security_group_rule: | |
auth: "{{ os_images_auth }}" | |
security_group: default | |
protocol: tcp | |
port_range_min: 22 | |
port_range_max: 22 | |
remote_ip_prefix: 0.0.0.0/0 | |
# Execute these tasks from one of the openstack nodes due to the image size | |
- hosts: openstack[0] | |
tags: [image] | |
vars: | |
os_images_user: kolla | |
os_images_cache: "/home/{{ os_images_user }}/disk-images" | |
images: | |
# Ubuntu Server 20.04 LTS (Focal Fossa) | |
- name: focal-20221103 | |
url: https://cloud-images.ubuntu.com/focal/20221103/focal-server-cloudimg-amd64.img | |
checksum: sha256:339e17ffaba166adac9e32154c45fb6a9148c31063362d8413868650f577943b | |
# Ubuntu Server 22.04 LTS (Jammy Jellyfish) | |
- name: jammy-20221104 | |
url: https://cloud-images.ubuntu.com/jammy/20221104/jammy-server-cloudimg-amd64.img | |
checksum: sha256:3e2ba65238bdb455b0ae416b8bf1fec7655aeec757582d9bc873616c526ebe2e | |
tasks: | |
- name: Check OS_ environment variables are available | |
assert: | |
that: | |
- os_images_auth['auth_url'] != "" | |
- name: Install openstacksdk | |
pip: | |
name: openstacksdk<0.99 | |
- name: Install qemu-utils | |
become: yes | |
apt: | |
name: qemu-utils | |
- name: Ensure download cache dir exists | |
become: yes | |
file: | |
path: "{{ os_images_cache }}" | |
owner: "{{ os_images_user }}" | |
group: "{{ os_images_user }}" | |
state: directory | |
# https://docs.openstack.org/image-guide/obtain-images.html | |
- name: Download Ubuntu Image | |
become: yes | |
become_user: "{{ os_images_user }}" | |
get_url: | |
url: "{{ item.url }}" | |
checksum: "{{ item.checksum }}" | |
dest: "{{ os_images_cache }}/{{ item.url | basename }}" | |
loop: "{{ images }}" | |
# QCOW2 not supported with Ceph backend: | |
# https://bugzilla.redhat.com/show_bug.cgi?id=1661567 | |
- name: Convert qcow2 to raw | |
become: yes | |
become_user: "{{ os_images_user }}" | |
command: qemu-img convert {{ os_images_cache }}/{{ item.url | basename }} {{ os_images_cache }}/{{ item.url | basename | regex_replace('img$', 'raw') }} | |
loop: "{{ images }}" | |
# https://docs.ansible.com/ansible/latest/collections/openstack/cloud/image_module.html | |
- name: Add Ubuntu image to the OpenStack Image Repository | |
openstack.cloud.image: | |
auth: "{{ os_images_auth }}" | |
name: "{{ item.name }}" | |
container_format: bare | |
disk_format: raw | |
state: present | |
filename: "{{ os_images_cache }}/{{ item.url | basename | regex_replace('img$', 'raw') }}" | |
is_public: "yes" | |
tags: | |
- custom | |
properties: | |
cpu_arch: x86_64 | |
distro: ubuntu | |
loop: "{{ images }}" | |
- hosts: openstack[0] | |
tags: [user-data-image] | |
tasks: | |
- name: Install cloud-image-utils | |
become: yes | |
apt: | |
name: cloud-image-utils | |
- name: Create user-data for password login | |
copy: | |
content: | | |
#cloud-config | |
password: {{ ubuntu_user_password }} | |
chpasswd: { expire: False } | |
ssh_pwauth: True | |
dest: /tmp/user-data | |
- name: Create user-data.img | |
command: cloud-localds /tmp/user-data.img /tmp/user-data | |
- name: Add user-data image to the OpenStack Image Repository | |
openstack.cloud.image: | |
auth: "{{ os_images_auth }}" | |
name: "ubuntu-user-password" | |
container_format: bare | |
disk_format: raw | |
state: present | |
filename: "/tmp/user-data.img" | |
is_public: "yes" | |
tags: | |
- custom | |
properties: | |
cpu_arch: x86_64 | |
distro: ubuntu | |
- hosts: localhost | |
tags: [flavor] | |
tasks: | |
- name: Create compute flavors | |
openstack.cloud.compute_flavor: | |
auth: "{{ os_images_auth }}" | |
state: present | |
name: "{{ item.name }}" | |
ram: "{{ item.ram }}" | |
vcpus: "{{ item.vcpus }}" | |
disk: "{{ item.disk }}" | |
loop: | |
# Adapted from: | |
# https://github.com/openstack/kolla-ansible/blob/master/tools/init-runonce#L144-L148 | |
- {name: m1.tiny, vcpus: 1, ram: 512, disk: 8} | |
- {name: m1.small, vcpus: 1, ram: 2048, disk: 20} | |
- {name: m1.medium, vcpus: 2, ram: 4096, disk: 40} | |
- {name: m1.large, vcpus: 4, ram: 8192, disk: 80} | |
- {name: m1.xlarge, vcpus: 8, ram: 16384, disk: 160} | |
- hosts: localhost | |
tags: [keypair] | |
tasks: | |
# Creates a key pair with the running users public key | |
- openstack.cloud.keypair: | |
auth: "{{ os_images_auth }}" | |
state: present | |
name: "{{ item.username }}" | |
public_key: "{{ item.authorized_keys.0 }}" | |
loop: "{{ users }}" | |
- hosts: localhost | |
tags: [server] | |
tasks: | |
- name: Launch Ubuntu 20.04 instance | |
openstack.cloud.server: | |
auth: "{{ os_images_auth }}" | |
name: mira-20.04 | |
state: present | |
image: focal-20221103 | |
network: ext_net | |
key_name: "{{ lookup('env', 'USER') }}" | |
timeout: 200 | |
flavor: m1.small | |
# Uncomment to provision a volume to boot from (will be stored in Ceph either way): | |
# boot_from_volume: yes | |
# volume_size: 8 | |
- name: Launch Ubuntu 22.04 instance | |
openstack.cloud.server: | |
auth: "{{ os_images_auth }}" | |
name: mira-22.04 | |
state: present | |
image: jammy-20221104 | |
network: ext_net | |
key_name: "{{ lookup('env', 'USER') }}" | |
timeout: 200 | |
flavor: m1.small | |
# Uncomment to provision a volume to boot from (will be stored in Ceph either way): | |
# boot_from_volume: yes | |
# volume_size: 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 0.000000] Linux version 5.4.0-131-generic (buildd@lcy02-amd64-108) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 (Ubuntu 5.4.0-131.147-generic 5.4.210) | |
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-131-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 | |
[ 0.000000] KERNEL supported cpus: | |
[ 0.000000] Intel GenuineIntel | |
[ 0.000000] AMD AuthenticAMD | |
[ 0.000000] Hygon HygonGenuine | |
[ 0.000000] Centaur CentaurHauls | |
[ 0.000000] zhaoxin Shanghai | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdafff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000007ffdb000-0x000000007fffffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved | |
[ 0.000000] NX (Execute Disable) protection: active | |
[ 0.000000] SMBIOS 2.8 present. | |
[ 0.000000] DMI: OpenStack Foundation OpenStack Nova, BIOS 1.13.0-1ubuntu1.1 04/01/2014 | |
[ 0.000000] Hypervisor detected: KVM | |
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 | |
[ 0.000000] kvm-clock: cpu 0, msr 10601001, primary cpu clock | |
[ 0.000000] kvm-clock: using sched offset of 3947215673 cycles | |
[ 0.000007] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns | |
[ 0.000014] tsc: Detected 3300.000 MHz processor | |
[ 0.002003] last_pfn = 0x7ffdb max_arch_pfn = 0x400000000 | |
[ 0.002070] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT | |
[ 0.010599] found SMP MP-table at [mem 0x000f5c70-0x000f5c7f] | |
[ 0.010741] check: Scanning 1 areas for low memory corruption | |
[ 0.010807] Using GB pages for direct mapping | |
[ 0.010910] RAMDISK: [mem 0x34b47000-0x3659afff] | |
[ 0.010922] ACPI: Early table checksum verification disabled | |
[ 0.010941] ACPI: RSDP 0x00000000000F5A80 000014 (v00 BOCHS ) | |
[ 0.010949] ACPI: RSDT 0x000000007FFE1504 00002C (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) | |
[ 0.010964] ACPI: FACP 0x000000007FFE1418 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) | |
[ 0.010970] ACPI: DSDT 0x000000007FFE0040 0013D8 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) | |
[ 0.010974] ACPI: FACS 0x000000007FFE0000 000040 | |
[ 0.010977] ACPI: APIC 0x000000007FFE148C 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) | |
[ 0.010980] ACPI: Reserving FACP table memory at [mem 0x7ffe1418-0x7ffe148b] | |
[ 0.010981] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1417] | |
[ 0.010982] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] | |
[ 0.010983] ACPI: Reserving APIC table memory at [mem 0x7ffe148c-0x7ffe1503] | |
[ 0.011435] No NUMA configuration found | |
[ 0.011436] Faking a node at [mem 0x0000000000000000-0x000000007ffdafff] | |
[ 0.011452] NODE_DATA(0) allocated [mem 0x7ffb0000-0x7ffdafff] | |
[ 0.012149] Zone ranges: | |
[ 0.012150] DMA [mem 0x0000000000001000-0x0000000000ffffff] | |
[ 0.012151] DMA32 [mem 0x0000000001000000-0x000000007ffdafff] | |
[ 0.012152] Normal empty | |
[ 0.012153] Device empty | |
[ 0.012154] Movable zone start for each node | |
[ 0.012157] Early memory node ranges | |
[ 0.012158] node 0: [mem 0x0000000000001000-0x000000000009efff] | |
[ 0.012159] node 0: [mem 0x0000000000100000-0x000000007ffdafff] | |
[ 0.012623] Zeroed struct page in unavailable ranges: 135 pages | |
[ 0.012624] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdafff] | |
[ 0.020050] ACPI: PM-Timer IO Port: 0x608 | |
[ 0.020076] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) | |
[ 0.020141] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 | |
[ 0.020145] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) | |
[ 0.020147] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) | |
[ 0.020148] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) | |
[ 0.020152] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) | |
[ 0.020153] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) | |
[ 0.020159] Using ACPI (MADT) for SMP configuration information | |
[ 0.020165] TSC deadline timer available | |
[ 0.020166] smpboot: Allowing 1 CPUs, 0 hotplug CPUs | |
[ 0.020205] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] | |
[ 0.020206] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] | |
[ 0.020207] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] | |
[ 0.020207] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] | |
[ 0.020209] [mem 0x80000000-0xfeffbfff] available for PCI devices | |
[ 0.020210] Booting paravirtualized kernel on KVM | |
[ 0.020219] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns | |
[ 0.020223] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1 | |
[ 0.020884] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u2097152 | |
[ 0.020927] setup async PF for cpu 0 | |
[ 0.020934] kvm-stealtime: cpu 0, msr 7da32040 | |
[ 0.020943] Built 1 zonelists, mobility grouping on. Total pages: 515940 | |
[ 0.020944] Policy zone: DMA32 | |
[ 0.020945] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-131-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 | |
[ 0.021537] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) | |
[ 0.021682] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) | |
[ 0.021737] mem auto-init: stack:off, heap alloc:on, heap free:off | |
[ 0.026605] Memory: 1996348K/2096612K available (14339K kernel code, 2394K rwdata, 9488K rodata, 2756K init, 4952K bss, 100264K reserved, 0K cma-reserved) | |
[ 0.027343] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 | |
[ 0.027370] Kernel/User page tables isolation: enabled | |
[ 0.027398] ftrace: allocating 44619 entries in 175 pages | |
[ 0.046185] rcu: Hierarchical RCU implementation. | |
[ 0.046187] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1. | |
[ 0.046188] Tasks RCU enabled. | |
[ 0.046189] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. | |
[ 0.046190] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 | |
[ 0.048734] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16 | |
[ 0.048924] random: crng init done | |
[ 0.063346] Console: colour VGA+ 80x25 | |
[ 0.103246] printk: console [tty1] enabled | |
[ 0.205924] printk: console [ttyS0] enabled | |
[ 0.206950] ACPI: Core revision 20190816 | |
[ 0.207943] APIC: Switch to symmetric I/O mode setup | |
[ 0.209458] x2apic enabled | |
[ 0.210527] Switched APIC routing to physical x2apic. | |
[ 0.213151] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f914c51abd, max_idle_ns: 440795298667 ns | |
[ 0.215482] Calibrating delay loop (skipped) preset value.. 6600.00 BogoMIPS (lpj=13200000) | |
[ 0.217370] pid_max: default: 32768 minimum: 301 | |
[ 0.218481] LSM: Security Framework initializing | |
[ 0.219480] Yama: becoming mindful. | |
[ 0.219480] AppArmor: AppArmor initialized | |
[ 0.219480] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) | |
[ 0.219480] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) | |
[ 0.219480] *** VALIDATE tmpfs *** | |
[ 0.219480] *** VALIDATE proc *** | |
[ 0.219480] *** VALIDATE cgroup1 *** | |
[ 0.219480] *** VALIDATE cgroup2 *** | |
[ 0.219480] x86/cpu: User Mode Instruction Prevention (UMIP) activated | |
[ 0.219480] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 | |
[ 0.219480] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 | |
[ 0.219480] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization | |
[ 0.219480] Spectre V2 : Mitigation: Retpolines | |
[ 0.219480] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch | |
[ 0.219480] Spectre V2 : Enabling Restricted Speculation for firmware calls | |
[ 0.219480] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier | |
[ 0.219480] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp | |
[ 0.219480] MDS: Mitigation: Clear CPU buffers | |
[ 0.219480] SRBDS: Unknown: Dependent on hypervisor status | |
[ 0.219480] Freeing SMP alternatives memory: 40K | |
[ 0.219480] smpboot: CPU0: Intel Xeon E3-12xx v2 (Ivy Bridge, IBRS) (family: 0x6, model: 0x3a, stepping: 0x9) | |
[ 0.219480] Performance Events: unsupported p6 CPU model 58 no PMU driver, software events only. | |
[ 0.219533] rcu: Hierarchical SRCU implementation. | |
[ 0.221194] NMI watchdog: Perf NMI watchdog permanently disabled | |
[ 0.222600] smp: Bringing up secondary CPUs ... | |
[ 0.223487] smp: Brought up 1 node, 1 CPU | |
[ 0.224452] smpboot: Max logical packages: 1 | |
[ 0.225457] smpboot: Total of 1 processors activated (6600.00 BogoMIPS) | |
[ 0.227537] devtmpfs: initialized | |
[ 0.228427] x86/mm: Memory block size: 128MB | |
[ 0.229724] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns | |
[ 0.231488] futex hash table entries: 256 (order: 2, 16384 bytes, linear) | |
[ 0.233054] pinctrl core: initialized pinctrl subsystem | |
[ 0.234395] PM: RTC time: 18:29:00, date: 2022-11-12 | |
[ 0.235591] NET: Registered protocol family 16 | |
[ 0.236706] audit: initializing netlink subsys (disabled) | |
[ 0.238057] EISA bus registered | |
[ 0.238856] cpuidle: using governor ladder | |
[ 0.239485] cpuidle: using governor menu | |
[ 0.240469] ACPI: bus type PCI registered | |
[ 0.241540] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 | |
[ 0.243224] PCI: Using configuration type 1 for base access | |
[ 0.243513] audit: type=2000 audit(1668277740.818:1): state=initialized audit_enabled=0 res=1 | |
[ 0.246704] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages | |
[ 0.247488] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages | |
[ 0.249897] ACPI: Added _OSI(Module Device) | |
[ 0.250905] ACPI: Added _OSI(Processor Device) | |
[ 0.251487] ACPI: Added _OSI(3.0 _SCP Extensions) | |
[ 0.252593] ACPI: Added _OSI(Processor Aggregator Device) | |
[ 0.253824] ACPI: Added _OSI(Linux-Dell-Video) | |
[ 0.255493] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) | |
[ 0.256726] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) | |
[ 0.258756] ACPI: 1 ACPI AML tables successfully acquired and loaded | |
[ 0.260710] ACPI: Interpreter enabled | |
[ 0.263535] ACPI: (supports S0 S3 S4 S5) | |
[ 0.264496] ACPI: Using IOAPIC for interrupt routing | |
[ 0.265657] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug | |
[ 0.267602] ACPI: Enabled 2 GPEs in block 00 to 0F | |
[ 0.271363] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) | |
[ 0.271504] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3] | |
[ 0.273285] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. | |
[ 0.275769] acpiphp: Slot [3] registered | |
[ 0.276735] acpiphp: Slot [4] registered | |
[ 0.277711] acpiphp: Slot [5] registered | |
[ 0.278681] acpiphp: Slot [6] registered | |
[ 0.279510] acpiphp: Slot [7] registered | |
[ 0.280474] acpiphp: Slot [8] registered | |
[ 0.281464] acpiphp: Slot [9] registered | |
[ 0.282434] acpiphp: Slot [10] registered | |
[ 0.283411] acpiphp: Slot [11] registered | |
[ 0.283507] acpiphp: Slot [12] registered | |
[ 0.284507] acpiphp: Slot [13] registered | |
[ 0.285499] acpiphp: Slot [14] registered | |
[ 0.286499] acpiphp: Slot [15] registered | |
[ 0.287489] acpiphp: Slot [16] registered | |
[ 0.288492] acpiphp: Slot [17] registered | |
[ 0.289472] acpiphp: Slot [18] registered | |
[ 0.290455] acpiphp: Slot [19] registered | |
[ 0.291460] acpiphp: Slot [20] registered | |
[ 0.291509] acpiphp: Slot [21] registered | |
[ 0.292489] acpiphp: Slot [22] registered | |
[ 0.293465] acpiphp: Slot [23] registered | |
[ 0.294468] acpiphp: Slot [24] registered | |
[ 0.295469] acpiphp: Slot [25] registered | |
[ 0.295507] acpiphp: Slot [26] registered | |
[ 0.296496] acpiphp: Slot [27] registered | |
[ 0.297549] acpiphp: Slot [28] registered | |
[ 0.298546] acpiphp: Slot [29] registered | |
[ 0.299507] acpiphp: Slot [30] registered | |
[ 0.300494] acpiphp: Slot [31] registered | |
[ 0.301476] PCI host bridge to bus 0000:00 | |
[ 0.302473] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] | |
[ 0.303485] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] | |
[ 0.304987] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] | |
[ 0.306701] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] | |
[ 0.307485] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] | |
[ 0.309236] pci_bus 0000:00: root bus resource [bus 00-ff] | |
[ 0.310527] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 | |
[ 0.312309] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 | |
[ 0.314421] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 | |
[ 0.318283] pci 0000:00:01.1: reg 0x20: [io 0xc120-0xc12f] | |
[ 0.320772] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] | |
[ 0.322351] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] | |
[ 0.323485] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] | |
[ 0.325038] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] | |
[ 0.326852] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 | |
[ 0.329479] pci 0000:00:01.2: reg 0x20: [io 0xc0c0-0xc0df] | |
[ 0.332021] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 | |
[ 0.333941] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI | |
[ 0.335497] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB | |
[ 0.337670] pci 0000:00:02.0: [1af4:1050] type 00 class 0x030000 | |
[ 0.340065] pci 0000:00:02.0: reg 0x10: [mem 0xfe000000-0xfe7fffff pref] | |
[ 0.343539] pci 0000:00:02.0: reg 0x18: [mem 0xfe800000-0xfe803fff 64bit pref] | |
[ 0.346460] pci 0000:00:02.0: reg 0x20: [mem 0xfeb90000-0xfeb90fff] | |
[ 0.349800] pci 0000:00:02.0: reg 0x30: [mem 0xfeb80000-0xfeb8ffff pref] | |
[ 0.352602] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 | |
[ 0.355305] pci 0000:00:03.0: reg 0x10: [io 0xc080-0xc0bf] | |
[ 0.356304] pci 0000:00:03.0: reg 0x14: [mem 0xfeb91000-0xfeb91fff] | |
[ 0.361151] pci 0000:00:03.0: reg 0x20: [mem 0xfe804000-0xfe807fff 64bit pref] | |
[ 0.364390] pci 0000:00:03.0: reg 0x30: [mem 0xfeb00000-0xfeb7ffff pref] | |
[ 0.366944] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000 | |
[ 0.368616] pci 0000:00:04.0: reg 0x10: [io 0xc000-0xc07f] | |
[ 0.370784] pci 0000:00:04.0: reg 0x14: [mem 0xfeb92000-0xfeb92fff] | |
[ 0.374335] pci 0000:00:04.0: reg 0x20: [mem 0xfe808000-0xfe80bfff 64bit pref] | |
[ 0.377460] pci 0000:00:05.0: [1af4:1002] type 00 class 0x00ff00 | |
[ 0.379486] pci 0000:00:05.0: reg 0x10: [io 0xc0e0-0xc0ff] | |
[ 0.383837] pci 0000:00:05.0: reg 0x20: [mem 0xfe80c000-0xfe80ffff 64bit pref] | |
[ 0.387067] pci 0000:00:06.0: [1af4:1005] type 00 class 0x00ff00 | |
[ 0.388216] pci 0000:00:06.0: reg 0x10: [io 0xc100-0xc11f] | |
[ 0.393264] pci 0000:00:06.0: reg 0x20: [mem 0xfe810000-0xfe813fff 64bit pref] | |
[ 0.404020] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) | |
[ 0.405443] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) | |
[ 0.406869] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) | |
[ 0.407619] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) | |
[ 0.408963] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) | |
[ 0.410573] iommu: Default domain type: Translated | |
[ 0.411730] SCSI subsystem initialized | |
[ 0.412785] pci 0000:00:02.0: vgaarb: setting as boot VGA device | |
[ 0.414162] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none | |
[ 0.415486] pci 0000:00:02.0: vgaarb: bridge control possible | |
[ 0.416799] vgaarb: loaded | |
[ 0.417536] ACPI: bus type USB registered | |
[ 0.418519] usbcore: registered new interface driver usbfs | |
[ 0.419506] usbcore: registered new interface driver hub | |
[ 0.420743] usbcore: registered new device driver usb | |
[ 0.421950] pps_core: LinuxPPS API ver. 1 registered | |
[ 0.423099] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> | |
[ 0.423488] PTP clock support registered | |
[ 0.424473] EDAC MC: Ver: 3.0.0 | |
[ 0.425638] PCI: Using ACPI for IRQ routing | |
[ 0.427054] NetLabel: Initializing | |
[ 0.427485] NetLabel: domain hash size = 128 | |
[ 0.428513] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO | |
[ 0.430358] NetLabel: unlabeled traffic allowed by default | |
[ 0.431654] clocksource: Switched to clocksource kvm-clock | |
[ 0.445491] *** VALIDATE bpf *** | |
[ 0.446405] VFS: Disk quotas dquot_6.6.0 | |
[ 0.447372] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) | |
[ 0.449103] *** VALIDATE ramfs *** | |
[ 0.449959] *** VALIDATE hugetlbfs *** | |
[ 0.450967] AppArmor: AppArmor Filesystem Enabled | |
[ 0.452109] pnp: PnP ACPI init | |
[ 0.453378] pnp: PnP ACPI: found 5 devices | |
[ 0.455465] thermal_sys: Registered thermal governor 'fair_share' | |
[ 0.455466] thermal_sys: Registered thermal governor 'bang_bang' | |
[ 0.456856] thermal_sys: Registered thermal governor 'step_wise' | |
[ 0.458221] thermal_sys: Registered thermal governor 'user_space' | |
[ 0.459828] thermal_sys: Registered thermal governor 'power_allocator' | |
[ 0.465781] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns | |
[ 0.469264] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] | |
[ 0.470662] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] | |
[ 0.472109] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] | |
[ 0.473631] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] | |
[ 0.475156] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] | |
[ 0.476777] NET: Registered protocol family 2 | |
[ 0.477864] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) | |
[ 0.479952] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) | |
[ 0.481936] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) | |
[ 0.483805] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) | |
[ 0.485492] TCP: Hash tables configured (established 16384 bind 16384) | |
[ 0.486994] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) | |
[ 0.488498] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) | |
[ 0.490129] NET: Registered protocol family 1 | |
[ 0.491173] NET: Registered protocol family 44 | |
[ 0.492246] pci 0000:00:01.0: PIIX3: Enabling Passive Release | |
[ 0.493557] pci 0000:00:00.0: Limiting direct PCI/PCI transfers | |
[ 0.494909] pci 0000:00:01.0: Activating ISA DMA hang workarounds | |
[ 0.517435] PCI Interrupt Link [LNKD] enabled at IRQ 11 | |
[ 0.539433] pci 0000:00:01.2: quirk_usb_early_handoff+0x0/0x670 took 42105 usecs | |
[ 0.541228] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] | |
[ 0.543176] PCI: CLS 0 bytes, default 64 | |
[ 0.544194] Trying to unpack rootfs image as initramfs... | |
[ 0.618494] Freeing initrd memory: 26960K | |
[ 0.619674] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f914c51abd, max_idle_ns: 440795298667 ns | |
[ 0.622040] check: Scanning for low memory corruption every 60 seconds | |
[ 0.623893] Initialise system trusted keyrings | |
[ 0.624972] Key type blacklist registered | |
[ 0.626030] workingset: timestamp_bits=36 max_order=19 bucket_order=0 | |
[ 0.628528] zbud: loaded | |
[ 0.629527] squashfs: version 4.0 (2009/01/31) Phillip Lougher | |
[ 0.631043] fuse: init (API version 7.31) | |
[ 0.632046] *** VALIDATE fuse *** | |
[ 0.632891] *** VALIDATE fuse *** | |
[ 0.633826] Platform Keyring initialized | |
[ 0.637871] Key type asymmetric registered | |
[ 0.638870] Asymmetric key parser 'x509' registered | |
[ 0.640035] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) | |
[ 0.641767] io scheduler mq-deadline registered | |
[ 0.643001] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 | |
[ 0.644672] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 | |
[ 0.658150] ACPI: Power Button [PWRF] | |
[ 0.680056] PCI Interrupt Link [LNKB] enabled at IRQ 10 | |
[ 0.703140] PCI Interrupt Link [LNKC] enabled at IRQ 11 | |
[ 0.748221] PCI Interrupt Link [LNKA] enabled at IRQ 10 | |
[ 0.772768] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled | |
[ 0.797461] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A | |
[ 0.800487] Linux agpgart interface v0.103 | |
[ 0.895618] loop: module loaded | |
[ 0.899661] scsi host0: ata_piix | |
[ 0.902017] scsi host1: ata_piix | |
[ 0.903096] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc120 irq 14 | |
[ 0.905026] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc128 irq 15 | |
[ 0.907766] tun: Universal TUN/TAP device driver, 1.6 | |
[ 0.909292] PPP generic driver version 2.4.2 | |
[ 0.910669] VFIO - User Level meta-driver version: 0.3 | |
[ 0.912253] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver | |
[ 0.914107] ehci-pci: EHCI PCI platform driver | |
[ 0.915162] ehci-platform: EHCI generic platform driver | |
[ 0.916378] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver | |
[ 0.917761] ohci-pci: OHCI PCI platform driver | |
[ 0.918818] ohci-platform: OHCI generic platform driver | |
[ 0.920038] uhci_hcd: USB Universal Host Controller Interface driver | |
[ 0.942370] uhci_hcd 0000:00:01.2: UHCI Host Controller | |
[ 0.943595] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 | |
[ 0.945310] uhci_hcd 0000:00:01.2: detected 2 ports | |
[ 0.946571] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c0c0 | |
[ 0.947996] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04 | |
[ 0.949942] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 | |
[ 0.951655] usb usb1: Product: UHCI Host Controller | |
[ 0.952799] usb usb1: Manufacturer: Linux 5.4.0-131-generic uhci_hcd | |
[ 0.954245] usb usb1: SerialNumber: 0000:00:01.2 | |
[ 0.955406] hub 1-0:1.0: USB hub found | |
[ 0.956348] hub 1-0:1.0: 2 ports detected | |
[ 0.957481] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 | |
[ 0.960188] serio: i8042 KBD port at 0x60,0x64 irq 1 | |
[ 0.961347] serio: i8042 AUX port at 0x60,0x64 irq 12 | |
[ 0.962643] mousedev: PS/2 mouse device common for all mice | |
[ 0.964301] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 | |
[ 0.966547] rtc_cmos 00:00: RTC can wake from S4 | |
[ 0.968083] rtc_cmos 00:00: registered as rtc0 | |
[ 0.969172] rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram | |
[ 0.970661] i2c /dev entries driver | |
[ 0.971570] device-mapper: uevent: version 1.0.3 | |
[ 0.972709] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: [email protected] | |
[ 0.974676] platform eisa.0: Probing EISA bus 0 | |
[ 0.975777] platform eisa.0: EISA: Cannot allocate resource for mainboard | |
[ 0.977313] platform eisa.0: Cannot allocate resource for EISA slot 1 | |
[ 0.978801] platform eisa.0: Cannot allocate resource for EISA slot 2 | |
[ 0.980295] platform eisa.0: Cannot allocate resource for EISA slot 3 | |
[ 0.981758] platform eisa.0: Cannot allocate resource for EISA slot 4 | |
[ 0.983222] platform eisa.0: Cannot allocate resource for EISA slot 5 | |
[ 0.984704] platform eisa.0: Cannot allocate resource for EISA slot 6 | |
[ 0.986173] platform eisa.0: Cannot allocate resource for EISA slot 7 | |
[ 0.987632] platform eisa.0: Cannot allocate resource for EISA slot 8 | |
[ 0.989082] platform eisa.0: EISA: Detected 0 cards | |
[ 0.990247] intel_pstate: CPU model not supported | |
[ 0.991371] ledtrig-cpu: registered to indicate activity on CPUs | |
[ 0.992815] drop_monitor: Initializing network drop monitor service | |
[ 0.994393] NET: Registered protocol family 10 | |
[ 1.001848] Segment Routing with IPv6 | |
[ 1.002805] NET: Registered protocol family 17 | |
[ 1.003938] Key type dns_resolver registered | |
[ 1.005111] RAS: Correctable Errors collector initialized. | |
[ 1.006395] IPI shorthand broadcast: enabled | |
[ 1.007430] sched_clock: Marking stable (837311361, 166566772)->(1078056130, -74177997) | |
[ 1.009363] registered taskstats version 1 | |
[ 1.010426] Loading compiled-in X.509 certificates | |
[ 1.012233] Loaded X.509 cert 'Build time autogenerated kernel key: 4310b7767b0c1f4468f6772bd44ec51fe62d2f1e' | |
[ 1.015074] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' | |
[ 1.017888] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' | |
[ 1.020171] blacklist: Loading compiled-in revocation X.509 certificates | |
[ 1.021715] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' | |
[ 1.023960] zswap: loaded using pool lzo/zbud | |
[ 1.025074] Key type ._fscrypt registered | |
[ 1.026075] Key type .fscrypt registered | |
[ 1.031786] Key type big_key registered | |
[ 1.035069] Key type encrypted registered | |
[ 1.036091] AppArmor: AppArmor sha1 policy hashing enabled | |
[ 1.037376] ima: No TPM chip found, activating TPM-bypass! | |
[ 1.038657] ima: Allocated hash algorithm: sha1 | |
[ 1.039787] ima: No architecture policies found | |
[ 1.040879] evm: Initialising EVM extended attributes: | |
[ 1.042067] evm: security.selinux | |
[ 1.042910] evm: security.SMACK64 | |
[ 1.043741] evm: security.SMACK64EXEC | |
[ 1.044655] evm: security.SMACK64TRANSMUTE | |
[ 1.045657] evm: security.SMACK64MMAP | |
[ 1.046577] evm: security.apparmor | |
[ 1.047434] evm: security.ima | |
[ 1.048196] evm: security.capability | |
[ 1.049074] evm: HMAC attrs: 0x1 | |
[ 1.050165] PM: Magic number: 14:767:493 | |
[ 1.051253] rtc_cmos 00:00: setting system clock to 2022-11-12T18:29:01 UTC (1668277741) | |
[ 1.068908] Freeing unused decrypted memory: 2040K | |
[ 1.072551] Freeing unused kernel image memory: 2756K | |
[ 1.074747] Write protecting the kernel read-only data: 26624k | |
[ 1.079005] Freeing unused kernel image memory: 2036K | |
[ 1.080565] Freeing unused kernel image memory: 752K | |
[ 1.089934] x86/mm: Checked W+X mappings: passed, no W+X pages found. | |
[ 1.091398] x86/mm: Checking user space page tables | |
[ 1.100635] x86/mm: Checked W+X mappings: passed, no W+X pages found. | |
[ 1.102135] Run /init as init process | |
Loading, please wait... | |
Starting version 245.4-4ubuntu3.18 | |
[ 1.199500] usb 1-1: new full-speed USB device number 2 using uhci_hcd | |
[ 1.232009] FDC 0 is a S82078B | |
[ 1.238249] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) | |
[ 1.243149] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 | |
[ 1.245392] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 | |
[ 1.274764] GPT:Primary header thinks Alt. header is not at the end of the disk. | |
[ 1.276509] GPT:4612095 != 41943039 | |
[ 1.277397] GPT:Alternate GPT header not at the end of the disk. | |
[ 1.278799] GPT:4612095 != 41943039 | |
[ 1.279668] GPT: Use GNU Parted to correct GPT errors. | |
[ 1.280901] vda: vda1 vda14 vda15 | |
[ 1.281785] cryptd: max_cpu_qlen set to 1000 | |
[ 1.307323] AVX version of gcm_enc/dec engaged. | |
[ 1.308417] AES CTR mode by8 optimization enabled | |
[ 1.325243] virtio_net virtio1 ens3: renamed from eth0 | |
[ 1.329759] [drm] pci: virtio-vga detected at 0000:00:02.0 | |
[ 1.331068] virtio-pci 0000:00:02.0: remove_conflicting_pci_framebuffers: bar 0: 0xfe000000 -> 0xfe7fffff | |
[ 1.333227] virtio-pci 0000:00:02.0: remove_conflicting_pci_framebuffers: bar 2: 0xfe800000 -> 0xfe803fff | |
[ 1.335424] virtio-pci 0000:00:02.0: remove_conflicting_pci_framebuffers: bar 4: 0xfeb90000 -> 0xfeb90fff | |
[ 1.340703] virtio-pci 0000:00:02.0: vgaarb: deactivate vga console | |
[ 1.352962] Console: switching to colour dummy device 80x25 | |
[ 1.354091] [drm] virgl 3d acceleration not supported by host | |
[ 1.355038] [drm] EDID support available. | |
[ 1.357346] [TTM] Zone kernel: Available graphics memory: 1015466 KiB | |
[ 1.358445] [TTM] Initializing pool allocator | |
[ 1.359188] [TTM] Initializing DMA pool allocator | |
[ 1.360040] [drm] number of scanouts: 1 | |
[ 1.360791] [drm] number of cap sets: 0 | |
[ 1.362021] [drm] Initialized virtio_gpu 0.1.0 0 for virtio0 on minor 0 | |
[ 1.365931] Console: switching to colour frame buffer device 128x48 | |
[ 1.371605] virtio_gpu virtio0: fb0: virtio_gpudrmfb frame buffer device | |
[ 1.397979] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00 | |
[ 1.400083] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10 | |
[ 1.401553] usb 1-1: Product: QEMU USB Tablet | |
[ 1.402299] usb 1-1: Manufacturer: QEMU | |
[ 1.402934] usb 1-1: SerialNumber: 28754-0000:00:01.2-1 | |
[ 1.410886] hidraw: raw HID events driver (C) Jiri Kosina | |
[ 1.417105] usbcore: registered new interface driver usbhid | |
[ 1.418085] usbhid: USB HID core driver | |
[ 1.420439] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 | |
[ 1.422678] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0 | |
Begin: Loading essential drivers ... [ 1.591489] raid6: sse2x4 gen() 13729 MB/s | |
[ 1.639486] raid6: sse2x4 xor() 9378 MB/s | |
[ 1.687488] raid6: sse2x2 gen() 11076 MB/s | |
[ 1.735493] raid6: sse2x2 xor() 7758 MB/s | |
[ 1.783486] raid6: sse2x1 gen() 8819 MB/s | |
[ 1.831489] raid6: sse2x1 xor() 6870 MB/s | |
[ 1.832234] raid6: using algorithm sse2x4 gen() 13729 MB/s | |
[ 1.833148] raid6: .... xor() 9378 MB/s, rmw enabled | |
[ 1.833970] raid6: using ssse3x2 recovery algorithm | |
[ 1.835981] xor: automatically using best checksumming function avx | |
[ 1.838793] async_tx: api initialized (async) | |
done. | |
Begin: Running /scripts/init-premount ... done. | |
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. | |
Begin: Running /scripts/local-premount ... [ 1.891804] Btrfs loaded, crc32c=crc32c-intel | |
Scanning for Btrfs filesystems | |
done. | |
Warning: fsck not present, so skipping root file system | |
[ 2.024065] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null) | |
done. | |
Begin: Running /scripts/local-bottom ... done. | |
Begin: Running /scripts/init-bottom ... done. | |
[ 2.564076] systemd[1]: Inserted module 'autofs4' | |
[ 2.616183] systemd[1]: systemd 245.4-4ubuntu3.18 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) | |
[ 2.624759] systemd[1]: Detected virtualization kvm. | |
[ 2.627684] systemd[1]: Detected architecture x86-64. | |
Welcome to [1mUbuntu 20.04.5 LTS[0m! | |
[ 2.637882] systemd[1]: Set hostname to <ubuntu>. | |
[ 2.646136] systemd[1]: Initializing machine ID from KVM UUID. | |
[ 2.648860] systemd[1]: Installed transient /etc/machine-id file. | |
[ 3.331112] systemd[1]: Created slice system-modprobe.slice. | |
[[0;32m OK [0m] Created slice [0;1;39msystem-modprobe.slice[0m. | |
[ 3.339289] systemd[1]: Created slice system-serial\x2dgetty.slice. | |
[[0;32m OK [0m] Created slice [0;1;39msystem-serial\x2dgetty.slice[0m. | |
[ 3.344956] systemd[1]: Created slice system-systemd\x2dfsck.slice. | |
[[0;32m OK [0m] Created slice [0;1;39msystem-systemd\x2dfsck.slice[0m. | |
[ 3.350769] systemd[1]: Created slice User and Session Slice. | |
[[0;32m OK [0m] Created slice [0;1;39mUser and Session Slice[0m. | |
[ 3.356222] systemd[1]: Started Forward Password Requests to Wall Directory Watch. | |
[[0;32m OK [0m] Started [0;1;39mForward Password R���uests to Wall Directory Watch[0m. | |
[ 3.361990] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. | |
[[0;32m OK [0m] Set up automount [0;1;39mArbitrary���s File System Automount Point[0m. | |
[ 3.367918] systemd[1]: Reached target User and Group Name Lookups. | |
[[0;32m OK [0m] Reached target [0;1;39mUser and Group Name Lookups[0m. | |
[ 3.373311] systemd[1]: Reached target Slices. | |
[[0;32m OK [0m] Reached target [0;1;39mSlices[0m. | |
[ 3.378048] systemd[1]: Reached target Swap. | |
[[0;32m OK [0m] Reached target [0;1;39mSwap[0m. | |
[ 3.382544] systemd[1]: Listening on Device-mapper event daemon FIFOs. | |
[[0;32m OK [0m] Listening on [0;1;39mDevice-mapper event daemon FIFOs[0m. | |
[ 3.387906] systemd[1]: Listening on LVM2 poll daemon socket. | |
[[0;32m OK [0m] Listening on [0;1;39mLVM2 poll daemon socket[0m. | |
[ 3.393054] systemd[1]: Listening on multipathd control socket. | |
[[0;32m OK [0m] Listening on [0;1;39mmultipathd control socket[0m. | |
[ 3.398565] systemd[1]: Listening on Syslog Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mSyslog Socket[0m. | |
[ 3.403540] systemd[1]: Listening on fsck to fsckd communication Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mfsck to fsckd communication Socket[0m. | |
[ 3.408960] systemd[1]: Listening on initctl Compatibility Named Pipe. | |
[[0;32m OK [0m] Listening on [0;1;39minitctl Compatibility Named Pipe[0m. | |
[ 3.414277] systemd[1]: Listening on Journal Audit Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Audit Socket[0m. | |
[ 3.419183] systemd[1]: Listening on Journal Socket (/dev/log). | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket (/dev/log)[0m. | |
[ 3.424553] systemd[1]: Listening on Journal Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket[0m. | |
[ 3.429464] systemd[1]: Listening on Network Service Netlink Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mNetwork Service Netlink Socket[0m. | |
[ 3.434758] systemd[1]: Listening on udev Control Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mudev Control Socket[0m. | |
[ 3.439717] systemd[1]: Listening on udev Kernel Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mudev Kernel Socket[0m. | |
[ 3.445981] systemd[1]: Mounting Huge Pages File System... | |
Mounting [0;1;39mHuge Pages File System[0m... | |
[ 3.455685] systemd[1]: Mounting POSIX Message Queue File System... | |
Mounting [0;1;39mPOSIX Message Queue File System[0m... | |
[ 3.462502] systemd[1]: Mounting Kernel Debug File System... | |
Mounting [0;1;39mKernel Debug File System[0m... | |
[ 3.472510] systemd[1]: Mounting Kernel Trace File System... | |
Mounting [0;1;39mKernel Trace File System[0m... | |
[ 3.481007] systemd[1]: Starting Journal Service... | |
Starting [0;1;39mJournal Service[0m... | |
[ 3.493414] systemd[1]: Starting Set the console keyboard layout... | |
Starting [0;1;39mSet the console keyboard layout[0m... | |
[ 3.505990] systemd[1]: Starting Create list of static device nodes for the current kernel... | |
Starting [0;1;39mCreate list of st���odes for the current kernel[0m... | |
[ 3.517995] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... | |
Starting [0;1;39mMonitoring of LVM���meventd or progress polling[0m... | |
[ 3.546343] systemd[1]: Starting Load Kernel Module chromeos_pstore... | |
Starting [0;1;39mLoad Kernel Module chromeos_pstore[0m... | |
[ 3.559701] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. | |
[ 3.568504] systemd[1]: Starting Load Kernel Module efi_pstore... | |
Starting [0;1;39mLoad Kernel Module efi_pstore[0m... | |
[ 3.588369] systemd[1]: Starting Load Kernel Module pstore_blk... | |
Starting [0;1;39mLoad Kernel Module pstore_blk[0m... | |
[ 3.599690] systemd[1]: Starting Load Kernel Module pstore_zone... | |
Starting [0;1;39mLoad Kernel Module pstore_zone[0m... | |
[ 3.615677] systemd[1]: Starting Load Kernel Module ramoops... | |
Starting [0;1;39mLoad Kernel Module ramoops[0m... | |
[ 3.620832] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped. | |
[ 3.634449] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. | |
[ 3.637530] systemd[1]: Starting File System Check on Root Device... | |
Starting [0;1;39mFile System Check on Root Device[0m... | |
[ 3.654918] systemd[1]: Starting Load Kernel Modules... | |
Starting [0;1;39mLoad Kernel Modules[0m... | |
[ 3.670616] systemd[1]: Starting udev Coldplug all Devices... | |
Starting [0;1;39mudev Coldplug all Devices[0m... | |
[ 3.686913] systemd[1]: Starting Uncomplicated firewall... | |
Starting [0;1;39mUncomplicated firewall[0m... | |
[ 3.704228] systemd[1]: Started Journal Service. | |
[[0;32m OK [0m] Started [0;1;39mJournal Service[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mHuge Pages File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mPOSIX Message Queue File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Debug File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Trace File System[0m. | |
[[0;32m OK [0m] Finished [0;1;39mSet the console keyboard layout[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate list of st��� nodes for the current kernel[0m. | |
[[0;32m OK [0m] Finished [0;1;39mMonitoring of LVM��� dmeventd or progress polling[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module chromeos_pstore[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module efi_pstore[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module pstore_blk[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module pstore_zone[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module ramoops[0m. | |
[[0;32m OK [0m] Finished [0;1;39mFile System Check on Root Device[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Modules[0m. | |
[[0;32m OK [0m] Finished [0;1;39mUncomplicated firewall[0m. | |
Mounting [0;1;39mFUSE Control File System[0m... | |
Mounting [0;1;39mKernel Configuration File System[0m... | |
[[0;32m OK [0m] Started [0;1;39mFile System Check Daemon to report status[0m. | |
Starting [0;1;39mRemount Root and Kernel File Systems[0m... | |
Starting [0;1;39mApply Kernel Variables[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mFUSE Control File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Configuration File System[0m. | |
[[0;32m OK [0m] Finished [0;1;39mudev Coldplug all Devices[0m. | |
Starting [0;1;39mudev Wait for Complete Device Initialization[0m... | |
[[0;32m OK [0m] Finished [0;1;39mApply Kernel Variables[0m. | |
[[0;32m OK [0m] Finished [0;1;39mRemount Root and Kernel File Systems[0m. | |
Starting [0;1;39mFlush Journal to Persistent Storage[0m... | |
Starting [0;1;39mLoad/Save Random Seed[0m... | |
Starting [0;1;39mCreate System Users[0m... | |
[[0;32m OK [0m] Finished [0;1;39mLoad/Save Random Seed[0m. | |
[[0;32m OK [0m] Finished [0;1;39mFlush Journal to Persistent Storage[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate System Users[0m. | |
Starting [0;1;39mCreate Static Device Nodes in /dev[0m... | |
[[0;32m OK [0m] Finished [0;1;39mCreate Static Device Nodes in /dev[0m. | |
Starting [0;1;39mudev Kernel Device Manager[0m... | |
[[0;32m OK [0m] Started [0;1;39mudev Kernel Device Manager[0m. | |
[[0;32m OK [0m] Started [0;1;39mDispatch Password ���ts to Console Directory Watch[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal Encrypted Volumes[0m. | |
[[0;32m OK [0m] Found device [0;1;39m/dev/ttyS0[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mLoad/Save RF ���itch Status /dev/rfkill Watch[0m. | |
Mounting [0;1;39mArbitrary Executable File Formats File System[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mArbitrary Executable File Formats File System[0m. | |
[[0;32m OK [0m] Found device [0;1;39m/dev/disk/by-label/UEFI[0m. | |
[[0;32m OK [0m] Finished [0;1;39mudev Wait for Complete Device Initialization[0m. | |
Starting [0;1;39mDevice-Mapper Multipath Device Controller[0m... | |
[[0;32m OK [0m] Started [0;1;39mDevice-Mapper Multipath Device Controller[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal File Systems (Pre)[0m. | |
Mounting [0;1;39mMount unit for core20, revision 1634[0m... | |
Mounting [0;1;39mMount unit for lxd, revision 22753[0m... | |
Mounting [0;1;39mMount unit for snapd, revision 17336[0m... | |
Starting [0;1;39mFile System Check on /dev/disk/by-label/UEFI[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for core20, revision 1634[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for lxd, revision 22753[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for snapd, revision 17336[0m. | |
[[0;32m OK [0m] Finished [0;1;39mFile System Check on /dev/disk/by-label/UEFI[0m. | |
Mounting [0;1;39m/boot/efi[0m... | |
[[0;32m OK [0m] Mounted [0;1;39m/boot/efi[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal File Systems[0m. | |
Starting [0;1;39mLoad AppArmor profiles[0m... | |
Starting [0;1;39mSet console font and keymap[0m... | |
Starting [0;1;39mCreate final runt���dir for shutdown pivot root[0m... | |
Starting [0;1;39mTell Plymouth To Write Out Runtime Data[0m... | |
Starting [0;1;39mCommit a transient machine-id on disk[0m... | |
Starting [0;1;39mCreate Volatile Files and Directories[0m... | |
[[0;32m OK [0m] Finished [0;1;39mSet console font and keymap[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate final runt���e dir for shutdown pivot root[0m. | |
[[0;32m OK [0m] Finished [0;1;39mTell Plymouth To Write Out Runtime Data[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCommit a transient machine-id on disk[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate Volatile Files and Directories[0m. | |
Starting [0;1;39mNetwork Time Synchronization[0m... | |
Starting [0;1;39mUpdate UTMP about System Boot/Shutdown[0m... | |
[[0;32m OK [0m] Finished [0;1;39mUpdate UTMP about System Boot/Shutdown[0m. | |
[[0;32m OK [0m] Started [0;1;39mNetwork Time Synchronization[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSystem Time Set[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSystem Time Synchronized[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad AppArmor profiles[0m. | |
Starting [0;1;39mLoad AppArmor pro���managed internally by snapd[0m... | |
Starting [0;1;39mInitial cloud-init job (pre-networking)[0m... | |
[[0;32m OK [0m] Finished [0;1;39mLoad AppArmor pro���s managed internally by snapd[0m. | |
[ 310.033366] cloud-init[520]: Cloud-init v. 22.3.4-0ubuntu1~20.04.1 running 'init-local' at Sat, 12 Nov 2022 18:29:09 +0000. Up 8.77 seconds. | |
[ 310.035595] cloud-init[520]: 2022-11-12 18:34:10,648 - util.py[WARNING]: Cannot parse empty dhcp lease file /var/tmp/cloud-init/cloud-init-dhcp-e075wbzs/dhcp.leases | |
[[0;32m OK [0m] Finished [0;1;39mInitial cloud-init job (pre-networking)[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mNetwork (Pre)[0m. | |
Starting [0;1;39mNetwork Service[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Service[0m. | |
Starting [0;1;39mWait for Network to be Configured[0m... | |
Starting [0;1;39mNetwork Name Resolution[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Name Resolution[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mNetwork[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mHost and Network Name Lookups[0m. | |
[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (2s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (3s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (3s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (4s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (4s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���k to be Configured (6s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���k to be Configured (6s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���k to be Configured (7s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���k to be Configured (7s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���k to be Configured (8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (9s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (9s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (10s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (10s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (11s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (11s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (13s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (13s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (14s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (14s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (16s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (16s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (17s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (17s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (18s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (18s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (20s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (20s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (21s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (21s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (23s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (23s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (24s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (24s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (25s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (25s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (27s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (27s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (28s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (28s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (30s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (30s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (31s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (31s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (32s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (32s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (34s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (34s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (35s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (35s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (37s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (37s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (38s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (38s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (39s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (39s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (41s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (41s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (42s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (42s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (44s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (44s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (45s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (45s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (46s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (46s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (48s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (48s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (49s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (49s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (51s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (51s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (52s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (52s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (53s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (53s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (55s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (55s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (56s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (56s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (58s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (58s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (59s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (59s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���to be Configured (1min / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���to be Configured (1min / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 1s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 1s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 2s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 2s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���be Configured (1min 3s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 3s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 4s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 4s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 5s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 5s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 6s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 6s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 7s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 7s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 9s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 9s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 10s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 10s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 11s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 11s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 12s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 12s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 13s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 13s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 14s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 14s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 16s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 16s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 17s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 17s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 18s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 18s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 19s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 19s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 20s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 20s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 21s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 21s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 23s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 23s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 24s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 24s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 25s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 25s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 26s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 26s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 27s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 27s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 28s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 28s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 30s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 30s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 31s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 31s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 32s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 32s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 33s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 33s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 34s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 34s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 35s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 35s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 37s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 37s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 38s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 38s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 39s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 39s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 40s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 40s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 41s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 41s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 42s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 42s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 44s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 44s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 45s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 45s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 46s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 46s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 47s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 47s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 48s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 48s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 49s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 49s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 51s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 51s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 52s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 52s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 53s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 53s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 54s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 54s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 55s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 55s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 56s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 56s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 58s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 58s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 59s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 59s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���to be Configured (2min / no limit) | |
M[K[[0;1;31mFAILED[0m] Failed to start [0;1;39mWait for Network to be Configured[0m. | |
[KSee 'systemctl status systemd-networkd-wait-online.service' for details. | |
Starting [0;1;39mInitial cloud-ini��� (metadata service crawler)[0m... | |
[ 431.385904] cloud-init[594]: Cloud-init v. 22.3.4-0ubuntu1~20.04.1 running 'init' at Sat, 12 Nov 2022 18:36:11 +0000. Up 431.33 seconds. | |
[ 431.388767] cloud-init[594]: ci-info: ++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++ | |
[ 431.393027] cloud-init[594]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 431.396983] cloud-init[594]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address | | |
[ 431.400985] cloud-init[594]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 431.404992] cloud-init[594]: ci-info: | ens3 | True | fe80::f816:3eff:fefb:610e/64 | . | link | fa:16:3e:fb:61:0e | | |
[ 431.409000] cloud-init[594]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . | | |
[ 431.412984] cloud-init[594]: ci-info: | lo | True | ::1/128 | . | host | . | | |
[ 431.417011] cloud-init[594]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 431.420984] cloud-init[594]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++ | |
[ 431.425005] cloud-init[594]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 431.426496] cloud-init[594]: ci-info: | Route | Destination | Gateway | Interface | Flags | | |
[ 431.429004] cloud-init[594]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 431.432985] cloud-init[594]: ci-info: | 1 | fe80::/64 | :: | ens3 | U | | |
[ 431.437003] cloud-init[594]: ci-info: | 3 | local | :: | ens3 | U | | |
[ 431.438499] cloud-init[594]: ci-info: | 4 | multicast | :: | ens3 | U | | |
[ 431.441002] cloud-init[594]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 431.444986] cloud-init[594]: 2022-11-12 18:36:12,000 - url_helper.py[ERROR]: Timed out, no response from urls: ['http://169.254.169.254/openstack'] | |
[ 431.449017] cloud-init[594]: 2022-11-12 18:36:12,006 - util.py[WARNING]: No active metadata service found | |
Stopping [0;1;39mNetwork Service[0m... | |
[[0;32m OK [0m] Stopped [0;1;39mNetwork Service[0m. | |
Starting [0;1;39mNetwork Service[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Service[0m. | |
[ 432.298802] cloud-init[594]: 2022-11-12 18:36:12,913 - activators.py[WARNING]: Running ['netplan', 'apply'] resulted in stderr output: [0;1;31mFailed to connect system bus: No such file or directory[0m | |
[ 432.301613] cloud-init[594]: Falling back to a hard restart of systemd-networkd.service | |
[ 434.855305] cloud-init[594]: Generating public/private rsa key pair. | |
[ 434.856674] cloud-init[594]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key | |
[ 434.860988] cloud-init[594]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub | |
[ 434.862507] cloud-init[594]: The key fingerprint is: | |
[ 434.864981] cloud-init[594]: SHA256:qgWWVmmsXA57fIukPE1XsTjBLlAvYyxQw9wJKH9/uYU root@ubuntu | |
[ 434.868979] cloud-init[594]: The key's randomart image is: | |
[ 434.870147] cloud-init[594]: +---[RSA 3072]----+ | |
[ 434.871212] cloud-init[594]: | .=++.o. . | | |
[ 434.876983] cloud-init[594]: |. ..++oo.o o | | |
[ 434.878067] cloud-init[594]: | o o.@.+ o | | |
[ 434.879109] cloud-init[594]: | ...&.o.o | | |
[ 434.880142] cloud-init[594]: | .O.*.So | | |
[ 434.885168] cloud-init[594]: | + B.=E.. | | |
[ 434.886229] cloud-init[594]: | + =..o | | |
[ 434.887290] cloud-init[594]: | + . | | |
[ 434.888342] cloud-init[594]: | . | | |
[ 434.893195] cloud-init[594]: +----[SHA256]-----+ | |
[ 434.894275] cloud-init[594]: Generating public/private dsa key pair. | |
[ 434.895523] cloud-init[594]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key | |
[ 434.901035] cloud-init[594]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub | |
[ 434.902585] cloud-init[594]: The key fingerprint is: | |
[ 434.903659] cloud-init[594]: SHA256:KfnofFAXvyJH4HDaPnekFelDOa74Q60pugpNM9whzuw root@ubuntu | |
[ 434.909160] cloud-init[594]: The key's randomart image is: | |
[ 434.910315] cloud-init[594]: +---[DSA 1024]----+ | |
[ 434.911357] cloud-init[594]: | o | | |
[ 434.913007] cloud-init[594]: | . o . * | | |
[ 434.917000] cloud-init[594]: | . .* . * o | | |
[ 434.918080] cloud-init[594]: | = o.o+.o B | | |
[ 434.921004] cloud-init[594]: | O +oS+ * o | | |
[ 434.922091] cloud-init[594]: | + o.+= B + | | |
[ 434.924987] cloud-init[594]: | . E ...B = | | |
[ 434.926054] cloud-init[594]: | . o o = | | |
[ 434.929015] cloud-init[594]: | ..=+ . . | | |
[ 434.930089] cloud-init[594]: +----[SHA256]-----+ | |
[ 434.932985] cloud-init[594]: Generating public/private ecdsa key pair. | |
[ 434.937006] cloud-init[594]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key | |
[ 434.938552] cloud-init[594]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub | |
[ 434.940984] cloud-init[594]: The key fingerprint is: | |
[ 434.944986] cloud-init[594]: SHA256:fH6CF8j4pEomkusB38S5XL/a9mnJ5c94GilAaEpw6kA root@ubuntu | |
[ 434.946539] cloud-init[594]: The key's randomart image is: | |
[ 434.949039] cloud-init[594]: +---[ECDSA 256]---+ | |
[ 434.953007] cloud-init[594]: | E. . | | |
[ 434.954091] cloud-init[594]: |. + . | | |
[ 434.955131] cloud-init[594]: |. . . o . | | |
[ 434.956985] cloud-init[594]: | o o + = . | | |
[ 434.960078] cloud-init[594]: |. . = o S o | | |
[ 434.961360] cloud-init[594]: |.o + o = = ... | | |
[[0;32m OK [0m] Finished [0;1;39mInitial cloud-ini���ob (metadata service crawler)[0m. | |
[[ 434.966143] cloud-init[594]: |o.o * . +.=++ | | |
[ 434.967233] cloud-init[594]: | o.+ . ..o+=.+. | | |
[ 434.968253] cloud-init[594]: |o. . .oooo o+o |[0;32m OK [0m] Reached target [0;1;39mCloud-config availability[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mNetwork is Online[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSystem Initialization[0m. | |
[ 434.977148] cloud-init[594]: +----[SHA256]-----+ | |
[ 434.979950] cloud-init[594]: Generating public/private ed25519 key pair.[[0;32m OK [0m] Started [0;1;39mDaily apt download activities[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily apt upgrade and clean activities[0m. | |
[[0;32m OK [0m] Started [0;1;39mPeriodic ext4 Onli���ata Check for All Filesystems[0m. | |
[ 434.985864] cloud-init[594]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key | |
[ 434.987371] cloud-init[594]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub | |
[[0;32m OK [0m] Started [0;1;39mDiscard unused blocks once a week[0m. | |
[[0;32m OK [0m] Started [0;1;39mRefresh fwupd metadata regularly[0m. | |
[[0;32m OK [0m[ 434.988903] cloud-init[594]: The key fingerprint is: | |
[ 434.998680] cloud-init[594]: SHA256:AJJkQqDyVCIgVdSWOGTRptCAYUuPWd36fhO2r+EHWiI root@ubuntu | |
[ 435.000143] cloud-init[594]: The key's randomart image is:] Started [0;1;39mDaily rotation of log files[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily man-db regeneration[0m. | |
[ 435.005498] cloud-init[594]: +--[ED25519 256]--+ | |
[ 435.006523] cloud-init[594]: |@OBOX=.. | | |
[ 435.007554] cloud-init[594]: |*+O=+o*. | | |
[ 435.008565] cloud-init | |
[[0;32m OK [0m] Started [0;1;39mMessage of the Day[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily Cleanup of Temporary Directories[0m. | |
[[0;32m OK [0m] Started [0;1;39mUbuntu Advantage Timer for running repeated jobs[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mPaths[0m. | |
[[594]: |o+.o =o | | |
[ 435.017668] cloud-init[594]: |.o .. . | | |
[ 435.018679] cloud-init[594]: | . . S | | |
[ 435.019702] cloud-init[594]: | E o = | | |
[ 435.020716] [0;32m OK [0m] Reached target [0;1;39mTimers[0m. | |
cloud-init[594]: | o =.+ | | |
[[0;32m OK [0m] Listening on [0;1;39mcloud-init hotplug hook socket[0m. | |
[ 435.025042] cloud-init[594]: | o.+.. | | |
[ 435.026084] cloud-init[594]: | .o=. | | |
[ 435.027109] cloud-init[594]: +----[SHA256]-----+ | |
[[0;32m OK [0m] Listening on [0;1;39mD-Bus System Message Bus Socket[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mOpen-iSCSI iscsid Socket[0m. | |
Starting [0;1;39mSocket activation for snappy daemon[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mUUID daemon activation socket[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems (Pre)[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems[0m. | |
Starting [0;1;39mAvailability of block devices[0m... | |
[[0;32m OK [0m] Listening on [0;1;39mSocket activation for snappy daemon[0m. | |
[[0;32m OK [0m] Finished [0;1;39mAvailability of block devices[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSockets[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mBasic System[0m. | |
Starting [0;1;39mAccounts Service[0m... | |
Starting [0;1;39mLSB: automatic crash report generation[0m... | |
Starting [0;1;39mDeferred execution scheduler[0m... | |
[[0;32m OK [0m] Started [0;1;39mRegular background program processing daemon[0m. | |
[[0;32m OK [0m] Started [0;1;39mD-Bus System Message Bus[0m. | |
[[0;32m OK [0m] Started [0;1;39mSave initial kernel messages after boot[0m. | |
Starting [0;1;39mRemove Stale Onli���t4 Metadata Check Snapshots[0m... | |
Starting [0;1;39mRecord successful boot for GRUB[0m... | |
[[0;32m OK [0m] Started [0;1;39mirqbalance daemon[0m. | |
Starting [0;1;39mDispatcher daemon for systemd-networkd[0m... | |
Starting [0;1;39mAuthorization Manager[0m... | |
Starting [0;1;39mPollinate to seed���udo random number generator[0m... | |
Starting [0;1;39mSystem Logging Service[0m... | |
[[0;32m OK [0m] Reached target [0;1;39mLogin Prompts (Pre)[0m. | |
Starting [0;1;39mSnap Daemon[0m... | |
Starting [0;1;39mLogin Service[0m... | |
Starting [0;1;39mPermit User Sessions[0m... | |
Starting [0;1;39mDisk Manager[0m... | |
[[0;32m OK [0m] Started [0;1;39mDeferred execution scheduler[0m. | |
[[0;32m OK [0m] Finished [0;1;39mRemove Stale Onli���ext4 Metadata Check Snapshots[0m. | |
[[0;32m OK [0m] Finished [0;1;39mPermit User Sessions[0m. | |
[[0;32m OK [0m] Finished [0;1;39mRecord successful boot for GRUB[0m. | |
[[0;32m OK [0m] Started [0;1;39mSystem Logging Service[0m. | |
[[0;32m OK [0m] Started [0;1;39mAccounts Service[0m. | |
[[0;32m OK [0m] Started [0;1;39mAuthorization Manager[0m. | |
Starting [0;1;39mModem Manager[0m... | |
Starting [0;1;39mGRUB failed boot detection[0m... | |
Starting [0;1;39mHold until boot process finishes up[0m... | |
Starting [0;1;39mTerminate Plymouth Boot Screen[0m... | |
[[0;32m OK [0m] Started [0;1;39mLSB: automatic crash report generation[0m. | |
[[0;32m OK [0m] Finished [0;1;39mHold until boot process finishes up[0m. | |
[[0;32m OK [0m] Finished [0;1;39mTerminate Plymouth Boot Screen[0m. | |
[[0;32m OK [0m] Finished [0;1;39mGRUB failed boot detection[0m. | |
[[0;32m OK [0m] Started [0;1;39mLogin Service[0m. | |
[[0;32m OK [0m] Started [0;1;39mSerial Getty on ttyS0[0m. | |
Starting [0;1;39mSet console scheme[0m... | |
[[0;32m OK [0m] Started [0;1;39mUnattended Upgrades Shutdown[0m. | |
[[0;32m OK [0m] Finished [0;1;39mSet console scheme[0m. | |
[[0;32m OK [0m] Started [0;1;39mDisk Manager[0m. | |
[[0;32m OK [0m] Created slice [0;1;39msystem-getty.slice[0m. | |
[[0;32m OK [0m] Started [0;1;39mGetty on tty1[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLogin Prompts[0m. | |
[[0;32m OK [0m] Started [0;1;39mModem Manager[0m. | |
[[0;32m OK [0m] Started [0;1;39mDispatcher daemon for systemd-networkd[0m. | |
[[0;32m OK [0m] Finished [0;1;39mPollinate to seed���seudo random number generator[0m. | |
Starting [0;1;39mOpenBSD Secure Shell server[0m... | |
[[0;32m OK [0m] Started [0;1;39mOpenBSD Secure Shell server[0m. | |
[[0;32m OK [0m] Started [0;1;39mSnap Daemon[0m. | |
Starting [0;1;39mWait until snapd is fully seeded[0m... | |
[[0;32m OK [0m] Started [0;1;39msnap.lxd.hook.inst���-4cc9-8f6c-11289b51d226.scope[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mSocket unix for snap application lxd.daemon[0m. | |
Starting [0;1;39mService for snap application lxd.activate[0m... | |
[[0;32m OK [0m] Finished [0;1;39mService for snap application lxd.activate[0m. | |
[[0;32m OK [0m] Started [0;1;39msnap.lxd.hook.conf���-455e-b515-44ab252d2de4.scope[0m. | |
Starting [0;1;39mTime & Date Service[0m... | |
[[0;32m OK [0m] Started [0;1;39mTime & Date Service[0m. | |
Ubuntu 20.04.5 LTS ubuntu ttyS0 | |
ubuntu login: [ 472.833226] cloud-init[1268]: Cloud-init v. 22.3.4-0ubuntu1~20.04.1 running 'modules:config' at Sat, 12 Nov 2022 18:36:52 +0000. Up 472.00 seconds. | |
ci-info: no authorized SSH keys fingerprints found for user ubuntu. | |
<14>Nov 12 18:36:54 cloud-init: ############################################################# | |
<14>Nov 12 18:36:54 cloud-init: -----BEGIN SSH HOST KEY FINGERPRINTS----- | |
<14>Nov 12 18:36:54 cloud-init: 1024 SHA256:KfnofFAXvyJH4HDaPnekFelDOa74Q60pugpNM9whzuw root@ubuntu (DSA) | |
<14>Nov 12 18:36:54 cloud-init: 256 SHA256:fH6CF8j4pEomkusB38S5XL/a9mnJ5c94GilAaEpw6kA root@ubuntu (ECDSA) | |
<14>Nov 12 18:36:54 cloud-init: 256 SHA256:AJJkQqDyVCIgVdSWOGTRptCAYUuPWd36fhO2r+EHWiI root@ubuntu (ED25519) | |
<14>Nov 12 18:36:54 cloud-init: 3072 SHA256:qgWWVmmsXA57fIukPE1XsTjBLlAvYyxQw9wJKH9/uYU root@ubuntu (RSA) | |
<14>Nov 12 18:36:54 cloud-init: -----END SSH HOST KEY FINGERPRINTS----- | |
<14>Nov 12 18:36:54 cloud-init: ############################################################# | |
-----BEGIN SSH HOST KEY KEYS----- | |
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFbHIPneKN/o1jVZyI14jwV187hwHyAgYqXe2c2FSYsJZO5oLh3jk4k0JrKKqdt3U0VMKV2wdsQbQnKBr5bhNvE= root@ubuntu | |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINN6dG9ZnZIBn8B6YHwPDDNTfQp1/QnU+aCG+3nDn7GY root@ubuntu | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC8iZT5IwPzkvuiLnknwg/oRZ7LRiWUN8KPIpN3ysMSLAmF0lX5JLHM9Z36dKLohJEuVmwdXJKvCpgOTieHnUmUz6HwzBcEDAeRSrZLQ+wQerFNQpDMUp75oOV2JQBERjnzrMECOYZqLL+Ru3oIh871gfEGgogid8pORo9J7Rp6kj8Z5bHqaJSuu6nONwdY+HBAkwZ5Epnf3OQpoCf3I/cbnBidBT5XcjVQlbrwB1oodlxNd/dxybSvZouMnrJYRMQ/5qHOrQeRWaAgSXMRIjoe+kY8IphRt12Pqy98Gc5Qg3Ce8NkGg7AYc2hcsKplqfNVwYZ5IbFkiKzqP6yEkBFfU7VlfwlDi3VNOtRGJC5cYkf2mjKwjAY7+chopizuptEnEvG+MaIHpifpGhkbmxGF7QFV48ip1v2Lm6q+Ma52LbL45Q61Mg+5DkNcbZvnvKfmqYkkx/LBoQ5GgWbtDGjqdfGpkZUYaH20/Y7swDUPjL+Gbo5YQtTH8GFwGx2devk= root@ubuntu | |
-----END SSH HOST KEY KEYS----- | |
[ 473.634658] cloud-init[1284]: Cloud-init v. 22.3.4-0ubuntu1~20.04.1 running 'modules:final' at Sat, 12 Nov 2022 18:36:54 +0000. Up 473.40 seconds. | |
[ 473.636761] cloud-init[1284]: Cloud-init v. 22.3.4-0ubuntu1~20.04.1 finished at Sat, 12 Nov 2022 18:36:54 +0000. Datasource DataSourceNone. Up 473.62 seconds | |
[ 473.640936] cloud-init[1284]: 2022-11-12 18:36:54,249 - cc_final_message.py[WARNING]: Used fallback datasource |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# You can use this file to override _any_ variable throughout Kolla. | |
# Additional options can be found in the | |
# 'kolla-ansible/ansible/group_vars/all.yml' file. Default value of all the | |
# commented parameters are shown here, To override the default value uncomment | |
# the parameter and change its value. | |
################### | |
# Ansible options | |
################### | |
# This variable is used as the "filter" argument for the setup module. For | |
# instance, if one wants to remove/ignore all Neutron interface facts: | |
# kolla_ansible_setup_filter: "ansible_[!qt]*" | |
# By default, we do not provide a filter. | |
#kolla_ansible_setup_filter: "{{ omit }}" | |
# This variable is used as the "gather_subset" argument for the setup module. | |
# For instance, if one wants to avoid collecting facts via facter: | |
# kolla_ansible_setup_gather_subset: "all,!facter" | |
# By default, we do not provide a gather subset. | |
#kolla_ansible_setup_gather_subset: "{{ omit }}" | |
############### | |
# Kolla options | |
############### | |
# Valid options are [ COPY_ONCE, COPY_ALWAYS ] | |
#config_strategy: "COPY_ALWAYS" | |
# Valid options are ['centos', 'debian', 'rhel', 'ubuntu'] | |
kolla_base_distro: "ubuntu" | |
# Valid options are [ binary, source ] | |
kolla_install_type: "source" | |
# Do not override this unless you know what you are doing. | |
#openstack_release: "yoga" | |
# Docker image tag used by default. | |
#openstack_tag: "{{ openstack_release ~ openstack_tag_suffix }}" | |
# Suffix applied to openstack_release to generate openstack_tag. | |
#openstack_tag_suffix: "" | |
# Location of configuration overrides | |
#node_custom_config: "{{ node_config }}/config" | |
# This should be a VIP, an unused IP on your network that will float between | |
# the hosts running keepalived for high-availability. If you want to run an | |
# All-In-One without haproxy and keepalived, you can set enable_haproxy to no | |
# in "OpenStack options" section, and set this value to the IP of your | |
# 'network_interface' as set in the Networking section below. | |
kolla_internal_vip_address: "10.30.30.30" | |
# This is the DNS name that maps to the kolla_internal_vip_address VIP. By | |
# default it is the same as kolla_internal_vip_address. | |
#kolla_internal_fqdn: "{{ kolla_internal_vip_address }}" | |
# This should be a VIP, an unused IP on your network that will float between | |
# the hosts running keepalived for high-availability. It defaults to the | |
# kolla_internal_vip_address, allowing internal and external communication to | |
# share the same address. Specify a kolla_external_vip_address to separate | |
# internal and external requests between two VIPs. | |
#kolla_external_vip_address: "{{ kolla_internal_vip_address }}" | |
# The Public address used to communicate with OpenStack as set in the public_url | |
# for the endpoints that will be created. This DNS name should map to | |
# kolla_external_vip_address. | |
#kolla_external_fqdn: "{{ kolla_external_vip_address }}" | |
# Optionally change the path to sysctl.conf modified by Kolla Ansible plays. | |
#kolla_sysctl_conf_path: /etc/sysctl.conf | |
################ | |
# Docker options | |
################ | |
# Custom docker registry settings: | |
#docker_registry: | |
# Please read the docs carefully before applying docker_registry_insecure. | |
#docker_registry_insecure: "no" | |
#docker_registry_username: | |
# docker_registry_password is set in the passwords.yml file. | |
# Namespace of images: | |
#docker_namespace: "kolla" | |
# Docker client timeout in seconds. | |
#docker_client_timeout: 120 | |
#docker_configure_for_zun: "no" | |
#containerd_configure_for_zun: "no" | |
#containerd_grpc_gid: 42463 | |
################### | |
# Messaging options | |
################### | |
# Below is an example of an separate backend that provides brokerless | |
# messaging for oslo.messaging RPC communications | |
#om_rpc_transport: "amqp" | |
#om_rpc_user: "{{ qdrouterd_user }}" | |
#om_rpc_password: "{{ qdrouterd_password }}" | |
#om_rpc_port: "{{ qdrouterd_port }}" | |
#om_rpc_group: "qdrouterd" | |
# Whether to enable TLS for oslo.messaging communication with RabbitMQ. | |
#om_enable_rabbitmq_tls: "{{ rabbitmq_enable_tls | bool }}" | |
# CA certificate bundle in containers using oslo.messaging with RabbitMQ TLS. | |
#om_rabbitmq_cacert: "{{ rabbitmq_cacert }}" | |
############################## | |
# Neutron - Networking Options | |
############################## | |
# This interface is what all your api services will be bound to by default. | |
# Additionally, all vxlan/tunnel and storage network traffic will go over this | |
# interface by default. This interface must contain an IP address. | |
# It is possible for hosts to have non-matching names of interfaces - these can | |
# be set in an inventory file per host or per group or stored separately, see | |
# http://docs.ansible.com/ansible/intro_inventory.html | |
# Yet another way to workaround the naming problem is to create a bond for the | |
# interface on all hosts and give the bond name here. Similar strategy can be | |
# followed for other types of interfaces. | |
network_interface: "net0" | |
# These can be adjusted for even more customization. The default is the same as | |
# the 'network_interface'. These interfaces must contain an IP address. | |
#kolla_external_vip_interface: "{{ network_interface }}" | |
#api_interface: "{{ network_interface }}" | |
# NOTE: storage_interface is deprecated, please set swift_storage_interface directly instead | |
#storage_interface: "{{ network_interface }}" | |
#swift_storage_interface: "{{ storage_interface }}" | |
#swift_replication_interface: "{{ swift_storage_interface }}" | |
#tunnel_interface: "{{ network_interface }}" | |
#dns_interface: "{{ network_interface }}" | |
#octavia_network_interface: "{{ api_interface }}" | |
# Configure the address family (AF) per network. | |
# Valid options are [ ipv4, ipv6 ] | |
#network_address_family: "ipv4" | |
#api_address_family: "{{ network_address_family }}" | |
#storage_address_family: "{{ network_address_family }}" | |
#swift_storage_address_family: "{{ storage_address_family }}" | |
#swift_replication_address_family: "{{ swift_storage_address_family }}" | |
#migration_address_family: "{{ api_address_family }}" | |
#tunnel_address_family: "{{ network_address_family }}" | |
#octavia_network_address_family: "{{ api_address_family }}" | |
#bifrost_network_address_family: "{{ network_address_family }}" | |
#dns_address_family: "{{ network_address_family }}" | |
# This is the raw interface given to neutron as its external network port. Even | |
# though an IP address can exist on this interface, it will be unusable in most | |
# configurations. It is recommended this interface not be configured with any IP | |
# addresses for that reason. | |
neutron_external_interface: "net1" | |
# Valid options are [ openvswitch, ovn, linuxbridge, vmware_nsxv, vmware_nsxv3, vmware_nsxp, vmware_dvs ] | |
# if vmware_nsxv3 or vmware_nsxp is selected, enable_openvswitch MUST be set to "no" (default is yes) | |
#neutron_plugin_agent: "openvswitch" | |
# Valid options are [ internal, infoblox ] | |
#neutron_ipam_driver: "internal" | |
# Configure Neutron upgrade option, currently Kolla support | |
# two upgrade ways for Neutron: legacy_upgrade and rolling_upgrade | |
# The variable "neutron_enable_rolling_upgrade: yes" is meaning rolling_upgrade | |
# were enabled and opposite | |
# Neutron rolling upgrade were enable by default | |
#neutron_enable_rolling_upgrade: "yes" | |
# Configure neutron logging framework to log ingress/egress connections to instances | |
# for security groups rules. More information can be found here: | |
# https://docs.openstack.org/neutron/latest/admin/config-logging.html | |
#enable_neutron_packet_logging: "no" | |
#################### | |
# keepalived options | |
#################### | |
# Arbitrary unique number from 0..255 | |
# This should be changed from the default in the event of a multi-region deployment | |
# where the VIPs of different regions reside on a common subnet. | |
#keepalived_virtual_router_id: "51" | |
################### | |
# Dimension options | |
################### | |
# This is to provide an extra option to deploy containers with Resource constraints. | |
# We call it dimensions here. | |
# The dimensions for each container are defined by a mapping, where each dimension value should be a | |
# string. | |
# Reference_Docs | |
# https://docs.docker.com/config/containers/resource_constraints/ | |
# eg: | |
# <container_name>_dimensions: | |
# blkio_weight: | |
# cpu_period: | |
# cpu_quota: | |
# cpu_shares: | |
# cpuset_cpus: | |
# cpuset_mems: | |
# mem_limit: | |
# mem_reservation: | |
# memswap_limit: | |
# kernel_memory: | |
# ulimits: | |
##################### | |
# Healthcheck options | |
##################### | |
#enable_container_healthchecks: "yes" | |
# Healthcheck options for Docker containers | |
# interval/timeout/start_period are in seconds | |
#default_container_healthcheck_interval: 30 | |
#default_container_healthcheck_timeout: 30 | |
#default_container_healthcheck_retries: 3 | |
#default_container_healthcheck_start_period: 5 | |
############# | |
# TLS options | |
############# | |
# To provide encryption and authentication on the kolla_external_vip_interface, | |
# TLS can be enabled. When TLS is enabled, certificates must be provided to | |
# allow clients to perform authentication. | |
#kolla_enable_tls_internal: "no" | |
#kolla_enable_tls_external: "{{ kolla_enable_tls_internal if kolla_same_external_internal_vip | bool else 'no' }}" | |
#kolla_certificates_dir: "{{ node_config }}/certificates" | |
#kolla_external_fqdn_cert: "{{ kolla_certificates_dir }}/haproxy.pem" | |
#kolla_internal_fqdn_cert: "{{ kolla_certificates_dir }}/haproxy-internal.pem" | |
#kolla_admin_openrc_cacert: "" | |
#kolla_copy_ca_into_containers: "no" | |
#haproxy_backend_cacert: "{{ 'ca-certificates.crt' if kolla_base_distro in ['debian', 'ubuntu'] else 'ca-bundle.trust.crt' }}" | |
#haproxy_backend_cacert_dir: "/etc/ssl/certs" | |
################## | |
# Backend options | |
################## | |
#kolla_httpd_keep_alive: "60" | |
#kolla_httpd_timeout: "60" | |
##################### | |
# Backend TLS options | |
##################### | |
#kolla_enable_tls_backend: "no" | |
#kolla_verify_tls_backend: "yes" | |
#kolla_tls_backend_cert: "{{ kolla_certificates_dir }}/backend-cert.pem" | |
#kolla_tls_backend_key: "{{ kolla_certificates_dir }}/backend-key.pem" | |
##################### | |
# ACME client options | |
##################### | |
# A list of haproxy backend server directives pointing to addresses used by the | |
# ACME client to complete http-01 challenge. | |
# Please read the docs for more details. | |
#acme_client_servers: [] | |
################ | |
# Region options | |
################ | |
# Use this option to change the name of this region. | |
#openstack_region_name: "RegionOne" | |
# Use this option to define a list of region names - only needs to be configured | |
# in a multi-region deployment, and then only in the *first* region. | |
#multiple_regions_names: ["{{ openstack_region_name }}"] | |
################### | |
# OpenStack options | |
################### | |
# Use these options to set the various log levels across all OpenStack projects | |
# Valid options are [ True, False ] | |
#openstack_logging_debug: "False" | |
# Enable core OpenStack services. This includes: | |
# glance, keystone, neutron, nova, heat, and horizon. | |
#enable_openstack_core: "yes" | |
# These roles are required for Kolla to be operation, however a savvy deployer | |
# could disable some of these required roles and run their own services. | |
#enable_glance: "{{ enable_openstack_core | bool }}" | |
#enable_hacluster: "no" | |
#enable_haproxy: "yes" | |
#enable_keepalived: "{{ enable_haproxy | bool }}" | |
#enable_keystone: "{{ enable_openstack_core | bool }}" | |
#enable_mariadb: "yes" | |
#enable_memcached: "yes" | |
#enable_neutron: "{{ enable_openstack_core | bool }}" | |
#enable_nova: "{{ enable_openstack_core | bool }}" | |
#enable_rabbitmq: "{{ 'yes' if om_rpc_transport == 'rabbit' or om_notify_transport == 'rabbit' else 'no' }}" | |
#enable_outward_rabbitmq: "{{ enable_murano | bool }}" | |
# OpenStack services can be enabled or disabled with these options | |
#enable_aodh: "no" | |
#enable_barbican: "no" | |
#enable_blazar: "no" | |
#enable_ceilometer: "no" | |
#enable_ceilometer_ipmi: "no" | |
#enable_cells: "no" | |
#enable_central_logging: "no" | |
#enable_ceph_rgw: "no" | |
#enable_ceph_rgw_loadbalancer: "{{ enable_ceph_rgw | bool }}" | |
enable_cinder: "yes" | |
enable_cinder_backup: "yes" | |
#enable_cinder_backend_hnas_nfs: "no" | |
#enable_cinder_backend_iscsi: "{{ enable_cinder_backend_lvm | bool }}" | |
#enable_cinder_backend_lvm: "no" | |
#enable_cinder_backend_nfs: "no" | |
#enable_cinder_backend_quobyte: "no" | |
#enable_cloudkitty: "no" | |
#enable_collectd: "no" | |
#enable_cyborg: "no" | |
#enable_designate: "no" | |
#enable_destroy_images: "no" | |
#enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool or enable_osprofiler | bool or enable_skydive | bool or enable_monasca | bool or (enable_cloudkitty | bool and cloudkitty_storage_backend == 'elasticsearch') else 'no' }}" | |
#enable_elasticsearch_curator: "no" | |
#enable_etcd: "no" | |
#enable_fluentd: "yes" | |
#enable_freezer: "no" | |
#enable_gnocchi: "no" | |
#enable_gnocchi_statsd: "no" | |
#enable_grafana: "{{ enable_monasca | bool }}" | |
#enable_grafana_external: "{{ enable_grafana | bool }}" | |
#enable_heat: "{{ enable_openstack_core | bool }}" | |
#enable_horizon: "{{ enable_openstack_core | bool }}" | |
#enable_horizon_blazar: "{{ enable_blazar | bool }}" | |
#enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" | |
#enable_horizon_designate: "{{ enable_designate | bool }}" | |
#enable_horizon_freezer: "{{ enable_freezer | bool }}" | |
#enable_horizon_heat: "{{ enable_heat | bool }}" | |
#enable_horizon_ironic: "{{ enable_ironic | bool }}" | |
#enable_horizon_magnum: "{{ enable_magnum | bool }}" | |
#enable_horizon_manila: "{{ enable_manila | bool }}" | |
#enable_horizon_masakari: "{{ enable_masakari | bool }}" | |
#enable_horizon_mistral: "{{ enable_mistral | bool }}" | |
#enable_horizon_monasca: "{{ enable_monasca | bool }}" | |
#enable_horizon_murano: "{{ enable_murano | bool }}" | |
#enable_horizon_neutron_vpnaas: "{{ enable_neutron_vpnaas | bool }}" | |
#enable_horizon_octavia: "{{ enable_octavia | bool }}" | |
#enable_horizon_sahara: "{{ enable_sahara | bool }}" | |
#enable_horizon_senlin: "{{ enable_senlin | bool }}" | |
#enable_horizon_solum: "{{ enable_solum | bool }}" | |
#enable_horizon_tacker: "{{ enable_tacker | bool }}" | |
#enable_horizon_trove: "{{ enable_trove | bool }}" | |
#enable_horizon_vitrage: "{{ enable_vitrage | bool }}" | |
#enable_horizon_watcher: "{{ enable_watcher | bool }}" | |
#enable_horizon_zun: "{{ enable_zun | bool }}" | |
#enable_influxdb: "{{ enable_monasca | bool or (enable_cloudkitty | bool and cloudkitty_storage_backend == 'influxdb') }}" | |
#enable_ironic: "no" | |
#enable_ironic_neutron_agent: "{{ enable_neutron | bool and enable_ironic | bool }}" | |
#enable_iscsid: "{{ enable_cinder | bool and enable_cinder_backend_iscsi | bool }}" | |
#enable_kafka: "{{ enable_monasca | bool }}" | |
#enable_kibana: "{{ 'yes' if enable_central_logging | bool or enable_monasca | bool else 'no' }}" | |
#enable_kibana_external: "{{ enable_kibana | bool }}" | |
#enable_kuryr: "no" | |
enable_magnum: "yes" | |
#enable_manila: "no" | |
#enable_manila_backend_generic: "no" | |
#enable_manila_backend_hnas: "no" | |
#enable_manila_backend_cephfs_native: "no" | |
#enable_manila_backend_cephfs_nfs: "no" | |
#enable_manila_backend_glusterfs_nfs: "no" | |
#enable_mariabackup: "no" | |
#enable_masakari: "no" | |
#enable_mistral: "no" | |
#enable_monasca: "no" | |
#enable_multipathd: "no" | |
#enable_murano: "no" | |
#enable_neutron_vpnaas: "no" | |
#enable_neutron_sriov: "no" | |
#enable_neutron_dvr: "no" | |
#enable_neutron_qos: "no" | |
#enable_neutron_agent_ha: "no" | |
#enable_neutron_bgp_dragent: "no" | |
#enable_neutron_provider_networks: "no" | |
#enable_neutron_segments: "no" | |
#enable_neutron_sfc: "no" | |
#enable_neutron_trunk: "no" | |
#enable_neutron_metering: "no" | |
#enable_neutron_infoblox_ipam_agent: "no" | |
#enable_neutron_port_forwarding: "no" | |
#enable_nova_serialconsole_proxy: "no" | |
#enable_nova_ssh: "yes" | |
#enable_octavia: "no" | |
#enable_octavia_driver_agent: "{{ enable_octavia | bool and neutron_plugin_agent == 'ovn' }}" | |
#enable_openvswitch: "{{ enable_neutron | bool and neutron_plugin_agent != 'linuxbridge' }}" | |
#enable_ovn: "{{ enable_neutron | bool and neutron_plugin_agent == 'ovn' }}" | |
#enable_ovs_dpdk: "no" | |
#enable_osprofiler: "no" | |
#enable_placement: "{{ enable_nova | bool or enable_zun | bool }}" | |
#enable_prometheus: "no" | |
#enable_qdrouterd: "{{ 'yes' if om_rpc_transport == 'amqp' else 'no' }}" | |
enable_redis: "yes" # for cinder_coordination_backend | |
#enable_sahara: "no" | |
#enable_senlin: "no" | |
#enable_skydive: "no" | |
#enable_solum: "no" | |
#enable_storm: "{{ enable_monasca | bool }}" | |
#enable_swift: "no" | |
#enable_swift_s3api: "no" | |
#enable_tacker: "no" | |
#enable_telegraf: "no" | |
#enable_trove: "no" | |
#enable_trove_singletenant: "no" | |
#enable_vitrage: "no" | |
#enable_watcher: "no" | |
#enable_zookeeper: "{{ enable_kafka | bool or enable_storm | bool }}" | |
#enable_zun: "no" | |
################## | |
# RabbitMQ options | |
################## | |
# Options passed to RabbitMQ server startup script via the | |
# RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS environment var. | |
# See Kolla Ansible docs RabbitMQ section for details. | |
# These are appended to args already provided by Kolla Ansible | |
# to configure IPv6 in RabbitMQ server. | |
# More details can be found in the RabbitMQ docs: | |
# https://www.rabbitmq.com/runtime.html#scheduling | |
# https://www.rabbitmq.com/runtime.html#busy-waiting | |
# The default tells RabbitMQ to always use two cores (+S 2:2), | |
# and not to busy wait (+sbwt none +sbwtdcpu none +sbwtdio none): | |
#rabbitmq_server_additional_erl_args: "+S 2:2 +sbwt none +sbwtdcpu none +sbwtdio none" | |
# Whether to enable TLS encryption for RabbitMQ client-server communication. | |
#rabbitmq_enable_tls: "no" | |
# CA certificate bundle in RabbitMQ container. | |
#rabbitmq_cacert: "/etc/ssl/certs/{{ 'ca-certificates.crt' if kolla_base_distro in ['debian', 'ubuntu'] else 'ca-bundle.trust.crt' }}" | |
# RabbitMQ timeouts cause services to be slow/unresponsive/buggy, disable healthchecks | |
# More info: https://gitlab.cri.epita.fr/cri/iac/infrastructure/-/issues/22 | |
# Re-enabling healthchecks so we don't bring down the next node until the rebooted one becomes healthy 11/10/22. | |
# rabbitmq_enable_healthchecks: "no" | |
################# | |
# MariaDB options | |
################# | |
# List of additional WSREP options | |
#mariadb_wsrep_extra_provider_options: [] | |
####################### | |
# External Ceph options | |
####################### | |
# External Ceph - cephx auth enabled (this is the standard nowadays, defaults to yes) | |
#external_ceph_cephx_enabled: "yes" | |
# Glance | |
ceph_glance_keyring: "ceph.client.glance.keyring" | |
ceph_glance_user: "glance" | |
ceph_glance_pool_name: "images" | |
# Cinder | |
ceph_cinder_keyring: "ceph.client.cinder.keyring" | |
ceph_cinder_user: "cinder" | |
ceph_cinder_pool_name: "volumes" | |
ceph_cinder_backup_keyring: "ceph.client.cinder-backup.keyring" | |
ceph_cinder_backup_user: "cinder-backup" | |
ceph_cinder_backup_pool_name: "backups" | |
# Nova | |
ceph_nova_keyring: "{{ ceph_cinder_keyring }}" | |
ceph_nova_user: "{{ ceph_cinder_user }}" | |
ceph_nova_pool_name: "vms" | |
# Gnocchi | |
#ceph_gnocchi_keyring: "ceph.client.gnocchi.keyring" | |
#ceph_gnocchi_user: "gnocchi" | |
#ceph_gnocchi_pool_name: "gnocchi" | |
# Manila | |
#ceph_manila_keyring: "ceph.client.manila.keyring" | |
#ceph_manila_user: "manila" | |
############################# | |
# Keystone - Identity Options | |
############################# | |
# Valid options are [ fernet ] | |
#keystone_token_provider: 'fernet' | |
#keystone_admin_user: "admin" | |
#keystone_admin_project: "admin" | |
# Interval to rotate fernet keys by (in seconds). Must be an interval of | |
# 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min), | |
# 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min), | |
# 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour), | |
# 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week). | |
#fernet_token_expiry: 86400 | |
######################## | |
# Glance - Image Options | |
######################## | |
# Configure image backend. | |
glance_backend_ceph: "yes" | |
#glance_backend_file: "yes" | |
#glance_backend_swift: "no" | |
#glance_backend_vmware: "no" | |
#enable_glance_image_cache: "no" | |
#glance_enable_property_protection: "no" | |
#glance_enable_interoperable_image_import: "no" | |
# Configure glance upgrade option. | |
# Due to this feature being experimental in glance, | |
# the default value is "no". | |
#glance_enable_rolling_upgrade: "no" | |
#################### | |
# Osprofiler options | |
#################### | |
# valid values: ["elasticsearch", "redis"] | |
#osprofiler_backend: "elasticsearch" | |
################## | |
# Barbican options | |
################## | |
# Valid options are [ simple_crypto, p11_crypto ] | |
#barbican_crypto_plugin: "simple_crypto" | |
#barbican_library_path: "/usr/lib/libCryptoki2_64.so" | |
################# | |
# Gnocchi options | |
################# | |
# Valid options are [ file, ceph, swift ] | |
#gnocchi_backend_storage: "{% if enable_swift | bool %}swift{% else %}file{% endif %}" | |
# Valid options are [redis, ''] | |
#gnocchi_incoming_storage: "{{ 'redis' if enable_redis | bool else '' }}" | |
################################ | |
# Cinder - Block Storage Options | |
################################ | |
# Enable / disable Cinder backends | |
cinder_backend_ceph: "yes" | |
#cinder_backend_vmwarevc_vmdk: "no" | |
#cinder_backend_vmware_vstorage_object: "no" | |
#cinder_volume_group: "cinder-volumes" | |
# Valid options are [ '', redis, etcd ] | |
#cinder_coordination_backend: "{{ 'redis' if enable_redis|bool else 'etcd' if enable_etcd|bool else '' }}" | |
# Valid options are [ nfs, swift, ceph ] | |
cinder_backup_driver: "ceph" | |
#cinder_backup_share: "" | |
#cinder_backup_mount_options_nfs: "" | |
####################### | |
# Cloudkitty options | |
####################### | |
# Valid option is gnocchi | |
#cloudkitty_collector_backend: "gnocchi" | |
# Valid options are 'sqlalchemy' or 'influxdb'. The default value is | |
# 'influxdb', which matches the default in Cloudkitty since the Stein release. | |
# When the backend is "influxdb", we also enable Influxdb. | |
# Also, when using 'influxdb' as the backend, we trigger the configuration/use | |
# of Cloudkitty storage backend version 2. | |
#cloudkitty_storage_backend: "influxdb" | |
################### | |
# Designate options | |
################### | |
# Valid options are [ bind9 ] | |
#designate_backend: "bind9" | |
#designate_ns_record: | |
# - "ns1.example.org" | |
# Valid options are [ '', redis ] | |
#designate_coordination_backend: "{{ 'redis' if enable_redis|bool else '' }}" | |
######################## | |
# Nova - Compute Options | |
######################## | |
nova_backend_ceph: "yes" | |
# Valid options are [ qemu, kvm, vmware ] | |
#nova_compute_virt_type: "kvm" | |
# The number of fake driver per compute node | |
#num_nova_fake_per_node: 5 | |
# The flag "nova_safety_upgrade" need to be consider when | |
# "nova_enable_rolling_upgrade" is enabled. The "nova_safety_upgrade" | |
# controls whether the nova services are all stopped before rolling | |
# upgrade to the new version, for the safety and availability. | |
# If "nova_safety_upgrade" is "yes", that will stop all nova services (except | |
# nova-compute) for no failed API operations before upgrade to the | |
# new version. And opposite. | |
#nova_safety_upgrade: "no" | |
# Valid options are [ none, novnc, spice ] | |
#nova_console: "novnc" | |
############################## | |
# Neutron - networking options | |
############################## | |
# Enable distributed floating ip for OVN deployments | |
#neutron_ovn_distributed_fip: "no" | |
# Enable DHCP agent(s) to use with OVN | |
#neutron_ovn_dhcp_agent: "no" | |
############################# | |
# Horizon - Dashboard Options | |
############################# | |
#horizon_backend_database: "{{ enable_murano | bool }}" | |
############################# | |
# Ironic options | |
############################# | |
# dnsmasq bind interface for Ironic Inspector, by default is network_interface | |
#ironic_dnsmasq_interface: "{{ network_interface }}" | |
# The following value must be set when enabling ironic, the value format is | |
# "192.168.0.10,192.168.0.100,255.255.255.0" the last being an optional netmask. | |
#ironic_dnsmasq_dhcp_range: | |
# PXE bootloader file for Ironic Inspector, relative to /var/lib/ironic/tftpboot. | |
#ironic_dnsmasq_boot_file: "pxelinux.0" | |
# Configure ironic upgrade option, due to currently kolla support | |
# two upgrade ways for ironic: legacy_upgrade and rolling_upgrade | |
# The variable "ironic_enable_rolling_upgrade: yes" is meaning rolling_upgrade | |
# were enabled and opposite | |
# Rolling upgrade were enable by default | |
#ironic_enable_rolling_upgrade: "yes" | |
# List of extra kernel parameters passed to the kernel used during inspection | |
#ironic_inspector_kernel_cmdline_extras: [] | |
###################################### | |
# Manila - Shared File Systems Options | |
###################################### | |
# HNAS backend configuration | |
#hnas_ip: | |
#hnas_user: | |
#hnas_password: | |
#hnas_evs_id: | |
#hnas_evs_ip: | |
#hnas_file_system_name: | |
# CephFS backend configuration. | |
# External Ceph FS name. | |
# By default this is empty to allow Manila to auto-find the first FS available. | |
#manila_cephfs_filesystem_name: | |
# Gluster backend configuration | |
# The option of glusterfs share layout can be directory or volume | |
# The default option of share layout is 'volume' | |
#manila_glusterfs_share_layout: | |
# The default option of nfs server type is 'Gluster' | |
#manila_glusterfs_nfs_server_type: | |
# Volume layout Options (required) | |
# If the glusterfs server requires remote ssh, then you need to fill | |
# in 'manila_glusterfs_servers', ssh user 'manila_glusterfs_ssh_user', and ssh password | |
# 'manila_glusterfs_ssh_password'. | |
# 'manila_glusterfs_servers' value List of GlusterFS servers which provide volumes, | |
# the format is for example: | |
# - 10.0.1.1 | |
# - 10.0.1.2 | |
#manila_glusterfs_servers: | |
#manila_glusterfs_ssh_user: | |
#manila_glusterfs_ssh_password: | |
# Used to filter GlusterFS volumes for share creation. | |
# Examples: manila-share-volume-\\d+$, manila-share-volume-#{size}G-\\d+$; | |
#manila_glusterfs_volume_pattern: | |
# Directory layout Options | |
# If the glusterfs server is on the local node of the manila share, | |
# it’s of the format <glustervolserver>:/<glustervolid> | |
# If the glusterfs server is on a remote node, | |
# it’s of the format <username>@<glustervolserver>:/<glustervolid> , | |
# and define 'manila_glusterfs_ssh_password' | |
#manila_glusterfs_target: | |
#manila_glusterfs_mount_point_base: | |
################################ | |
# Swift - Object Storage Options | |
################################ | |
# Swift expects block devices to be available for storage. Two types of storage | |
# are supported: 1 - storage device with a special partition name and filesystem | |
# label, 2 - unpartitioned disk with a filesystem. The label of this filesystem | |
# is used to detect the disk which Swift will be using. | |
# Swift support two matching modes, valid options are [ prefix, strict ] | |
#swift_devices_match_mode: "strict" | |
# This parameter defines matching pattern: if "strict" mode was selected, | |
# for swift_devices_match_mode then swift_device_name should specify the name of | |
# the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was | |
# selected then swift_devices_name should specify a pattern which would match to | |
# filesystems' labels prepared for swift. | |
#swift_devices_name: "KOLLA_SWIFT_DATA" | |
# Configure swift upgrade option, due to currently kolla support | |
# two upgrade ways for swift: legacy_upgrade and rolling_upgrade | |
# The variable "swift_enable_rolling_upgrade: yes" is meaning rolling_upgrade | |
# were enabled and opposite | |
# Rolling upgrade were enable by default | |
#swift_enable_rolling_upgrade: "yes" | |
################################### | |
# VMware - OpenStack VMware support | |
################################### | |
#vmware_vcenter_host_ip: | |
#vmware_vcenter_host_username: | |
#vmware_vcenter_host_password: | |
#vmware_datastore_name: | |
#vmware_vcenter_name: | |
#vmware_vcenter_cluster_name: | |
############ | |
# Prometheus | |
############ | |
#enable_prometheus_server: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_haproxy_exporter: "{{ enable_haproxy | bool }}" | |
#enable_prometheus_mysqld_exporter: "{{ enable_mariadb | bool }}" | |
#enable_prometheus_node_exporter: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_cadvisor: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_fluentd_integration: "{{ enable_prometheus | bool and enable fluentd | bool }}" | |
#enable_prometheus_memcached: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_alertmanager: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_alertmanager_external: "{{ enable_prometheus_alertmanager | bool }}" | |
#enable_prometheus_ceph_mgr_exporter: "no" | |
#enable_prometheus_openstack_exporter: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_elasticsearch_exporter: "{{ enable_prometheus | bool and enable_elasticsearch | bool }}" | |
#enable_prometheus_blackbox_exporter: "{{ enable_prometheus | bool }}" | |
#enable_prometheus_libvirt_exporter: "{{ enable_prometheus | bool and enable_nova | bool and nova_compute_virt_type in ['kvm', 'qemu'] }}" | |
#enable_prometheus_etcd_integration: "{{ enable_prometheus | bool and enable_etcd | bool }}" | |
# List of extra parameters passed to prometheus. You can add as many to the list. | |
#prometheus_cmdline_extras: | |
# List of extra parameters passed to cAdvisor. By default system cgroups | |
# and container labels are not exposed to reduce time series cardinality. | |
#prometheus_cadvisor_cmdline_extras: "--docker_only --store_container_labels=false --disable_metrics=percpu,referenced_memory,cpu_topology,resctrl,udp,advtcp,sched,hugetlb,memory_numa,tcp,process" | |
# Extra parameters passed to Prometheus exporters. | |
#prometheus_blackbox_exporter_cmdline_extras: | |
#prometheus_elasticsearch_exporter_cmdline_extras: | |
#prometheus_haproxy_exporter_cmdline_extras: | |
#prometheus_memcached_exporter_cmdline_extras: | |
#prometheus_mysqld_exporter_cmdline_extras: | |
#prometheus_node_exporter_cmdline_extras: | |
#prometheus_openstack_exporter_cmdline_extras: | |
# Example of setting endpoints for prometheus ceph mgr exporter. | |
# You should add all ceph mgr's in your external ceph deployment. | |
#prometheus_ceph_mgr_exporter_endpoints: | |
# - host1:port1 | |
# - host2:port2 | |
######### | |
# Freezer | |
######### | |
# Freezer can utilize two different database backends, elasticsearch or mariadb. | |
# Elasticsearch is preferred, however it is not compatible with the version deployed | |
# by kolla-ansible. You must first setup an external elasticsearch with 2.3.0. | |
# By default, kolla-ansible deployed mariadb is the used database backend. | |
#freezer_database_backend: "mariadb" | |
########## | |
# Telegraf | |
########## | |
# Configure telegraf to use the docker daemon itself as an input for | |
# telemetry data. | |
#telegraf_enable_docker_input: "no" | |
########################################## | |
# Octavia - openstack loadbalancer Options | |
########################################## | |
# Whether to run Kolla Ansible's automatic configuration for Octavia. | |
# NOTE: if you upgrade from Ussuri, you must set `octavia_auto_configure` to `no` | |
# and keep your other Octavia config like before. | |
#octavia_auto_configure: yes | |
# Octavia amphora flavor. | |
# See os_nova_flavor for details. Supported parameters: | |
# - flavorid (optional) | |
# - is_public (optional) | |
# - name | |
# - vcpus | |
# - ram | |
# - disk | |
# - ephemeral (optional) | |
# - swap (optional) | |
# - extra_specs (optional) | |
#octavia_amp_flavor: | |
# name: "amphora" | |
# is_public: no | |
# vcpus: 1 | |
# ram: 1024 | |
# disk: 5 | |
# Octavia security groups. lb-mgmt-sec-grp is for amphorae. | |
#octavia_amp_security_groups: | |
# mgmt-sec-grp: | |
# name: "lb-mgmt-sec-grp" | |
# rules: | |
# - protocol: icmp | |
# - protocol: tcp | |
# src_port: 22 | |
# dst_port: 22 | |
# - protocol: tcp | |
# src_port: "{{ octavia_amp_listen_port }}" | |
# dst_port: "{{ octavia_amp_listen_port }}" | |
# Octavia management network. | |
# See os_network and os_subnet for details. Supported parameters: | |
# - external (optional) | |
# - mtu (optional) | |
# - name | |
# - provider_network_type (optional) | |
# - provider_physical_network (optional) | |
# - provider_segmentation_id (optional) | |
# - shared (optional) | |
# - subnet | |
# The subnet parameter has the following supported parameters: | |
# - allocation_pool_start (optional) | |
# - allocation_pool_end (optional) | |
# - cidr | |
# - enable_dhcp (optional) | |
# - gateway_ip (optional) | |
# - name | |
# - no_gateway_ip (optional) | |
# - ip_version (optional) | |
# - ipv6_address_mode (optional) | |
# - ipv6_ra_mode (optional) | |
#octavia_amp_network: | |
# name: lb-mgmt-net | |
# shared: false | |
# subnet: | |
# name: lb-mgmt-subnet | |
# cidr: "{{ octavia_amp_network_cidr }}" | |
# no_gateway_ip: yes | |
# enable_dhcp: yes | |
# Octavia management network subnet CIDR. | |
#octavia_amp_network_cidr: 10.1.0.0/24 | |
#octavia_amp_image_tag: "amphora" | |
# Load balancer topology options are [ SINGLE, ACTIVE_STANDBY ] | |
#octavia_loadbalancer_topology: "SINGLE" | |
# The following variables are ignored as along as `octavia_auto_configure` is set to `yes`. | |
#octavia_amp_image_owner_id: | |
#octavia_amp_boot_network_list: | |
#octavia_amp_secgroup_list: | |
#octavia_amp_flavor_id: | |
#################### | |
# Corosync options | |
#################### | |
# this is UDP port | |
#hacluster_corosync_port: 5405 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 0.000000] Linux version 5.15.0-52-generic (buildd@lcy02-amd64-032) (gcc (Ubuntu 11.2.0-19ubuntu1) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #58-Ubuntu SMP Thu Oct 13 08:03:55 UTC 2022 (Ubuntu 5.15.0-52.58-generic 5.15.60) | |
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 | |
[ 0.000000] KERNEL supported cpus: | |
[ 0.000000] Intel GenuineIntel | |
[ 0.000000] AMD AuthenticAMD | |
[ 0.000000] Hygon HygonGenuine | |
[ 0.000000] Centaur CentaurHauls | |
[ 0.000000] zhaoxin Shanghai | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. | |
[ 0.000000] signal: max sigframe size: 1776 | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdafff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000007ffdb000-0x000000007fffffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved | |
[ 0.000000] NX (Execute Disable) protection: active | |
[ 0.000000] SMBIOS 2.8 present. | |
[ 0.000000] DMI: OpenStack Foundation OpenStack Nova, BIOS 1.13.0-1ubuntu1.1 04/01/2014 | |
[ 0.000000] Hypervisor detected: KVM | |
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 | |
[ 0.000000] kvm-clock: cpu 0, msr 17601001, primary cpu clock | |
[ 0.000004] kvm-clock: using sched offset of 4978104120 cycles | |
[ 0.000014] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns | |
[ 0.000020] tsc: Detected 3299.872 MHz processor | |
[ 0.000989] last_pfn = 0x7ffdb max_arch_pfn = 0x400000000 | |
[ 0.001048] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT | |
[ 0.011944] found SMP MP-table at [mem 0x000f5c70-0x000f5c7f] | |
[ 0.012086] Using GB pages for direct mapping | |
[ 0.012401] RAMDISK: [mem 0x343b7000-0x361d2fff] | |
[ 0.012426] ACPI: Early table checksum verification disabled | |
[ 0.012460] ACPI: RSDP 0x00000000000F5A80 000014 (v00 BOCHS ) | |
[ 0.012473] ACPI: RSDT 0x000000007FFE1504 00002C (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) | |
[ 0.012491] ACPI: FACP 0x000000007FFE1418 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) | |
[ 0.012500] ACPI: DSDT 0x000000007FFE0040 0013D8 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) | |
[ 0.012506] ACPI: FACS 0x000000007FFE0000 000040 | |
[ 0.012511] ACPI: APIC 0x000000007FFE148C 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) | |
[ 0.012515] ACPI: Reserving FACP table memory at [mem 0x7ffe1418-0x7ffe148b] | |
[ 0.012518] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1417] | |
[ 0.012519] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] | |
[ 0.012520] ACPI: Reserving APIC table memory at [mem 0x7ffe148c-0x7ffe1503] | |
[ 0.013011] No NUMA configuration found | |
[ 0.013013] Faking a node at [mem 0x0000000000000000-0x000000007ffdafff] | |
[ 0.013027] NODE_DATA(0) allocated [mem 0x7ffb1000-0x7ffdafff] | |
[ 0.013485] Zone ranges: | |
[ 0.013487] DMA [mem 0x0000000000001000-0x0000000000ffffff] | |
[ 0.013490] DMA32 [mem 0x0000000001000000-0x000000007ffdafff] | |
[ 0.013492] Normal empty | |
[ 0.013493] Device empty | |
[ 0.013495] Movable zone start for each node | |
[ 0.013498] Early memory node ranges | |
[ 0.013499] node 0: [mem 0x0000000000001000-0x000000000009efff] | |
[ 0.013500] node 0: [mem 0x0000000000100000-0x000000007ffdafff] | |
[ 0.013502] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdafff] | |
[ 0.014035] On node 0, zone DMA: 1 pages in unavailable ranges | |
[ 0.014073] On node 0, zone DMA: 97 pages in unavailable ranges | |
[ 0.020741] On node 0, zone DMA32: 37 pages in unavailable ranges | |
[ 0.021329] ACPI: PM-Timer IO Port: 0x608 | |
[ 0.021367] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) | |
[ 0.021434] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 | |
[ 0.021439] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) | |
[ 0.021442] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) | |
[ 0.021444] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) | |
[ 0.021449] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) | |
[ 0.021451] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) | |
[ 0.021459] ACPI: Using ACPI (MADT) for SMP configuration information | |
[ 0.021467] TSC deadline timer available | |
[ 0.021469] smpboot: Allowing 1 CPUs, 0 hotplug CPUs | |
[ 0.021540] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] | |
[ 0.021542] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff] | |
[ 0.021544] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff] | |
[ 0.021545] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff] | |
[ 0.021548] [mem 0x80000000-0xfeffbfff] available for PCI devices | |
[ 0.021549] Booting paravirtualized kernel on KVM | |
[ 0.021568] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns | |
[ 0.021595] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1 | |
[ 0.022334] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u2097152 | |
[ 0.022387] kvm-guest: stealtime: cpu 0, msr 7dc32080 | |
[ 0.022393] kvm-guest: PV spinlocks disabled, no host support | |
[ 0.022411] Built 1 zonelists, mobility grouping on. Total pages: 515803 | |
[ 0.022413] Policy zone: DMA32 | |
[ 0.022415] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0 | |
[ 0.022477] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic", will be passed to user space. | |
[ 0.023297] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) | |
[ 0.023477] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) | |
[ 0.023559] mem auto-init: stack:off, heap alloc:on, heap free:off | |
[ 0.029178] Memory: 1983464K/2096612K available (16393K kernel code, 4378K rwdata, 10812K rodata, 3228K init, 6572K bss, 112888K reserved, 0K cma-reserved) | |
[ 0.029585] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 | |
[ 0.029628] Kernel/User page tables isolation: enabled | |
[ 0.029673] ftrace: allocating 50499 entries in 198 pages | |
[ 0.058063] ftrace: allocated 198 pages with 4 groups | |
[ 0.058370] rcu: Hierarchical RCU implementation. | |
[ 0.058372] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1. | |
[ 0.058374] Rude variant of Tasks RCU enabled. | |
[ 0.058375] Tracing variant of Tasks RCU enabled. | |
[ 0.058379] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. | |
[ 0.058381] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 | |
[ 0.062826] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16 | |
[ 0.063057] random: crng init done | |
[ 0.077109] Console: colour VGA+ 80x25 | |
[ 0.120331] printk: console [tty1] enabled | |
[ 0.233090] printk: console [ttyS0] enabled | |
[ 0.234147] ACPI: Core revision 20210730 | |
[ 0.235166] APIC: Switch to symmetric I/O mode setup | |
[ 0.236681] x2apic enabled | |
[ 0.237768] Switched APIC routing to physical x2apic. | |
[ 0.240424] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f90d358868, max_idle_ns: 440795240741 ns | |
[ 0.242757] Calibrating delay loop (skipped) preset value.. 6599.74 BogoMIPS (lpj=13199488) | |
[ 0.244647] pid_max: default: 32768 minimum: 301 | |
[ 0.245771] LSM: Security Framework initializing | |
[ 0.246752] landlock: Up and running. | |
[ 0.246752] Yama: becoming mindful. | |
[ 0.246752] AppArmor: AppArmor initialized | |
[ 0.246752] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) | |
[ 0.246752] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) | |
[ 0.246752] x86/cpu: User Mode Instruction Prevention (UMIP) activated | |
[ 0.246752] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 | |
[ 0.246752] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 | |
[ 0.246752] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization | |
[ 0.246752] Spectre V2 : Mitigation: Retpolines | |
[ 0.246752] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch | |
[ 0.246752] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT | |
[ 0.246752] Spectre V2 : Enabling Restricted Speculation for firmware calls | |
[ 0.246752] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier | |
[ 0.246752] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp | |
[ 0.246752] MDS: Mitigation: Clear CPU buffers | |
[ 0.246752] SRBDS: Unknown: Dependent on hypervisor status | |
[ 0.246752] Freeing SMP alternatives memory: 40K | |
[ 0.246752] smpboot: CPU0: Intel Xeon E3-12xx v2 (Ivy Bridge, IBRS) (family: 0x6, model: 0x3a, stepping: 0x9) | |
[ 0.246752] Performance Events: unsupported p6 CPU model 58 no PMU driver, software events only. | |
[ 0.246833] rcu: Hierarchical SRCU implementation. | |
[ 0.248547] NMI watchdog: Perf NMI watchdog permanently disabled | |
[ 0.250053] smp: Bringing up secondary CPUs ... | |
[ 0.250758] smp: Brought up 1 node, 1 CPU | |
[ 0.251724] smpboot: Max logical packages: 1 | |
[ 0.252737] smpboot: Total of 1 processors activated (6599.74 BogoMIPS) | |
[ 0.254647] devtmpfs: initialized | |
[ 0.254839] x86/mm: Memory block size: 128MB | |
[ 0.256323] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns | |
[ 0.258503] futex hash table entries: 256 (order: 2, 16384 bytes, linear) | |
[ 0.258826] pinctrl core: initialized pinctrl subsystem | |
[ 0.260259] PM: RTC time: 18:29:20, date: 2022-11-12 | |
[ 0.261643] NET: Registered PF_NETLINK/PF_ROUTE protocol family | |
[ 0.263072] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations | |
[ 0.264817] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations | |
[ 0.266797] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations | |
[ 0.268602] audit: initializing netlink subsys (disabled) | |
[ 0.270062] thermal_sys: Registered thermal governor 'fair_share' | |
[ 0.270064] thermal_sys: Registered thermal governor 'bang_bang' | |
[ 0.270757] thermal_sys: Registered thermal governor 'step_wise' | |
[ 0.272104] thermal_sys: Registered thermal governor 'user_space' | |
[ 0.273451] thermal_sys: Registered thermal governor 'power_allocator' | |
[ 0.274759] audit: type=2000 audit(1668277760.751:1): state=initialized audit_enabled=0 res=1 | |
[ 0.278766] EISA bus registered | |
[ 0.279572] cpuidle: using governor ladder | |
[ 0.280584] cpuidle: using governor menu | |
[ 0.281577] ACPI: bus type PCI registered | |
[ 0.282574] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 | |
[ 0.283031] PCI: Using configuration type 1 for base access | |
[ 0.285687] Kprobes globally optimized | |
[ 0.286811] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages | |
[ 0.288333] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages | |
[ 0.291486] ACPI: Added _OSI(Module Device) | |
[ 0.292522] ACPI: Added _OSI(Processor Device) | |
[ 0.293572] ACPI: Added _OSI(3.0 _SCP Extensions) | |
[ 0.294686] ACPI: Added _OSI(Processor Aggregator Device) | |
[ 0.294833] ACPI: Added _OSI(Linux-Dell-Video) | |
[ 0.296178] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) | |
[ 0.297728] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) | |
[ 0.299776] ACPI: 1 ACPI AML tables successfully acquired and loaded | |
[ 0.302512] ACPI: Interpreter enabled | |
[ 0.302781] ACPI: PM: (supports S0 S3 S4 S5) | |
[ 0.303800] ACPI: Using IOAPIC for interrupt routing | |
[ 0.304973] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug | |
[ 0.306760] PCI: Using E820 reservations for host bridge windows | |
[ 0.308238] ACPI: Enabled 2 GPEs in block 00 to 0F | |
[ 0.312481] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) | |
[ 0.313893] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3] | |
[ 0.314768] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. | |
[ 0.317742] acpiphp: Slot [3] registered | |
[ 0.318736] acpiphp: Slot [4] registered | |
[ 0.318784] acpiphp: Slot [5] registered | |
[ 0.319765] acpiphp: Slot [6] registered | |
[ 0.320756] acpiphp: Slot [7] registered | |
[ 0.321727] acpiphp: Slot [8] registered | |
[ 0.322713] acpiphp: Slot [9] registered | |
[ 0.322780] acpiphp: Slot [10] registered | |
[ 0.324226] acpiphp: Slot [11] registered | |
[ 0.325575] acpiphp: Slot [12] registered | |
[ 0.326572] acpiphp: Slot [13] registered | |
[ 0.326780] acpiphp: Slot [14] registered | |
[ 0.327780] acpiphp: Slot [15] registered | |
[ 0.328791] acpiphp: Slot [16] registered | |
[ 0.329779] acpiphp: Slot [17] registered | |
[ 0.330769] acpiphp: Slot [18] registered | |
[ 0.331758] acpiphp: Slot [19] registered | |
[ 0.332761] acpiphp: Slot [20] registered | |
[ 0.333754] acpiphp: Slot [21] registered | |
[ 0.334745] acpiphp: Slot [22] registered | |
[ 0.334779] acpiphp: Slot [23] registered | |
[ 0.335783] acpiphp: Slot [24] registered | |
[ 0.336781] acpiphp: Slot [25] registered | |
[ 0.337783] acpiphp: Slot [26] registered | |
[ 0.338769] acpiphp: Slot [27] registered | |
[ 0.339767] acpiphp: Slot [28] registered | |
[ 0.340756] acpiphp: Slot [29] registered | |
[ 0.341738] acpiphp: Slot [30] registered | |
[ 0.342718] acpiphp: Slot [31] registered | |
[ 0.342772] PCI host bridge to bus 0000:00 | |
[ 0.343755] pci_bus 0000:00: root bus resource [bus 00-ff] | |
[ 0.345002] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] | |
[ 0.346578] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] | |
[ 0.346757] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] | |
[ 0.348512] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] | |
[ 0.350231] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] | |
[ 0.350896] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 | |
[ 0.353121] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 | |
[ 0.355245] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 | |
[ 0.359315] pci 0000:00:01.1: reg 0x20: [io 0xc120-0xc12f] | |
[ 0.361912] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] | |
[ 0.362757] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] | |
[ 0.364213] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] | |
[ 0.365790] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] | |
[ 0.367023] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 | |
[ 0.370431] pci 0000:00:01.2: reg 0x20: [io 0xc0c0-0xc0df] | |
[ 0.371809] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 | |
[ 0.373788] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI | |
[ 0.374773] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB | |
[ 0.377362] pci 0000:00:02.0: [1af4:1050] type 00 class 0x030000 | |
[ 0.380427] pci 0000:00:02.0: reg 0x10: [mem 0xfe000000-0xfe7fffff pref] | |
[ 0.384802] pci 0000:00:02.0: reg 0x18: [mem 0xfe800000-0xfe803fff 64bit pref] | |
[ 0.387741] pci 0000:00:02.0: reg 0x20: [mem 0xfeb90000-0xfeb90fff] | |
[ 0.393684] pci 0000:00:02.0: reg 0x30: [mem 0xfeb80000-0xfeb8ffff pref] | |
[ 0.395142] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] | |
[ 0.400502] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 | |
[ 0.402757] pci 0000:00:03.0: reg 0x10: [io 0xc080-0xc0bf] | |
[ 0.404986] pci 0000:00:03.0: reg 0x14: [mem 0xfeb91000-0xfeb91fff] | |
[ 0.411184] pci 0000:00:03.0: reg 0x20: [mem 0xfe804000-0xfe807fff 64bit pref] | |
[ 0.413991] pci 0000:00:03.0: reg 0x30: [mem 0xfeb00000-0xfeb7ffff pref] | |
[ 0.416000] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000 | |
[ 0.418494] pci 0000:00:04.0: reg 0x10: [io 0xc000-0xc07f] | |
[ 0.420057] pci 0000:00:04.0: reg 0x14: [mem 0xfeb92000-0xfeb92fff] | |
[ 0.424301] pci 0000:00:04.0: reg 0x20: [mem 0xfe808000-0xfe80bfff 64bit pref] | |
[ 0.428790] pci 0000:00:05.0: [1af4:1002] type 00 class 0x00ff00 | |
[ 0.431447] pci 0000:00:05.0: reg 0x10: [io 0xc0e0-0xc0ff] | |
[ 0.435107] pci 0000:00:05.0: reg 0x20: [mem 0xfe80c000-0xfe80ffff 64bit pref] | |
[ 0.438556] pci 0000:00:06.0: [1af4:1005] type 00 class 0x00ff00 | |
[ 0.439986] pci 0000:00:06.0: reg 0x10: [io 0xc100-0xc11f] | |
[ 0.443755] pci 0000:00:06.0: reg 0x20: [mem 0xfe810000-0xfe813fff 64bit pref] | |
[ 0.454713] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 | |
[ 0.454910] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 | |
[ 0.456415] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 | |
[ 0.457919] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 | |
[ 0.458839] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 | |
[ 0.460875] iommu: Default domain type: Translated | |
[ 0.462040] iommu: DMA domain TLB invalidation policy: lazy mode | |
[ 0.463138] SCSI subsystem initialized | |
[ 0.464287] pci 0000:00:02.0: vgaarb: setting as boot VGA device | |
[ 0.465666] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none | |
[ 0.466757] pci 0000:00:02.0: vgaarb: bridge control possible | |
[ 0.468079] vgaarb: loaded | |
[ 0.468861] ACPI: bus type USB registered | |
[ 0.469866] usbcore: registered new interface driver usbfs | |
[ 0.470782] usbcore: registered new interface driver hub | |
[ 0.472019] usbcore: registered new device driver usb | |
[ 0.473247] pps_core: LinuxPPS API ver. 1 registered | |
[ 0.474400] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> | |
[ 0.474762] PTP clock support registered | |
[ 0.475795] EDAC MC: Ver: 3.0.0 | |
[ 0.477316] NetLabel: Initializing | |
[ 0.478180] NetLabel: domain hash size = 128 | |
[ 0.478756] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO | |
[ 0.480071] NetLabel: unlabeled traffic allowed by default | |
[ 0.481454] PCI: Using ACPI for IRQ routing | |
[ 0.482858] clocksource: Switched to clocksource kvm-clock | |
[ 0.502005] VFS: Disk quotas dquot_6.6.0 | |
[ 0.503013] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) | |
[ 0.504913] AppArmor: AppArmor Filesystem Enabled | |
[ 0.506181] pnp: PnP ACPI init | |
[ 0.511807] pnp: PnP ACPI: found 5 devices | |
[ 0.519085] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns | |
[ 0.521151] NET: Registered PF_INET protocol family | |
[ 0.522493] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) | |
[ 0.527778] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) | |
[ 0.529883] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) | |
[ 0.531757] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) | |
[ 0.533756] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) | |
[ 0.535465] TCP: Hash tables configured (established 16384 bind 16384) | |
[ 0.537096] MPTCP token hash table entries: 2048 (order: 3, 49152 bytes, linear) | |
[ 0.538842] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) | |
[ 0.540362] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) | |
[ 0.542003] NET: Registered PF_UNIX/PF_LOCAL protocol family | |
[ 0.543317] NET: Registered PF_XDP protocol family | |
[ 0.544453] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] | |
[ 0.545858] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] | |
[ 0.547241] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] | |
[ 0.548761] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] | |
[ 0.550300] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] | |
[ 0.551925] pci 0000:00:01.0: PIIX3: Enabling Passive Release | |
[ 0.553243] pci 0000:00:00.0: Limiting direct PCI/PCI transfers | |
[ 0.554611] pci 0000:00:01.0: Activating ISA DMA hang workarounds | |
[ 0.578117] ACPI: \_SB_.LNKD: Enabled at IRQ 11 | |
[ 0.601319] pci 0000:00:01.2: quirk_usb_early_handoff+0x0/0x160 took 44239 usecs | |
[ 0.603106] PCI: CLS 0 bytes, default 64 | |
[ 0.604144] Trying to unpack rootfs image as initramfs... | |
[ 0.610859] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f90d358868, max_idle_ns: 440795240741 ns | |
[ 0.615113] Initialise system trusted keyrings | |
[ 0.616204] Key type blacklist registered | |
[ 0.642814] workingset: timestamp_bits=36 max_order=19 bucket_order=0 | |
[ 0.645726] zbud: loaded | |
[ 0.646721] squashfs: version 4.0 (2009/01/31) Phillip Lougher | |
[ 0.650951] fuse: init (API version 7.34) | |
[ 0.652126] integrity: Platform Keyring initialized | |
[ 0.670820] Key type asymmetric registered | |
[ 0.671823] Asymmetric key parser 'x509' registered | |
[ 0.672968] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243) | |
[ 0.678855] io scheduler mq-deadline registered | |
[ 0.680128] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 | |
[ 0.681821] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 | |
[ 0.687027] ACPI: button: Power Button [PWRF] | |
[ 0.734629] ACPI: \_SB_.LNKB: Enabled at IRQ 10 | |
[ 0.792589] ACPI: \_SB_.LNKC: Enabled at IRQ 11 | |
[ 0.885467] ACPI: \_SB_.LNKA: Enabled at IRQ 10 | |
[ 0.946781] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled | |
[ 0.999025] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A | |
[ 1.004463] Linux agpgart interface v0.103 | |
[ 1.012813] loop: module loaded | |
[ 1.019015] scsi host0: ata_piix | |
[ 1.022975] scsi host1: ata_piix | |
[ 1.023832] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc120 irq 14 | |
[ 1.025372] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc128 irq 15 | |
[ 1.027730] tun: Universal TUN/TAP device driver, 1.6 | |
[ 1.030901] PPP generic driver version 2.4.2 | |
[ 1.038976] VFIO - User Level meta-driver version: 0.3 | |
[ 1.040263] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver | |
[ 1.041744] ehci-pci: EHCI PCI platform driver | |
[ 1.042825] ehci-platform: EHCI generic platform driver | |
[ 1.044029] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver | |
[ 1.045450] ohci-pci: OHCI PCI platform driver | |
[ 1.046512] ohci-platform: OHCI generic platform driver | |
[ 1.057635] Freeing initrd memory: 30832K | |
[ 1.058712] uhci_hcd: USB Universal Host Controller Interface driver | |
[ 1.082508] uhci_hcd 0000:00:01.2: UHCI Host Controller | |
[ 1.083728] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 | |
[ 1.085444] uhci_hcd 0000:00:01.2: detected 2 ports | |
[ 1.086712] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c0c0 | |
[ 1.088143] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 | |
[ 1.090155] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 | |
[ 1.091851] usb usb1: Product: UHCI Host Controller | |
[ 1.093001] usb usb1: Manufacturer: Linux 5.15.0-52-generic uhci_hcd | |
[ 1.094457] usb usb1: SerialNumber: 0000:00:01.2 | |
[ 1.095704] hub 1-0:1.0: USB hub found | |
[ 1.096671] hub 1-0:1.0: 2 ports detected | |
[ 1.097952] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 | |
[ 1.100661] serio: i8042 KBD port at 0x60,0x64 irq 1 | |
[ 1.101848] serio: i8042 AUX port at 0x60,0x64 irq 12 | |
[ 1.103157] mousedev: PS/2 mouse device common for all mice | |
[ 1.104782] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 | |
[ 1.107066] rtc_cmos 00:00: RTC can wake from S4 | |
[ 1.108602] rtc_cmos 00:00: registered as rtc0 | |
[ 1.109765] rtc_cmos 00:00: setting system clock to 2022-11-12T18:29:21 UTC (1668277761) | |
[ 1.111714] rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram | |
[ 1.113222] i2c_dev: i2c /dev entries driver | |
[ 1.114307] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. | |
[ 1.117149] device-mapper: uevent: version 1.0.3 | |
[ 1.118367] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: [email protected] | |
[ 1.120345] platform eisa.0: Probing EISA bus 0 | |
[ 1.121448] platform eisa.0: EISA: Cannot allocate resource for mainboard | |
[ 1.122985] platform eisa.0: Cannot allocate resource for EISA slot 1 | |
[ 1.124436] platform eisa.0: Cannot allocate resource for EISA slot 2 | |
[ 1.125960] platform eisa.0: Cannot allocate resource for EISA slot 3 | |
[ 1.127445] platform eisa.0: Cannot allocate resource for EISA slot 4 | |
[ 1.128908] platform eisa.0: Cannot allocate resource for EISA slot 5 | |
[ 1.130381] platform eisa.0: Cannot allocate resource for EISA slot 6 | |
[ 1.131837] platform eisa.0: Cannot allocate resource for EISA slot 7 | |
[ 1.133310] platform eisa.0: Cannot allocate resource for EISA slot 8 | |
[ 1.134787] platform eisa.0: EISA: Detected 0 cards | |
[ 1.135939] intel_pstate: CPU model not supported | |
[ 1.137072] ledtrig-cpu: registered to indicate activity on CPUs | |
[ 1.138546] drop_monitor: Initializing network drop monitor service | |
[ 1.140151] NET: Registered PF_INET6 protocol family | |
[ 1.148401] Segment Routing with IPv6 | |
[ 1.149356] In-situ OAM (IOAM) with IPv6 | |
[ 1.150357] NET: Registered PF_PACKET protocol family | |
[ 1.151661] Key type dns_resolver registered | |
[ 1.152867] IPI shorthand broadcast: enabled | |
[ 1.153953] sched_clock: Marking stable (971872856, 179705974)->(1259648333, -108069503) | |
[ 1.155939] registered taskstats version 1 | |
[ 1.156979] Loading compiled-in X.509 certificates | |
[ 1.158883] Loaded X.509 cert 'Build time autogenerated kernel key: f4250c069446d374e20697dfdb8caf1b5de3eae8' | |
[ 1.161738] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' | |
[ 1.164606] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' | |
[ 1.167047] blacklist: Loading compiled-in revocation X.509 certificates | |
[ 1.168610] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' | |
[ 1.171013] zswap: loaded using pool lzo/zbud | |
[ 1.172193] Key type ._fscrypt registered | |
[ 1.173217] Key type .fscrypt registered | |
[ 1.174248] Key type fscrypt-provisioning registered | |
[ 1.178297] Key type encrypted registered | |
[ 1.179325] AppArmor: AppArmor sha1 policy hashing enabled | |
[ 1.180645] ima: No TPM chip found, activating TPM-bypass! | |
[ 1.181947] Loading compiled-in module X.509 certificates | |
[ 1.183803] Loaded X.509 cert 'Build time autogenerated kernel key: f4250c069446d374e20697dfdb8caf1b5de3eae8' | |
[ 1.186373] ima: Allocated hash algorithm: sha1 | |
[ 1.187870] ima: No architecture policies found | |
[ 1.188969] evm: Initialising EVM extended attributes: | |
[ 1.190241] evm: security.selinux | |
[ 1.191121] evm: security.SMACK64 | |
[ 1.191967] evm: security.SMACK64EXEC | |
[ 1.192932] evm: security.SMACK64TRANSMUTE | |
[ 1.193928] evm: security.SMACK64MMAP | |
[ 1.194843] evm: security.apparmor | |
[ 1.195685] evm: security.ima | |
[ 1.196436] evm: security.capability | |
[ 1.197325] evm: HMAC attrs: 0x1 | |
[ 1.198452] PM: Magic number: 14:767:493 | |
[ 1.199933] RAS: Correctable Errors collector initialized. | |
[ 1.203255] Freeing unused decrypted memory: 2036K | |
[ 1.205834] Freeing unused kernel image (initmem) memory: 3228K | |
[ 1.210801] Write protecting the kernel read-only data: 30720k | |
[ 1.213746] Freeing unused kernel image (text/rodata gap) memory: 2036K | |
[ 1.215690] Freeing unused kernel image (rodata/data gap) memory: 1476K | |
[ 1.259464] x86/mm: Checked W+X mappings: passed, no W+X pages found. | |
[ 1.260953] x86/mm: Checking user space page tables | |
[ 1.302678] x86/mm: Checked W+X mappings: passed, no W+X pages found. | |
[ 1.304289] Run /init as init process | |
Loading, please wait... | |
Starting version 249.11-0ubuntu3.6 | |
[ 1.430937] usb 1-1: new full-speed USB device number 2 using uhci_hcd | |
[ 1.482692] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) | |
[ 1.489257] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 | |
[ 1.491497] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 | |
[ 1.509604] GPT:Primary header thinks Alt. header is not at the end of the disk. | |
[ 1.511368] GPT:4612095 != 41943039 | |
[ 1.512238] GPT:Alternate GPT header not at the end of the disk. | |
[ 1.513623] GPT:4612095 != 41943039 | |
[ 1.514522] GPT: Use GNU Parted to correct GPT errors. | |
[ 1.515735] vda: vda1 vda14 vda15 | |
[ 1.516753] cryptd: max_cpu_qlen set to 1000 | |
[ 1.544735] AVX version of gcm_enc/dec engaged. | |
[ 1.545913] AES CTR mode by8 optimization enabled | |
[ 1.575206] FDC 0 is a S82078B | |
[ 1.589381] virtio_net virtio1 ens3: renamed from eth0 | |
[ 1.593330] [drm] pci: virtio-vga detected at 0000:00:02.0 | |
[ 1.594692] virtio-pci 0000:00:02.0: vgaarb: deactivate vga console | |
[ 1.612026] Console: switching to colour dummy device 80x25 | |
[ 1.614080] [drm] features: -virgl +edid -resource_blob -host_visible | |
[ 1.616165] [drm] number of scanouts: 1 | |
[ 1.616953] [drm] number of cap sets: 0 | |
[ 1.618720] [drm] Initialized virtio_gpu 0.1.0 0 for virtio0 on minor 0 | |
[ 1.623726] virtio_gpu virtio0: [drm] drm_plane_enable_fb_damage_clips() not called | |
[ 1.623831] Console: switching to colour frame buffer device 128x48 | |
[ 1.631832] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00 | |
[ 1.631836] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10 | |
[ 1.631837] usb 1-1: Product: QEMU USB Tablet | |
[ 1.631844] usb 1-1: Manufacturer: QEMU | |
[ 1.631845] usb 1-1: SerialNumber: 28754-0000:00:01.2-1 | |
[ 1.644130] hid: raw HID events driver (C) Jiri Kosina | |
[ 1.653114] virtio_gpu virtio0: [drm] fb0: virtio_gpudrmfb frame buffer device | |
[ 1.655209] usbcore: registered new interface driver usbhid | |
[ 1.656170] usbhid: USB HID core driver | |
[ 1.659652] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 | |
[ 1.665157] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0 | |
Begin: Loading essential drivers ... [ 1.922758] raid6: sse2x4 gen() 15825 MB/s | |
[ 1.990757] raid6: sse2x4 xor() 8912 MB/s | |
[ 2.058756] raid6: sse2x2 gen() 10239 MB/s | |
[ 2.126757] raid6: sse2x2 xor() 9090 MB/s | |
[ 2.194758] raid6: sse2x1 gen() 10249 MB/s | |
[ 2.262761] raid6: sse2x1 xor() 8203 MB/s | |
[ 2.263513] raid6: using algorithm sse2x4 gen() 15825 MB/s | |
[ 2.264432] raid6: .... xor() 8912 MB/s, rmw enabled | |
[ 2.265277] raid6: using ssse3x2 recovery algorithm | |
[ 2.267864] xor: automatically using best checksumming function avx | |
[ 2.271260] async_tx: api initialized (async) | |
done. | |
Begin: Running /scripts/init-premount ... done. | |
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. | |
Begin: Running /scripts/local-premount ... [ 2.340596] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes | |
Scanning for Btrfs filesystems | |
done. | |
Warning: fsck not present, so skipping root file system | |
[ 2.454669] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. | |
done. | |
Begin: Running /scripts/local-bottom ... done. | |
Begin: Running /scripts/init-bottom ... done. | |
[ 2.893854] systemd[1]: Inserted module 'autofs4' | |
[ 2.951994] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) | |
[ 2.966445] systemd[1]: Detected virtualization kvm. | |
[ 2.968717] systemd[1]: Detected architecture x86-64. | |
Welcome to [1mUbuntu 22.04.1 LTS[0m! | |
[ 2.974995] systemd[1]: Hostname set to <ubuntu>. | |
[ 2.988684] systemd[1]: Initializing machine ID from VM UUID. | |
[ 2.991721] systemd[1]: Installed transient /etc/machine-id file. | |
[ 3.648480] systemd[1]: Queued start job for default target Graphical Interface. | |
[ 3.653294] systemd[1]: Created slice Slice /system/modprobe. | |
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/modprobe[0m. | |
[ 3.657337] systemd[1]: Created slice Slice /system/serial-getty. | |
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/serial-getty[0m. | |
[ 3.661374] systemd[1]: Created slice Slice /system/systemd-fsck. | |
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/systemd-fsck[0m. | |
[ 3.665243] systemd[1]: Created slice User and Session Slice. | |
[[0;32m OK [0m] Created slice [0;1;39mUser and Session Slice[0m. | |
[ 3.668860] systemd[1]: Started Forward Password Requests to Wall Directory Watch. | |
[[0;32m OK [0m] Started [0;1;39mForward Password R���uests to Wall Directory Watch[0m. | |
[ 3.673094] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. | |
[[0;32m OK [0m] Set up automount [0;1;39mArbitrary���s File System Automount Point[0m. | |
[ 3.677475] systemd[1]: Reached target Slice Units. | |
[[0;32m OK [0m] Reached target [0;1;39mSlice Units[0m. | |
[ 3.680737] systemd[1]: Reached target Swaps. | |
[[0;32m OK [0m] Reached target [0;1;39mSwaps[0m. | |
[ 3.683951] systemd[1]: Reached target Local Verity Protected Volumes. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal Verity Protected Volumes[0m. | |
[ 3.688445] systemd[1]: Listening on Device-mapper event daemon FIFOs. | |
[[0;32m OK [0m] Listening on [0;1;39mDevice-mapper event daemon FIFOs[0m. | |
[ 3.692408] systemd[1]: Listening on LVM2 poll daemon socket. | |
[[0;32m OK [0m] Listening on [0;1;39mLVM2 poll daemon socket[0m. | |
[ 3.696107] systemd[1]: Listening on multipathd control socket. | |
[[0;32m OK [0m] Listening on [0;1;39mmultipathd control socket[0m. | |
[ 3.699696] systemd[1]: Listening on Syslog Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mSyslog Socket[0m. | |
[ 3.703102] systemd[1]: Listening on fsck to fsckd communication Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mfsck to fsckd communication Socket[0m. | |
[ 3.706872] systemd[1]: Listening on initctl Compatibility Named Pipe. | |
[[0;32m OK [0m] Listening on [0;1;39minitctl Compatibility Named Pipe[0m. | |
[ 3.710889] systemd[1]: Listening on Journal Audit Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Audit Socket[0m. | |
[ 3.714333] systemd[1]: Listening on Journal Socket (/dev/log). | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket (/dev/log)[0m. | |
[ 3.718046] systemd[1]: Listening on Journal Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mJournal Socket[0m. | |
[ 3.721694] systemd[1]: Listening on Network Service Netlink Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mNetwork Service Netlink Socket[0m. | |
[ 3.725538] systemd[1]: Listening on udev Control Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mudev Control Socket[0m. | |
[ 3.729063] systemd[1]: Listening on udev Kernel Socket. | |
[[0;32m OK [0m] Listening on [0;1;39mudev Kernel Socket[0m. | |
[ 3.733269] systemd[1]: Mounting Huge Pages File System... | |
Mounting [0;1;39mHuge Pages File System[0m... | |
[ 3.737466] systemd[1]: Mounting POSIX Message Queue File System... | |
Mounting [0;1;39mPOSIX Message Queue File System[0m... | |
[ 3.744933] systemd[1]: Mounting Kernel Debug File System... | |
Mounting [0;1;39mKernel Debug File System[0m... | |
[ 3.749436] systemd[1]: Mounting Kernel Trace File System... | |
Mounting [0;1;39mKernel Trace File System[0m... | |
[ 3.758266] systemd[1]: Starting Journal Service... | |
Starting [0;1;39mJournal Service[0m... | |
[ 3.767921] systemd[1]: Starting Set the console keyboard layout... | |
Starting [0;1;39mSet the console keyboard layout[0m... | |
[ 3.776018] systemd[1]: Starting Create List of Static Device Nodes... | |
Starting [0;1;39mCreate List of Static Device Nodes[0m... | |
[ 3.786317] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... | |
Starting [0;1;39mMonitoring of LVM���meventd or progress polling[0m... | |
[ 3.800059] systemd[1]: Condition check resulted in LXD - agent being skipped. | |
[ 3.822977] systemd[1]: Starting Load Kernel Module chromeos_pstore... | |
Starting [0;1;39mLoad Kernel Module chromeos_pstore[0m... | |
[ 3.833388] systemd[1]: Starting Load Kernel Module configfs... | |
Starting [0;1;39mLoad Kernel Module configfs[0m... | |
[ 3.846956] systemd[1]: Starting Load Kernel Module drm... | |
Starting [0;1;39mLoad Kernel Module drm[0m... | |
[ 3.858910] systemd[1]: Starting Load Kernel Module efi_pstore... | |
Starting [0;1;39mLoad Kernel Module efi_pstore[0m... | |
[ 3.871433] systemd[1]: Starting Load Kernel Module fuse... | |
Starting [0;1;39mLoad Kernel Module fuse[0m... | |
[ 3.886524] systemd[1]: Starting Load Kernel Module pstore_blk... | |
Starting [0;1;39mLoad Kernel Module pstore_blk[0m... | |
[ 3.897359] systemd[1]: Starting Load Kernel Module pstore_zone... | |
Starting [0;1;39mLoad Kernel Module pstore_zone[0m... | |
[ 3.907828] systemd[1]: Starting Load Kernel Module ramoops... | |
Starting [0;1;39mLoad Kernel Module ramoops[0m... | |
[ 3.916963] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped. | |
[ 3.920581] systemd[1]: Starting File System Check on Root Device... | |
Starting [0;1;39mFile System Check on Root Device[0m... | |
[ 3.936021] systemd[1]: Starting Load Kernel Modules... | |
Starting [0;1;39mLoad Kernel Modules[0m... | |
[ 3.945398] systemd[1]: Starting Coldplug All udev Devices... | |
Starting [0;1;39mColdplug All udev Devices[0m... | |
[ 3.961089] systemd[1]: Started Journal Service. | |
[[0;32m OK [0m] Started [0;1;39mJournal Service[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mHuge Pages File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mPOSIX Message Queue File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Debug File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Trace File System[0m. | |
[[0;32m OK [0m] Finished [0;1;39mSet the console keyboard layout[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate List of Static Device Nodes[0m. | |
[[0;32m OK [0m] Finished [0;1;39mMonitoring of LVM��� dmeventd or progress polling[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module chromeos_pstore[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module configfs[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module drm[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module efi_pstore[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module fuse[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module pstore_blk[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module pstore_zone[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Module ramoops[0m. | |
[[0;32m OK [0m] Finished [0;1;39mFile System Check on Root Device[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad Kernel Modules[0m. | |
Mounting [0;1;39mFUSE Control File System[0m... | |
Mounting [0;1;39mKernel Configuration File System[0m... | |
[[0;32m OK [0m] Started [0;1;39mFile System Check Daemon to report status[0m. | |
Starting [0;1;39mRemount Root and Kernel File Systems[0m... | |
Starting [0;1;39mApply Kernel Variables[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mFUSE Control File System[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mKernel Configuration File System[0m. | |
[[0;32m OK [0m] Finished [0;1;39mApply Kernel Variables[0m. | |
[[0;32m OK [0m] Finished [0;1;39mColdplug All udev Devices[0m. | |
[[0;32m OK [0m] Finished [0;1;39mRemount Root and Kernel File Systems[0m. | |
Starting [0;1;39mDevice-Mapper Multipath Device Controller[0m... | |
Starting [0;1;39mFlush Journal to Persistent Storage[0m... | |
Starting [0;1;39mLoad/Save Random Seed[0m... | |
Starting [0;1;39mCreate System Users[0m... | |
[[0;32m OK [0m] Finished [0;1;39mCreate System Users[0m. | |
Starting [0;1;39mCreate Static Device Nodes in /dev[0m... | |
[[0;32m OK [0m] Finished [0;1;39mLoad/Save Random Seed[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate Static Device Nodes in /dev[0m. | |
Starting [0;1;39mRule-based Manage���for Device Events and Files[0m... | |
[[0;32m OK [0m] Finished [0;1;39mFlush Journal to Persistent Storage[0m. | |
[[0;32m OK [0m] Started [0;1;39mDevice-Mapper Multipath Device Controller[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Local File Systems[0m. | |
Mounting [0;1;39mMount unit for core20, revision 1634[0m... | |
Mounting [0;1;39mMount unit for lxd, revision 23541[0m... | |
Mounting [0;1;39mMount unit for snapd, revision 17336[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for core20, revision 1634[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for lxd, revision 23541[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for snapd, revision 17336[0m. | |
[[0;32m OK [0m] Started [0;1;39mRule-based Manager for Device Events and Files[0m. | |
[[0;32m OK [0m] Started [0;1;39mDispatch Password ���ts to Console Directory Watch[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal Encrypted Volumes[0m. | |
[[0;32m OK [0m] Found device [0;1;39m/dev/ttyS0[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mLoad/Save RF ���itch Status /dev/rfkill Watch[0m. | |
[[0;32m OK [0m] Found device [0;1;39m/dev/disk/by-label/UEFI[0m. | |
Starting [0;1;39mFile System Check on /dev/disk/by-label/UEFI[0m... | |
[[0;32m OK [0m] Finished [0;1;39mFile System Check on /dev/disk/by-label/UEFI[0m. | |
Mounting [0;1;39m/boot/efi[0m... | |
[[0;32m OK [0m] Mounted [0;1;39m/boot/efi[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal File Systems[0m. | |
Starting [0;1;39mLoad AppArmor profiles[0m... | |
Starting [0;1;39mSet console font and keymap[0m... | |
Starting [0;1;39mCreate final runt���dir for shutdown pivot root[0m... | |
Starting [0;1;39mTell Plymouth To Write Out Runtime Data[0m... | |
Starting [0;1;39mCommit a transient machine-id on disk[0m... | |
Starting [0;1;39mCreate Volatile Files and Directories[0m... | |
Starting [0;1;39mUncomplicated firewall[0m... | |
[[0;32m OK [0m] Finished [0;1;39mSet console font and keymap[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate final runt���e dir for shutdown pivot root[0m. | |
[[0;32m OK [0m] Finished [0;1;39mTell Plymouth To Write Out Runtime Data[0m. | |
[[0;32m OK [0m] Finished [0;1;39mUncomplicated firewall[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCreate Volatile Files and Directories[0m. | |
Starting [0;1;39mNetwork Time Synchronization[0m... | |
Starting [0;1;39mRecord System Boot/Shutdown in UTMP[0m... | |
[[0;32m OK [0m] Finished [0;1;39mRecord System Boot/Shutdown in UTMP[0m. | |
[[0;32m OK [0m] Started [0;1;39mNetwork Time Synchronization[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSystem Time Set[0m. | |
[[0;32m OK [0m] Finished [0;1;39mCommit a transient machine-id on disk[0m. | |
[[0;32m OK [0m] Finished [0;1;39mLoad AppArmor profiles[0m. | |
Starting [0;1;39mLoad AppArmor pro���managed internally by snapd[0m... | |
Starting [0;1;39mInitial cloud-init job (pre-networking)[0m... | |
Mounting [0;1;39mArbitrary Executable File Formats File System[0m... | |
[[0;32m OK [0m] Mounted [0;1;39mArbitrary Executable File Formats File System[0m. | |
[ 7.488337] cloud-init[507]: Cloud-init v. 22.3.4-0ubuntu1~22.04.1 running 'init-local' at Sat, 12 Nov 2022 18:29:27 +0000. Up 7.42 seconds. | |
[[0;32m OK [0m] Finished [0;1;39mLoad AppArmor pro���s managed internally by snapd[0m. | |
[ 308.927698] cloud-init[507]: 2022-11-12 18:34:29,496 - util.py[WARNING]: Cannot parse empty dhcp lease file /var/tmp/cloud-init/cloud-init-dhcp-gyaf2eo8/dhcp.leases | |
[[0;32m OK [0m] Finished [0;1;39mInitial cloud-init job (pre-networking)[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Network[0m. | |
Starting [0;1;39mNetwork Configuration[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Configuration[0m. | |
Starting [0;1;39mWait for Network to be Configured[0m... | |
Starting [0;1;39mNetwork Name Resolution[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Name Resolution[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mNetwork[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mHost and Network Name Lookups[0m. | |
[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (2s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (3s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���k to be Configured (3s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���k to be Configured (4s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���k to be Configured (4s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���k to be Configured (5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���k to be Configured (5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (6s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (6s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (7s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (7s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (8s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (8s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (9s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���k to be Configured (9s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (10s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (10s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (11s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (11s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (13s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (13s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (14s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (14s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (15s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (15s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (16s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (16s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (17s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (17s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (18s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (18s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (20s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (20s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (21s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (21s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (22s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (22s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (23s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (23s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (24s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (24s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (25s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (25s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (27s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (27s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (28s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (28s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (29s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (29s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (30s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (30s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (31s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (31s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (32s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (32s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (34s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (34s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (35s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (35s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (36s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (36s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (37s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (37s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (38s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (38s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (39s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (39s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (41s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (41s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (42s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (42s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (43s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (43s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (44s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (44s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (45s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (45s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (46s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (46s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (48s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (48s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (49s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (49s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (50s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (50s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (51s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (51s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (52s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (52s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (53s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for��� to be Configured (53s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for��� to be Configured (54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (55s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (55s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (56s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (56s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (57s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (57s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (58s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (58s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for��� to be Configured (59s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for��� to be Configured (59s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���to be Configured (1min / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���to be Configured (1min / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 1s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 1s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 2s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 2s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 3s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 3s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 4s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 4s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 5s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 6s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 6s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 7s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���be Configured (1min 7s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���be Configured (1min 8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���be Configured (1min 8s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 9s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���be Configured (1min 9s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 10s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 10s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 11s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 11s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 12s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 13s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 13s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 14s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 14s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 15s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 16s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 16s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 17s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 17s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 18s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 18s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 19s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 20s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 20s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 21s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 21s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 22s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 23s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 23s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 24s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 24s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 25s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 25s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 26s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 27s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 27s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 28s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 28s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 29s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 30s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 30s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 31s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 31s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 32s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 32s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 33s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 34s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 34s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 35s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 35s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 36s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 37s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 37s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 38s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 38s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 39s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 39s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 40s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 41s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 41s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 42s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 42s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 43s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 44s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 44s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 45s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 45s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 46s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 46s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 47s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 48s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 48s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 49s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 49s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 50s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 51s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 51s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 52s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 52s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 53s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 53s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 54s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 55s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 55s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 56s / no limit) | |
M[K[ [0;31m*[0m] A start job is running for Wait for���e Configured (1min 56s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m] A start job is running for Wait for���e Configured (1min 57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m*[0m] A start job is running for Wait for���e Configured (1min 57s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 58s / no limit) | |
M[K[ [0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 58s / no limit) | |
M[K[[0;31m*[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 59s / no limit) | |
M[K[[0;1;31m*[0m[0;31m* [0m] A start job is running for Wait for���e Configured (1min 59s / no limit) | |
M[K[[0m[0;31m* [0m] A start job is running for Wait for���to be Configured (2min / no limit) | |
M[K[[0;1;31mFAILED[0m] Failed to start [0;1;39mWait for Network to be Configured[0m. | |
[KSee 'systemctl status systemd-networkd-wait-online.service' for details. | |
Starting [0;1;39mInitial cloud-ini��� (metadata service crawler)[0m... | |
[ 429.862092] cloud-init[551]: Cloud-init v. 22.3.4-0ubuntu1~22.04.1 running 'init' at Sat, 12 Nov 2022 18:36:30 +0000. Up 429.83 seconds. | |
[ 429.879176] cloud-init[551]: ci-info: ++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++ | |
[ 429.881818] cloud-init[551]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 429.891287] cloud-init[551]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address | | |
[ 429.892894] cloud-init[551]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 429.895122] cloud-init[551]: ci-info: | ens3 | True | fe80::f816:3eff:fe26:91f6/64 | . | link | fa:16:3e:26:91:f6 | | |
[ 429.898787] cloud-init[551]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . | | |
[ 429.903163] cloud-init[551]: ci-info: | lo | True | ::1/128 | . | host | . | | |
[ 429.907146] cloud-init[551]: ci-info: +--------+------+------------------------------+-----------+-------+-------------------+ | |
[ 429.908709] cloud-init[551]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++ | |
[ 429.911147] cloud-init[551]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 429.915129] cloud-init[551]: ci-info: | Route | Destination | Gateway | Interface | Flags | | |
[ 429.916340] cloud-init[551]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 429.919121] cloud-init[551]: ci-info: | 1 | fe80::/64 | :: | ens3 | U | | |
[ 429.920322] cloud-init[551]: ci-info: | 3 | local | :: | ens3 | U | | |
[ 429.923131] cloud-init[551]: ci-info: | 4 | multicast | :: | ens3 | U | | |
[ 429.927146] cloud-init[551]: ci-info: +-------+-------------+---------+-----------+-------+ | |
[ 429.928367] cloud-init[551]: 2022-11-12 18:36:30,472 - url_helper.py[ERROR]: Timed out, no response from urls: ['http://169.254.169.254/openstack'] | |
[ 429.931133] cloud-init[551]: 2022-11-12 18:36:30,472 - util.py[WARNING]: No active metadata service found | |
Stopping [0;1;39mNetwork Configuration[0m... | |
[[0;32m OK [0m] Stopped [0;1;39mNetwork Configuration[0m. | |
Starting [0;1;39mNetwork Configuration[0m... | |
[[0;32m OK [0m] Started [0;1;39mNetwork Configuration[0m. | |
[ 430.669014] cloud-init[551]: 2022-11-12 18:36:31,236 - activators.py[WARNING]: Running ['netplan', 'apply'] resulted in stderr output: Failed to connect system bus: No such file or directory | |
[ 430.671427] cloud-init[551]: Falling back to a hard restart of systemd-networkd.service | |
[ 434.182515] cloud-init[551]: Generating public/private rsa key pair. | |
[ 434.183752] cloud-init[551]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key | |
[ 434.184974] cloud-init[551]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub | |
[ 434.191134] cloud-init[551]: The key fingerprint is: | |
[ 434.191966] cloud-init[551]: SHA256:lHOjNiJkSbHTVCtpLVnQW0sNGxOx6OKSnCs0QgHV3Ww root@ubuntu | |
[ 434.193174] cloud-init[551]: The key's randomart image is: | |
[ 434.194009] cloud-init[551]: +---[RSA 3072]----+ | |
[ 434.194765] cloud-init[551]: |o...ooo*o *= | | |
[ 434.199310] cloud-init[551]: | . ..=.=E+o=. | | |
[ 434.200075] cloud-init[551]: | . * B.B+=. | | |
[ 434.200831] cloud-init[551]: | . o o =.+.. | | |
[ 434.201577] cloud-init[551]: |. . o S | | |
[ 434.202318] cloud-init[551]: |. o. = + . | | |
[ 434.207227] cloud-init[551]: | o .= . | | |
[ 434.208045] cloud-init[551]: | . o | | |
[ 434.208789] cloud-init[551]: | .. | | |
[ 434.209528] cloud-init[551]: +----[SHA256]-----+ | |
[ 434.210296] cloud-init[551]: Generating public/private dsa key pair. | |
[ 434.215339] cloud-init[551]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key | |
[ 434.216558] cloud-init[551]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub | |
[ 434.217751] cloud-init[551]: The key fingerprint is: | |
[ 434.218561] cloud-init[551]: SHA256:yqqDObhM+XyxLr1KzvSTPcPwBA18c5Heq8Y6NMKJgOU root@ubuntu | |
[ 434.223292] cloud-init[551]: The key's randomart image is: | |
[ 434.224133] cloud-init[551]: +---[DSA 1024]----+ | |
[ 434.224875] cloud-init[551]: | . .o | | |
[ 434.227139] cloud-init[551]: | . o o o | | |
[ 434.227929] cloud-init[551]: |.o + + . | | |
[ 434.231120] cloud-init[551]: |..E . . . . | | |
[ 434.231913] cloud-init[551]: | . o o S . | | |
[ 434.232681] cloud-init[551]: | .. B = . | | |
[ 434.235143] cloud-init[551]: |.= o. # o . | | |
[ 434.235934] cloud-init[551]: |B O..B B + | | |
[ 434.239124] cloud-init[551]: |.+.O*+o.* | | |
[ 434.239924] cloud-init[551]: +----[SHA256]-----+ | |
[ 434.240668] cloud-init[551]: Generating public/private ecdsa key pair. | |
[ 434.243143] cloud-init[551]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key | |
[ 434.244395] cloud-init[551]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub | |
[ 434.247133] cloud-init[551]: The key fingerprint is: | |
[ 434.251143] cloud-init[551]: SHA256:j8kqz11cuQc9/n0fx42xei7iEMRDLBpC3rUx/ouM/BI root@ubuntu | |
[ 434.252355] cloud-init[551]: The key's randomart image is: | |
[ 434.253194] cloud-init[551]: +---[ECDSA 256]---+ | |
[ 434.255132] cloud-init[551]: | .. +.. | | |
[ 434.255911] cloud-init[551]: | ....o.*. | | |
[ 434.259152] cloud-init[551]: | ...oo.+ | | |
[ 434.259920] cloud-init[551]: | . o . o | | |
[ 434.260665] cloud-init[551]: | S + + | | |
[ 434.263151] cloud-init[551]: | .Eo o B . + *.| | |
[ 434.263931] cloud-init[551]: | o.o * + . =.+| | |
[ 434.267141] cloud-init[551]: | oo o o. .o..=| | |
[ 434.267921] cloud-init[551]: | += .....+. *| | |
[ 434.268682] cloud-init[551]: +----[SHA256]-----+ | |
[ 434.271385] cloud-init[551]: Generating public/private ed25519 key pair. | |
[ 434.272385] cloud-init[551]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key | |
[[0;32m OK [0m] Finished [0;1;39mInitial cloud-ini���ob (metadata service crawler)[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mCloud-config availability[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mNetwork is Online[0m. | |
[ 434.277950] cloud-init[551]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub | |
[[0;32m OK [0m] Reached target [0;1;39mSystem Initialization[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily apt download activities[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily apt upgrade and clean activities[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily dpkg database backup timer[0m. | |
[ 434.283801] cloud-init[551]: The key fingerprint is: | |
[ 434.284675] cloud-init[551]: SHA256:W3Szqj17dbIWmwfaSPTJmfYgg0PaQ6Z4Lx12Ht0MP7E root@ubuntu | |
[ 434.285835] cloud-init[551]: The key's randomart image is: | |
[ 434.286647] cloud-init[551]: +--[ED25519 256]--+ | |
[ 434.287603] cloud-init[551]: | | | |
[ 434.288322] cloud-init[551]: | | | |
[ 434.289037] cloud-init[551]: | . o | | |
[ 434.289752] cloud-init[551]: | .+..o.. | | |
[ 434.290512] cloud-init[551]: | .SB.o.+ Oo| | |
[[0;32m OK [0m] Started [0;1;39mPeriodic ext4 Onli���ata Check for All Filesystems[0m. | |
[[0;32m OK [0m] Started [0;1;39mDiscard unused blocks once a week[0m. | |
[[0;32m OK [0m] Started [0;1;39mRefresh fwupd metadata regularly[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily rotation of log files[0m. | |
[ 434.295521] cloud-init[551]: | . +oB.* #E=| | |
[ 434.296369] cloud-init[551]: | ..+.B X @.| | |
[ 434.297118] cloud-init[551]: | .o+ = * o| | |
[ 434.297842] cloud-init[551]: | ..o+ . . | | |
[ 434.298566] cloud-init[551]: +----[SHA256]-----+ | |
[[0;32m OK [0m] Started [0;1;39mDaily man-db regeneration[0m. | |
[[0;32m OK [0m] Started [0;1;39mMessage of the Day[0m. | |
[[0;32m OK [0m] Started [0;1;39mDaily Cleanup of Temporary Directories[0m. | |
[[0;32m OK [0m] Started [0;1;39mUbuntu Advantage Timer for running repeated jobs[0m. | |
[[0;32m OK [0m] Started [0;1;39mDownload data for ���ailed at package install time[0m. | |
[[0;32m OK [0m] Started [0;1;39mCheck to see wheth���w version of Ubuntu available[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mPath Units[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mTimer Units[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mcloud-init hotplug hook socket[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mD-Bus System Message Bus Socket[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mOpen-iSCSI iscsid Socket[0m. | |
Starting [0;1;39mSocket activation for snappy daemon[0m... | |
[[0;32m OK [0m] Listening on [0;1;39mUUID daemon activation socket[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Remote File Systems[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems[0m. | |
[[0;32m OK [0m] Finished [0;1;39mAvailability of block devices[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mSocket activation for snappy daemon[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mSocket Units[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mBasic System[0m. | |
Starting [0;1;39mLSB: automatic crash report generation[0m... | |
[[0;32m OK [0m] Started [0;1;39mRegular background program processing daemon[0m. | |
[[0;32m OK [0m] Started [0;1;39mD-Bus System Message Bus[0m. | |
[[0;32m OK [0m] Started [0;1;39mSave initial kernel messages after boot[0m. | |
Starting [0;1;39mRemove Stale Onli���t4 Metadata Check Snapshots[0m... | |
Starting [0;1;39mRecord successful boot for GRUB[0m... | |
[[0;32m OK [0m] Started [0;1;39mirqbalance daemon[0m. | |
Starting [0;1;39mDispatcher daemon for systemd-networkd[0m... | |
Starting [0;1;39mAuthorization Manager[0m... | |
Starting [0;1;39mPollinate to seed���udo random number generator[0m... | |
Starting [0;1;39mSystem Logging Service[0m... | |
[[0;32m OK [0m] Reached target [0;1;39mPreparation for Logins[0m. | |
Starting [0;1;39mSnap Daemon[0m... | |
Starting [0;1;39mUser Login Management[0m... | |
Starting [0;1;39mPermit User Sessions[0m... | |
Starting [0;1;39mDisk Manager[0m... | |
Starting [0;1;39mDownload data for���led at package install time[0m... | |
[[0;32m OK [0m] Finished [0;1;39mRemove Stale Onli���ext4 Metadata Check Snapshots[0m. | |
[[0;32m OK [0m] Finished [0;1;39mPermit User Sessions[0m. | |
[[0;32m OK [0m] Started [0;1;39mSystem Logging Service[0m. | |
[[0;32m OK [0m] Finished [0;1;39mRecord successful boot for GRUB[0m. | |
[[0;32m OK [0m] Started [0;1;39mAuthorization Manager[0m. | |
Starting [0;1;39mModem Manager[0m... | |
Starting [0;1;39mGRUB failed boot detection[0m... | |
Starting [0;1;39mHold until boot process finishes up[0m... | |
Starting [0;1;39mTerminate Plymouth Boot Screen[0m... | |
[[0;32m OK [0m] Started [0;1;39mLSB: automatic crash report generation[0m. | |
[[0;32m OK [0m] Finished [0;1;39mHold until boot process finishes up[0m. | |
[[0;32m OK [0m] Finished [0;1;39mTerminate Plymouth Boot Screen[0m. | |
[[0;32m OK [0m] Started [0;1;39mSerial Getty on ttyS0[0m. | |
Starting [0;1;39mSet console scheme[0m... | |
[[0;32m OK [0m] Finished [0;1;39mGRUB failed boot detection[0m. | |
[[0;32m OK [0m] Started [0;1;39mUser Login Management[0m. | |
[[0;32m OK [0m] Started [0;1;39mUnattended Upgrades Shutdown[0m. | |
[[0;32m OK [0m] Finished [0;1;39mSet console scheme[0m. | |
[[0;32m OK [0m] Created slice [0;1;39mSlice /system/getty[0m. | |
[[0;32m OK [0m] Started [0;1;39mGetty on tty1[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLogin Prompts[0m. | |
[[0;32m OK [0m] Started [0;1;39mModem Manager[0m. | |
[[0;32m OK [0m] Started [0;1;39mDisk Manager[0m. | |
[[0;32m OK [0m] Finished [0;1;39mPollinate to seed���seudo random number generator[0m. | |
Starting [0;1;39mOpenBSD Secure Shell server[0m... | |
[[0;32m OK [0m] Started [0;1;39mDispatcher daemon for systemd-networkd[0m. | |
[[0;32m OK [0m] Started [0;1;39mOpenBSD Secure Shell server[0m. | |
[[0;32m OK [0m] Finished [0;1;39mDownload data for���ailed at package install time[0m. | |
[[0;32m OK [0m] Started [0;1;39mSnap Daemon[0m. | |
Starting [0;1;39mWait until snapd is fully seeded[0m... | |
[[0;32m OK [0m] Started [0;1;39msnap.lxd.hook.inst���-40b0-b293-995ce07bd008.scope[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mSocket unix f���p application lxd.user-daemon[0m. | |
[[0;32m OK [0m] Listening on [0;1;39mSocket unix for snap application lxd.daemon[0m. | |
Starting [0;1;39mService for snap application lxd.activate[0m... | |
[[0;32m OK [0m] Finished [0;1;39mService for snap application lxd.activate[0m. | |
[[0;32m OK [0m] Started [0;1;39msnap.lxd.hook.conf���-4b71-b61d-232ceca46018.scope[0m. | |
Starting [0;1;39mTime & Date Service[0m... | |
[[0;32m OK [0m] Started [0;1;39mTime & Date Service[0m. | |
Ubuntu 22.04.1 LTS ubuntu ttyS0 | |
ubuntu login: [ 471.471153] cloud-init[1240]: Cloud-init v. 22.3.4-0ubuntu1~22.04.1 running 'modules:config' at Sat, 12 Nov 2022 18:37:11 +0000. Up 471.41 seconds. | |
[ 472.563626] cloud-init[1255]: Cloud-init v. 22.3.4-0ubuntu1~22.04.1 running 'modules:final' at Sat, 12 Nov 2022 18:37:13 +0000. Up 472.51 seconds. | |
ci-info: no authorized SSH keys fingerprints found for user ubuntu. | |
<14>Nov 12 18:37:13 cloud-init: ############################################################# | |
<14>Nov 12 18:37:13 cloud-init: -----BEGIN SSH HOST KEY FINGERPRINTS----- | |
<14>Nov 12 18:37:13 cloud-init: 1024 SHA256:yqqDObhM+XyxLr1KzvSTPcPwBA18c5Heq8Y6NMKJgOU root@ubuntu (DSA) | |
<14>Nov 12 18:37:13 cloud-init: 256 SHA256:j8kqz11cuQc9/n0fx42xei7iEMRDLBpC3rUx/ouM/BI root@ubuntu (ECDSA) | |
<14>Nov 12 18:37:13 cloud-init: 256 SHA256:W3Szqj17dbIWmwfaSPTJmfYgg0PaQ6Z4Lx12Ht0MP7E root@ubuntu (ED25519) | |
<14>Nov 12 18:37:13 cloud-init: 3072 SHA256:lHOjNiJkSbHTVCtpLVnQW0sNGxOx6OKSnCs0QgHV3Ww root@ubuntu (RSA) | |
<14>Nov 12 18:37:13 cloud-init: -----END SSH HOST KEY FINGERPRINTS----- | |
<14>Nov 12 18:37:13 cloud-init: ############################################################# | |
-----BEGIN SSH HOST KEY KEYS----- | |
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL6jZ0SN6rfkfxVO0nrV+wXwt0hATgdmvryr6QSL6YYaDe0J8yb/BtTsfV7ULPcZO9mfie3goZdqxnT87m6y9ng= root@ubuntu | |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINP/xSl31X0pwf0LU0nWI3ZnvWiONSfMc2ajs4MTy8hG root@ubuntu | |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCuNdwbYMK6320lDDUbRc9Z0m/62vJ/DM9sb8jz549EmvmvYY4j9AynMF+CZiwyX2gjSZhw//QkkkTl8E6VsnCr9Sgv+AOPsOHfGo7sS4EyaD5ZXM3ioJ2nswcB5QtlPs5mCCkhcOyU4s+7JbIqiUk8A+x9WhCZbiZvYVynMG7Odw+qCbqGnlKSD6G8DQy1QKoVcsU8QmWKyCacu2mvLTSAxF27fLibn3C9C0117/e4o0OaBrH86OR32UP4zEyoJjeDuzUUjOo7CN5GNPJrkcQfhJSlWooaAzrY4URuhxZgXvubf9t9ITcCin7l0OoWAhP/KoXU8rDE0AKtvX3ldZETlHjY4ClhHIGRsNjXNDgthHeKSnWkKc1TXdriIZQo0IM2+MHG7xigX84XuA3iC8aC4NgXzn82zsmXw5gA+UCMSwLgpv2huW4YPk54VX56QPG0Heq14NU0txFj9WHS5Lah1978jDXzlRicRMmCwT4PpqGKJgpGvV4G+27hQLQpe7c= root@ubuntu | |
-----END SSH HOST KEY KEYS----- | |
[ 472.742822] cloud-init[1255]: Cloud-init v. 22.3.4-0ubuntu1~22.04.1 finished at Sat, 12 Nov 2022 18:37:13 +0000. Datasource DataSourceNone. Up 472.73 seconds | |
[ 472.745474] cloud-init[1255]: 2022-11-12 18:37:13,315 - cc_final_message.py[WARNING]: Used fallback datasource |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nodes | |
tops_swan ansible_host=10.30.30.70 | |
super_civit ansible_host=10.30.30.71 | |
caring_molly ansible_host=10.30.30.72 | |
# These initial groups are the only groups required to be modified. The | |
# additional groups are for more control of the environment. | |
[control] | |
# These hostname must be resolvable from your deployment host | |
tops_swan | |
super_civit | |
caring_molly | |
# The above can also be specified as follows: | |
#control[01:03] ansible_user=kolla | |
# The network nodes are where your l3-agent and loadbalancers will run | |
# This can be the same as a host in the control group | |
[network] | |
tops_swan | |
super_civit | |
caring_molly | |
[compute] | |
tops_swan | |
super_civit | |
caring_molly | |
[monitoring] | |
tops_swan | |
super_civit | |
caring_molly | |
# When compute nodes and control nodes use different interfaces, | |
# you need to comment out "api_interface" and other interfaces from the globals.yml | |
# and specify like below: | |
#compute01 neutron_external_interface=eth0 api_interface=em1 storage_interface=em1 tunnel_interface=em1 | |
[storage] | |
tops_swan | |
super_civit | |
caring_molly | |
[deployment] | |
localhost ansible_connection=local | |
[baremetal:children] | |
control | |
network | |
compute | |
storage | |
monitoring | |
[tls-backend:children] | |
control | |
# You can explicitly specify which hosts run each project by updating the | |
# groups in the sections below. Common services are grouped together. | |
[common:children] | |
control | |
network | |
compute | |
storage | |
monitoring | |
[collectd:children] | |
compute | |
[grafana:children] | |
monitoring | |
[etcd:children] | |
control | |
[influxdb:children] | |
monitoring | |
[prometheus:children] | |
monitoring | |
[kafka:children] | |
control | |
[kibana:children] | |
control | |
[telegraf:children] | |
compute | |
control | |
monitoring | |
network | |
storage | |
[elasticsearch:children] | |
control | |
[hacluster:children] | |
control | |
[hacluster-remote:children] | |
compute | |
[loadbalancer:children] | |
network | |
[mariadb:children] | |
control | |
[rabbitmq:children] | |
control | |
[outward-rabbitmq:children] | |
control | |
[qdrouterd:children] | |
control | |
[monasca-agent:children] | |
compute | |
control | |
monitoring | |
network | |
storage | |
[monasca:children] | |
monitoring | |
[storm:children] | |
monitoring | |
[keystone:children] | |
control | |
[glance:children] | |
control | |
[nova:children] | |
control | |
[neutron:children] | |
network | |
[openvswitch:children] | |
network | |
compute | |
manila-share | |
[cinder:children] | |
control | |
[cloudkitty:children] | |
control | |
[freezer:children] | |
control | |
[memcached:children] | |
control | |
[horizon:children] | |
control | |
[swift:children] | |
control | |
[barbican:children] | |
control | |
[heat:children] | |
control | |
[murano:children] | |
control | |
[solum:children] | |
control | |
[ironic:children] | |
control | |
[magnum:children] | |
control | |
[sahara:children] | |
control | |
[mistral:children] | |
control | |
[manila:children] | |
control | |
[ceilometer:children] | |
control | |
[aodh:children] | |
control | |
[cyborg:children] | |
control | |
compute | |
[gnocchi:children] | |
control | |
[tacker:children] | |
control | |
[trove:children] | |
control | |
[senlin:children] | |
control | |
[vitrage:children] | |
control | |
[watcher:children] | |
control | |
[octavia:children] | |
control | |
[designate:children] | |
control | |
[placement:children] | |
control | |
[bifrost:children] | |
deployment | |
[zookeeper:children] | |
control | |
[zun:children] | |
control | |
[skydive:children] | |
monitoring | |
[redis:children] | |
control | |
[blazar:children] | |
control | |
# Additional control implemented here. These groups allow you to control which | |
# services run on which hosts at a per-service level. | |
# | |
# Word of caution: Some services are required to run on the same host to | |
# function appropriately. For example, neutron-metadata-agent must run on the | |
# same host as the l3-agent and (depending on configuration) the dhcp-agent. | |
# Common | |
[cron:children] | |
common | |
[fluentd:children] | |
common | |
[kolla-logs:children] | |
common | |
[kolla-toolbox:children] | |
common | |
# Elasticsearch Curator | |
[elasticsearch-curator:children] | |
elasticsearch | |
# Glance | |
[glance-api:children] | |
glance | |
# Nova | |
[nova-api:children] | |
nova | |
[nova-conductor:children] | |
nova | |
[nova-super-conductor:children] | |
nova | |
[nova-novncproxy:children] | |
nova | |
[nova-scheduler:children] | |
nova | |
[nova-spicehtml5proxy:children] | |
nova | |
[nova-compute-ironic:children] | |
nova | |
[nova-serialproxy:children] | |
nova | |
# Neutron | |
[neutron-server:children] | |
control | |
[neutron-dhcp-agent:children] | |
neutron | |
[neutron-l3-agent:children] | |
neutron | |
[neutron-metadata-agent:children] | |
neutron | |
[neutron-ovn-metadata-agent:children] | |
compute | |
network | |
[neutron-bgp-dragent:children] | |
neutron | |
[neutron-infoblox-ipam-agent:children] | |
neutron | |
[neutron-metering-agent:children] | |
neutron | |
[ironic-neutron-agent:children] | |
neutron | |
# Cinder | |
[cinder-api:children] | |
cinder | |
[cinder-backup:children] | |
storage | |
[cinder-scheduler:children] | |
cinder | |
[cinder-volume:children] | |
storage | |
# Cloudkitty | |
[cloudkitty-api:children] | |
cloudkitty | |
[cloudkitty-processor:children] | |
cloudkitty | |
# Freezer | |
[freezer-api:children] | |
freezer | |
[freezer-scheduler:children] | |
freezer | |
# iSCSI | |
[iscsid:children] | |
compute | |
storage | |
ironic | |
[tgtd:children] | |
storage | |
# Manila | |
[manila-api:children] | |
manila | |
[manila-scheduler:children] | |
manila | |
[manila-share:children] | |
network | |
[manila-data:children] | |
manila | |
# Swift | |
[swift-proxy-server:children] | |
swift | |
[swift-account-server:children] | |
storage | |
[swift-container-server:children] | |
storage | |
[swift-object-server:children] | |
storage | |
# Barbican | |
[barbican-api:children] | |
barbican | |
[barbican-keystone-listener:children] | |
barbican | |
[barbican-worker:children] | |
barbican | |
# Heat | |
[heat-api:children] | |
heat | |
[heat-api-cfn:children] | |
heat | |
[heat-engine:children] | |
heat | |
# Murano | |
[murano-api:children] | |
murano | |
[murano-engine:children] | |
murano | |
# Monasca | |
[monasca-agent-collector:children] | |
monasca-agent | |
[monasca-agent-forwarder:children] | |
monasca-agent | |
[monasca-agent-statsd:children] | |
monasca-agent | |
[monasca-api:children] | |
monasca | |
[monasca-log-persister:children] | |
monasca | |
[monasca-log-metrics:children] | |
monasca | |
[monasca-thresh:children] | |
monasca | |
[monasca-notification:children] | |
monasca | |
[monasca-persister:children] | |
monasca | |
# Storm | |
[storm-worker:children] | |
storm | |
[storm-nimbus:children] | |
storm | |
# Ironic | |
[ironic-api:children] | |
ironic | |
[ironic-conductor:children] | |
ironic | |
[ironic-inspector:children] | |
ironic | |
[ironic-tftp:children] | |
ironic | |
[ironic-http:children] | |
ironic | |
# Magnum | |
[magnum-api:children] | |
magnum | |
[magnum-conductor:children] | |
magnum | |
# Sahara | |
[sahara-api:children] | |
sahara | |
[sahara-engine:children] | |
sahara | |
# Solum | |
[solum-api:children] | |
solum | |
[solum-worker:children] | |
solum | |
[solum-deployer:children] | |
solum | |
[solum-conductor:children] | |
solum | |
[solum-application-deployment:children] | |
solum | |
[solum-image-builder:children] | |
solum | |
# Mistral | |
[mistral-api:children] | |
mistral | |
[mistral-executor:children] | |
mistral | |
[mistral-engine:children] | |
mistral | |
[mistral-event-engine:children] | |
mistral | |
# Ceilometer | |
[ceilometer-central:children] | |
ceilometer | |
[ceilometer-notification:children] | |
ceilometer | |
[ceilometer-compute:children] | |
compute | |
[ceilometer-ipmi:children] | |
compute | |
# Aodh | |
[aodh-api:children] | |
aodh | |
[aodh-evaluator:children] | |
aodh | |
[aodh-listener:children] | |
aodh | |
[aodh-notifier:children] | |
aodh | |
# Cyborg | |
[cyborg-api:children] | |
cyborg | |
[cyborg-agent:children] | |
compute | |
[cyborg-conductor:children] | |
cyborg | |
# Gnocchi | |
[gnocchi-api:children] | |
gnocchi | |
[gnocchi-statsd:children] | |
gnocchi | |
[gnocchi-metricd:children] | |
gnocchi | |
# Trove | |
[trove-api:children] | |
trove | |
[trove-conductor:children] | |
trove | |
[trove-taskmanager:children] | |
trove | |
# Multipathd | |
[multipathd:children] | |
compute | |
storage | |
# Watcher | |
[watcher-api:children] | |
watcher | |
[watcher-engine:children] | |
watcher | |
[watcher-applier:children] | |
watcher | |
# Senlin | |
[senlin-api:children] | |
senlin | |
[senlin-conductor:children] | |
senlin | |
[senlin-engine:children] | |
senlin | |
[senlin-health-manager:children] | |
senlin | |
# Octavia | |
[octavia-api:children] | |
octavia | |
[octavia-driver-agent:children] | |
octavia | |
[octavia-health-manager:children] | |
octavia | |
[octavia-housekeeping:children] | |
octavia | |
[octavia-worker:children] | |
octavia | |
# Designate | |
[designate-api:children] | |
designate | |
[designate-central:children] | |
designate | |
[designate-producer:children] | |
designate | |
[designate-mdns:children] | |
network | |
[designate-worker:children] | |
designate | |
[designate-sink:children] | |
designate | |
[designate-backend-bind9:children] | |
designate | |
# Placement | |
[placement-api:children] | |
placement | |
# Zun | |
[zun-api:children] | |
zun | |
[zun-wsproxy:children] | |
zun | |
[zun-compute:children] | |
compute | |
[zun-cni-daemon:children] | |
compute | |
# Skydive | |
[skydive-analyzer:children] | |
skydive | |
[skydive-agent:children] | |
compute | |
network | |
# Tacker | |
[tacker-server:children] | |
tacker | |
[tacker-conductor:children] | |
tacker | |
# Vitrage | |
[vitrage-api:children] | |
vitrage | |
[vitrage-notifier:children] | |
vitrage | |
[vitrage-graph:children] | |
vitrage | |
[vitrage-ml:children] | |
vitrage | |
[vitrage-persistor:children] | |
vitrage | |
# Blazar | |
[blazar-api:children] | |
blazar | |
[blazar-manager:children] | |
blazar | |
# Prometheus | |
[prometheus-node-exporter:children] | |
monitoring | |
control | |
compute | |
network | |
storage | |
[prometheus-mysqld-exporter:children] | |
mariadb | |
[prometheus-haproxy-exporter:children] | |
loadbalancer | |
[prometheus-memcached-exporter:children] | |
memcached | |
[prometheus-cadvisor:children] | |
monitoring | |
control | |
compute | |
network | |
storage | |
[prometheus-alertmanager:children] | |
monitoring | |
[prometheus-openstack-exporter:children] | |
monitoring | |
[prometheus-elasticsearch-exporter:children] | |
elasticsearch | |
[prometheus-blackbox-exporter:children] | |
monitoring | |
[prometheus-libvirt-exporter:children] | |
compute | |
[masakari-api:children] | |
control | |
[masakari-engine:children] | |
control | |
[masakari-hostmonitor:children] | |
control | |
[masakari-instancemonitor:children] | |
compute | |
[ovn-controller:children] | |
ovn-controller-compute | |
ovn-controller-network | |
[ovn-controller-compute:children] | |
compute | |
[ovn-controller-network:children] | |
network | |
[ovn-database:children] | |
control | |
[ovn-northd:children] | |
ovn-database | |
[ovn-nb-db:children] | |
ovn-database | |
[ovn-sb-db:children] | |
ovn-database |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment