lab:nuc_2
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:nuc_2 [2023/04/14 03:04] – updated with firmware information user | lab:nuc_2 [2023/04/28 21:15] (current) – replaced user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== NUC 2 ====== | ||
- | This is the second NUC in the [[Stack of NUCs]]. This will be the Ansible controller, the Control Node. We will build it using the USB install and autoconfiguration method we tested with [[NUC 1]]. | ||
- | Ansible terms: | ||
- | * Control node - A system on which Ansible is installed. You run Ansible commands such as ansible or ansible-inventory on a control node. | ||
- | * Managed node - A remote system, or host, that Ansible controls. | ||
- | * Inventory - A list of managed nodes that are logically organized. You create an inventory on the control node to describe host deployments to Ansible. | ||
- | |||
- | References | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | Hardware: | ||
- | * i3 | ||
- | * [[https:// | ||
- | * Haswell NUC D34010WYK and D54250WYK: BIOS version 0054 (9/2/2019) | ||
- | * [[https:// | ||
- | * 8GB RAM | ||
- | * 32GB storage | ||
- | * Wireless | ||
- | |||
- | Software: | ||
- | * Ubuntu 22.04 LTS server | ||
- | |||
- | Purpose: | ||
- | * Ansible controller | ||
- | |||
- | Steps: | ||
- | - Modify the CIDATA USB stick file user_data to set up an Ansible controller | ||
- | * <file yaml> | ||
- | # | ||
- | autoinstall: | ||
- | version: 1 | ||
- | ssh: | ||
- | install-server: | ||
- | # option " | ||
- | allow-pw: false | ||
- | |||
- | # " | ||
- | late-commands: | ||
- | # randomly generate the hostname & show the IP at boot | ||
- | - echo nuc-ansible-$(openssl rand -hex 3) > / | ||
- | # dump the IP out at login screen | ||
- | - echo " | ||
- | # merge storage to use 100% use of the file system | ||
- | - curtin in-target --target=/ | ||
- | - curtin in-target --target=/ | ||
- | # shut-down the host to avoid an infinite installer loop | ||
- | - shutdown -h now | ||
- | |||
- | user-data: | ||
- | disable_root: | ||
- | timezone: America/ | ||
- | package_upgrade: | ||
- | packages: | ||
- | - network-manager | ||
- | - git | ||
- | - python3-pip | ||
- | - ansible | ||
- | runcmd: | ||
- | - nmcli d wifi connect SSID password PASSWORD | ||
- | users: | ||
- | - name: tux | ||
- | primary_group: | ||
- | groups: sudo | ||
- | lock_passwd: | ||
- | # don't need PW since using SSH, leaving this in though... | ||
- | # password is " | ||
- | # passwd: " | ||
- | shell: /bin/bash | ||
- | # use cat ~/ | ||
- | ssh_authorized_keys: | ||
- | - " | ||
- | sudo: ALL=(ALL) NOPASSWD: | ||
- | - name: ansible | ||
- | gecos: Ansible User | ||
- | primary_group: | ||
- | groups: sudo | ||
- | sudo: ALL=(ALL) NOPASSWD: | ||
- | shell: /bin/bash | ||
- | lock_passwd: | ||
- | ssh_authorized_keys: | ||
- | - " | ||
- | ansible: | ||
- | install_method: | ||
- | package_name: | ||
- | run_user: ansible | ||
- | galaxy: | ||
- | actions: | ||
- | - [" | ||
- | setup_controller: | ||
- | repositories: | ||
- | - path: / | ||
- | source: git@github.com: | ||
- | # shutdown after first host initial provisioning | ||
- | power_state: | ||
- | mode: poweroff | ||
- | </ | ||
- | - Boot with the custom Lab bootable USB and the customized CIDATA USB inserted | ||
- | * with the NUC powered off, insert both USB sticks | ||
- | * power on the NUC, and press F10 when prompted | ||
- | * select the UEFI USB boot option | ||
- | * after a while, the device will power down | ||
- | * remove the USB sticks from the NUC and power it back on | ||
- | * be patient it is completes configuration and powers down again | ||
- | * you can disconnect the ethernet cable if you'd like, relocate it, etc., and then power it back on | ||
- | - Not sure why it doesn' | ||
- | - - By default, Ansible default configuration file and inventory file is located at / | ||
- | - Log in to NUC 2 from NUC 1: | ||
- | * '' | ||
- | - Generate keys | ||
- | * '' | ||
- | * press enter to accept defaults to all prompts | ||
- | - View the key, which you will use for building the remaining NUCs | ||
- | * '' | ||
- | - Ansible is now installed, but with no inventory file(s) or configuration | ||
- | * '' | ||
- | - Set up some files for Ansible; we will be configuring/ | ||
- | * <code bash> | ||
- | mkdir my-project | ||
- | cat <<' | ||
- | [nodes] | ||
- | |||
- | [all:vars] | ||
- | ansible_python_interpreter=/ | ||
- | ansible_user=' | ||
- | ansible_become=yes | ||
- | ansible_become_method=sudo | ||
- | EOF | ||
- | </ | ||
- | - Exit back to your NUC 1 session | ||
- | - Test running a remote command using SSH | ||
- | * '' | ||
- | - You are now ready to build more more NUCs! Continue with [[NUC 3]] |
lab/nuc_2.1681441449.txt.gz · Last modified: 2023/04/14 03:04 by user