Add tasks to install laconic-so, python, pip and ansible on remote host
This commit is contained in:
parent
3c34f563f7
commit
74ab04ebcd
31
service-provider-setup/setup-k8s.yml
Normal file
31
service-provider-setup/setup-k8s.yml
Normal file
@ -0,0 +1,31 @@
|
||||
- name: Install Stack Orchestrator if it isn't present
|
||||
import_playbook: ../stack-orchestrator-setup/setup-laconic-so.yml
|
||||
|
||||
- name: Setup k8s
|
||||
hosts: "{{ target_host }}"
|
||||
|
||||
vars:
|
||||
target_host: "localhost"
|
||||
|
||||
tasks:
|
||||
- name: Install Python and pip
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
become: true
|
||||
loop:
|
||||
- python3
|
||||
- python3-pip
|
||||
|
||||
- name: Install Ansible on remote host
|
||||
pip:
|
||||
name: ansible
|
||||
extra_args: --user
|
||||
when: target_host != "localhost"
|
||||
|
||||
- name: Ensure ~/.local/bin is in PATH in .bashrc
|
||||
lineinfile:
|
||||
path: ~/.bashrc
|
||||
line: 'export PATH="$HOME/.local/bin:$PATH"'
|
||||
state: present
|
||||
create: yes
|
@ -1,5 +1,5 @@
|
||||
- name: Configure system
|
||||
hosts: deployment_host
|
||||
hosts: "{{ target_host }}"
|
||||
become: yes
|
||||
|
||||
tasks:
|
||||
@ -82,7 +82,7 @@
|
||||
user:
|
||||
name: so
|
||||
password: "{{ 'so-service-provider' | password_hash('sha512') }}"
|
||||
shell: /bin/bash
|
||||
shell: /bin/zsh
|
||||
state: present
|
||||
|
||||
- name: Add 'so' user to sudoers group
|
||||
|
@ -81,9 +81,11 @@ To run the playbook on a remote host:
|
||||
```bash
|
||||
# For bash users
|
||||
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
|
||||
# For zsh users
|
||||
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.zshrc
|
||||
source ~/.zshrc
|
||||
```
|
||||
|
||||
- Once the PATH is set, verify the installation by running the following commands:
|
||||
|
Loading…
Reference in New Issue
Block a user