update: Added 'git' and 'vagrant' to required tools in pre-flight checks fix: configured k3s install to use internal nic for flanel network update: Added Longhorn installation process and updated memory allocation for VMs update: Added 'git' and 'vagrant' to required tools in pre-flight checks fix: configured k3s install to use internal nic for flanel network fix: corrected JSON formatting for config json update: reduce VM memory allocation to 2GB, add Longhorn installation scripts and prerequisites, and implement checks for existing pods fix: merge issues fix: merge issues update: Added Longhorn installation process and updated memory allocation for VMs update: Added 'git' and 'vagrant' to required tools in pre-flight checks fix: configured k3s install to use internal nic for flanel network update: Added Longhorn installation process and updated memory allocation for VMs update: Added 'git' and 'vagrant' to required tools in pre-flight checks fix: configured k3s install to use internal nic for flanel network fix: corrected JSON formatting for config json update: reduce VM memory allocation to 2GB, add Longhorn installation scripts and prerequisites, and implement checks for existing pods update: improve error logging in RunJsonDeployment and RunCommand functions update: add jq installation to provision script update: add version flag bump version fix: improve error messages for config file reading feat: add Windows gitbash installation support and improve binary download process clean up tmp code fix: increase timeout for some slower windows clients feat: add Ingress and Service configurations for nginx deployment, and implement MetalLB and Traeik installation scripts refactor: remove obsolete Traefik installation script feat: add environment checks and configurations for Vagrant setup, including dnsmasq MetalLB and ingress feat: add deployment and installation scripts for infmon-cli, including Kubernetes configurations feat: refactor customer project creation and add success/failure job scripts refactor: rename customer references to project in configuration and application logic feat: enhance JSON deployment handling with retry logic and command execution improvements feat: enhance RunJsonDeployment with error handling and retry logic; add tests for configuration reading feat: add automatic creation of base and config JSON files from examples if they do not exist refactor: remove database package and related functionality; update app state initialization and error handling refactor: update deployment handling to use ProjectConfig; improve error messages and logging feat: enhance RunJsonDeployment retry logic with configurable delay; improve logging for retries feat: implement LoadConfigs function for improved configuration loading; add logger setup refactor: remove unused fields from BaseConfig and ProjectConfig structs for cleaner configuration management refactor: clean up tests by removing obsolete functions and simplifying test cases chore: update version to v0.0.5 in install script feat: implement default configuration creation for BaseConfig and ProjectConfig; enhance validation logic fix: enhance configuration parsing and loading; streamline flag handling and error reporting refactor: remove obsolete configuration download logic from installation script
156 lines
5.4 KiB
YAML
156 lines
5.4 KiB
YAML
---
|
|
- name: Install k3s on 3-node cluster
|
|
hosts: vm1,vm2,vm3
|
|
become: true
|
|
become_user: root
|
|
serial: 1 # Ensure tasks are executed one host at a time
|
|
vars_files:
|
|
- vars.yaml
|
|
|
|
tasks:
|
|
# - name: Debug IP variables
|
|
# ansible.builtin.debug:
|
|
# msg:
|
|
# - "vm1_ip: {{ vm1_ip }}"
|
|
# - "vm2_ip: {{ vm2_ip }}"
|
|
# - "vm3_ip: {{ vm3_ip }}"
|
|
# - "Current inventory_hostname: {{ inventory_hostname }}"
|
|
|
|
- name: Check if k3s is already installed
|
|
ansible.builtin.stat:
|
|
path: /usr/local/bin/k3s
|
|
register: k3s_binary
|
|
|
|
- name: Check if k3s token file exists
|
|
ansible.builtin.stat:
|
|
path: /opt/k3s-token
|
|
register: k3s_token_file
|
|
when: inventory_hostname == 'vm1'
|
|
|
|
- name: Generate and save k3s token if not present (first node)
|
|
ansible.builtin.copy:
|
|
dest: /opt/k3s-token
|
|
content: '{{ lookup(''pipe'', ''head -c 16 /dev/urandom | sha256sum | cut -d" " -f1'') }}'
|
|
owner: root
|
|
group: root
|
|
mode: "0600"
|
|
force: false
|
|
register: generated_k3s_token
|
|
when: inventory_hostname == 'vm1' and not k3s_token_file.stat.exists
|
|
|
|
- name: Download k3s install script
|
|
ansible.builtin.get_url:
|
|
url: https://get.k3s.io
|
|
dest: /tmp/k3s_install.sh
|
|
mode: "0755"
|
|
when: not k3s_binary.stat.exists
|
|
|
|
- name: Ensure .kube directory exists
|
|
ansible.builtin.file:
|
|
path: /home/user/.kube
|
|
state: directory
|
|
mode: "0755"
|
|
when: inventory_hostname == 'vm1' and not k3s_binary.stat.exists
|
|
|
|
- name: Install k3s on first node
|
|
ansible.builtin.shell: |
|
|
set -o pipefail
|
|
K3S_TOKEN=$(cat /opt/k3s-token) /bin/bash /tmp/k3s_install.sh server --cluster-init --disable traefik --disable servicelb --tls-san {{ k3s_url_ip }} --node-name vm1 --node-ip {{ vm1_ip }} --flannel-iface=enp0s8
|
|
if [ $? -eq 0 ]; then
|
|
mkdir -p /home/vagrant/.kube && cp /etc/rancher/k3s/k3s.yaml /home/vagrant/.kube/config && chown vagrant:vagrant /home/vagrant/.kube/config
|
|
fi
|
|
args:
|
|
executable: /bin/bash
|
|
creates: /usr/local/bin/k3s
|
|
when: inventory_hostname == 'vm1' and not k3s_binary.stat.exists
|
|
|
|
- name: Read k3s token from master node (for subsequent nodes)
|
|
ansible.builtin.command: cat /opt/k3s-token
|
|
register: k3s_token_content
|
|
delegate_to: vm1
|
|
when: inventory_hostname != 'vm1' and not k3s_binary.stat.exists
|
|
changed_when: false
|
|
|
|
- name: Wait for k3s API server to be ready on master node
|
|
ansible.builtin.wait_for:
|
|
host: "{{ vm1_ip }}"
|
|
port: 6443
|
|
timeout: 60
|
|
delegate_to: "{{ inventory_hostname }}"
|
|
when: inventory_hostname != 'vm1' and not k3s_binary.stat.exists
|
|
|
|
- name: Install k3s on subsequent nodes
|
|
ansible.builtin.shell: |
|
|
set -o pipefail
|
|
{% if inventory_hostname == 'vm2' %}
|
|
NODE_IP="{{ vm2_ip }}"
|
|
{% elif inventory_hostname == 'vm3' %}
|
|
NODE_IP="{{ vm3_ip }}"
|
|
{% else %}
|
|
NODE_IP="{{ vm1_ip }}"
|
|
{% endif %}
|
|
K3S_URL=https://{{ k3s_url_ip }}:6443 \
|
|
K3S_TOKEN={{ k3s_token_content.stdout }} \
|
|
INSTALL_K3S_EXEC="server --server https://{{ k3s_url_ip }}:6443 --disable traefik --disable servicelb --node-name={{ inventory_hostname }} --node-ip ${NODE_IP} --flannel-iface=enp0s8" \
|
|
/bin/bash /tmp/k3s_install.sh 2>&1
|
|
exit_code=$?
|
|
if [ $exit_code -ne 0 ]; then
|
|
echo "K3S INSTALL FAILED - Service Status:"
|
|
systemctl status k3s.service --no-pager -l | head -20
|
|
echo "Recent logs:"
|
|
journalctl -u k3s.service --no-pager -l | tail -10
|
|
exit $exit_code
|
|
fi
|
|
args:
|
|
executable: /bin/bash
|
|
creates: /usr/local/bin/k3s
|
|
register: k3s_install_result
|
|
failed_when: false
|
|
when: inventory_hostname != 'vm1' and not k3s_binary.stat.exists
|
|
|
|
- name: Show k3s failure details
|
|
ansible.builtin.debug:
|
|
msg: "{{ k3s_install_result.stdout_lines[-30:] }}"
|
|
when: inventory_hostname != 'vm1' and not k3s_binary.stat.exists and k3s_install_result.rc != 0
|
|
|
|
- name: Fail if k3s installation failed
|
|
ansible.builtin.fail:
|
|
msg: "K3S installation failed on {{ inventory_hostname }}"
|
|
when: inventory_hostname != 'vm1' and not k3s_binary.stat.exists and k3s_install_result.rc != 0
|
|
|
|
- name: Ensure /home/vagrant/.kube directory exists
|
|
ansible.builtin.file:
|
|
path: /home/vagrant/.kube
|
|
state: directory
|
|
owner: vagrant
|
|
group: vagrant
|
|
mode: "0700"
|
|
|
|
- name: Copy kubeconfig to vagrant user
|
|
ansible.builtin.copy:
|
|
src: /etc/rancher/k3s/k3s.yaml
|
|
dest: /home/vagrant/.kube/config
|
|
owner: vagrant
|
|
group: vagrant
|
|
mode: "0600"
|
|
remote_src: true
|
|
|
|
- name: Ensure KUBECONFIG is set in vagrant .bashrc
|
|
ansible.builtin.lineinfile:
|
|
path: /home/vagrant/.bashrc
|
|
line: "export KUBECONFIG=~/.kube/config"
|
|
state: present
|
|
insertafter: EOF
|
|
owner: vagrant
|
|
group: vagrant
|
|
mode: "0644"
|
|
|
|
- name: Ensure kubectl completion is sourced in vagrant .bashrc
|
|
ansible.builtin.lineinfile:
|
|
path: /home/vagrant/.bashrc
|
|
line: "source <(kubectl completion bash)"
|
|
state: present
|
|
insertafter: EOF
|
|
owner: vagrant
|
|
group: vagrant
|
|
mode: "0644"
|