jumpserver/apps/terminal/automations/deploy_applet_host/playbook.yml

201 lines
6.7 KiB
YAML
Raw Normal View History

2022-10-26 09:21:52 +00:00
---
2022-10-26 11:25:34 +00:00
2022-10-28 10:19:44 +00:00
- hosts: all
2022-10-26 09:21:52 +00:00
vars:
2022-11-17 08:02:22 +00:00
APPLET_DOWNLOAD_HOST: https://demo.jumpserver.org
2022-11-01 09:04:44 +00:00
HOST_NAME: test
2022-11-03 10:03:46 +00:00
HOST_ID: 00000000-0000-0000-0000-000000000000
2022-11-01 09:04:44 +00:00
CORE_HOST: https://demo.jumpserver.org
BOOTSTRAP_TOKEN: PleaseChangeMe
2022-11-01 10:40:42 +00:00
RDS_Licensing: true
2022-11-01 09:04:44 +00:00
RDS_LicenseServer: 127.0.0.1
RDS_LicensingMode: 4
RDS_fSingleSessionPerUser: 1
RDS_MaxDisconnectionTime: 60000
RDS_RemoteAppLogoffTimeLimit: 0
TinkerInstaller: Tinker_Installer.exe
2022-10-26 11:25:34 +00:00
2022-10-26 09:21:52 +00:00
tasks:
2022-11-14 10:48:21 +00:00
- name: Install RDS-Licensing (RDS)
ansible.windows.win_feature:
name: RDS-Licensing
state: present
include_management_tools: yes
when: RDS_Licensing
- name: Install RDS-RD-Server (RDS)
ansible.windows.win_feature:
name: RDS-RD-Server
state: present
include_management_tools: yes
register: rds_install
- name: Download JumpServer Tinker installer (jumpserver)
ansible.windows.win_get_url:
2022-11-17 08:02:22 +00:00
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/{{ TinkerInstaller }}"
2022-11-03 07:11:20 +00:00
dest: "{{ ansible_env.TEMP }}\\{{ TinkerInstaller }}"
2022-10-28 09:12:18 +00:00
2022-11-14 10:48:21 +00:00
- name: Install JumpServer Tinker (jumpserver)
ansible.windows.win_package:
path: "{{ ansible_env.TEMP }}\\{{ TinkerInstaller }}"
arguments:
- /VERYSILENT
- /SUPPRESSMSGBOXES
- /NORESTART
state: present
- name: Set remote-server on the global system path (remote-server)
ansible.windows.win_path:
elements:
- '%USERPROFILE%\AppData\Local\Programs\Tinker\'
scope: user
- name: Download python-3.10.8
ansible.windows.win_get_url:
2022-11-17 08:02:22 +00:00
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/python-3.10.8-amd64.exe"
2022-11-14 10:48:21 +00:00
dest: "{{ ansible_env.TEMP }}\\python-3.10.8-amd64.exe"
- name: Install the python-3.10.8
ansible.windows.win_package:
path: "{{ ansible_env.TEMP }}\\python-3.10.8-amd64.exe"
product_id: '{371d0d73-d418-4ffe-b280-58c3e7987525}'
arguments:
- /quiet
- InstallAllUsers=1
- PrependPath=1
- Include_test=0
- Include_launcher=0
state: present
register: win_install_python
- name: Reboot if installing requires it
ansible.windows.win_reboot:
post_reboot_delay: 10
test_command: whoami
when: rds_install.reboot_required or win_install_python.reboot_required
- name: Set RDS LicenseServer (regedit)
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
name: LicenseServers
data: "{{ RDS_LicenseServer }}"
type: string
- name: Set RDS LicensingMode (regedit)
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
name: LicensingMode
data: "{{ RDS_LicensingMode }}"
type: dword
- name: Set RDS fSingleSessionPerUser (regedit)
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
name: fSingleSessionPerUser
data: "{{ RDS_fSingleSessionPerUser }}"
type: dword
- name: Set RDS MaxDisconnectionTime (regedit)
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
name: MaxDisconnectionTime
data: "{{ RDS_MaxDisconnectionTime }}"
type: dword
when: RDS_MaxDisconnectionTime >= 60000
- name: Set RDS RemoteAppLogoffTimeLimit (regedit)
ansible.windows.win_regedit:
path: HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
name: RemoteAppLogoffTimeLimit
data: "{{ RDS_RemoteAppLogoffTimeLimit }}"
type: dword
- name: Download pip packages
ansible.windows.win_get_url:
2022-11-17 08:02:22 +00:00
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/pip_packages.zip"
dest: "{{ ansible_env.TEMP }}\\pip_packages.zip"
2022-11-14 10:48:21 +00:00
- name: Unzip pip_packages
community.windows.win_unzip:
2022-11-17 08:02:22 +00:00
src: "{{ ansible_env.TEMP }}\\pip_packages.zip"
dest: "{{ ansible_env.TEMP }}\\pip_packages"
2022-11-14 10:48:21 +00:00
- name: Install python requirements offline
ansible.windows.win_shell: >
2022-11-17 08:02:22 +00:00
pip install -r '{{ ansible_env.TEMP }}\pip_packages\requirements.txt'
--no-index --find-links='{{ ansible_env.TEMP }}\pip_packages'
2022-10-26 11:25:34 +00:00
- name: Download chromedriver (Chromium)
2022-11-14 10:48:21 +00:00
ansible.windows.win_get_url:
2022-11-17 08:02:22 +00:00
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/chromedriver_win32.zip"
dest: "{{ ansible_env.TEMP }}\\chromedriver_win32.zip"
2022-11-14 10:48:21 +00:00
- name: Unzip chromedriver (Chromium)
2022-11-14 10:48:21 +00:00
community.windows.win_unzip:
2022-11-17 08:02:22 +00:00
src: "{{ ansible_env.TEMP }}\\chromedriver_win32.zip"
2022-11-14 10:48:21 +00:00
dest: C:\Program Files\JumpServer\drivers
- name: Download chromium zip package (Chromium)
ansible.windows.win_get_url:
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/chrome-win.zip"
dest: "{{ ansible_env.TEMP }}\\chrome-win.zip"
- name: Unzip chromedriver (Chromium)
community.windows.win_unzip:
src: "{{ ansible_env.TEMP }}\\chrome-win.zip"
dest: C:\Program Files\chrome-win
- name: Set chromium and driver on the global system path (Chromium)
2022-11-14 10:48:21 +00:00
ansible.windows.win_path:
elements:
- 'C:\Program Files\chrome-win'
2022-11-14 10:48:21 +00:00
- 'C:\Program Files\JumpServer\drivers'
- name: Set Chromium variables diable Google Api (Chromium)
ansible.windows.win_environment:
level: machine
variables:
GOOGLE_API_KEY: ''
GOOGLE_DEFAULT_CLIENT_ID: ''
GOOGLE_DEFAULT_CLIENT_SECRET: ''
2022-11-14 10:48:21 +00:00
- name: Download navicat161_premium_en package (navicat)
ansible.windows.win_get_url:
url: "{{ APPLET_DOWNLOAD_HOST }}/download/applets/navicat161_premium_en_x64.exe"
dest: "{{ ansible_env.TEMP }}\\navicat161_premium_en_x64.exe"
- name: Install navicat (navicat)
ansible.windows.win_package:
path: "{{ ansible_env.TEMP }}\\navicat161_premium_en_x64.exe"
state: present
arguments:
- /SILENT
2022-11-14 10:48:21 +00:00
- name: Generate tinkerd component config
ansible.windows.win_shell:
"tinkerd config --hostname {{ HOST_NAME }} --core_host {{ CORE_HOST }}
2022-11-03 10:03:46 +00:00
--token {{ BOOTSTRAP_TOKEN }} --host_id {{ HOST_ID }}"
2022-11-03 07:11:20 +00:00
2022-11-14 10:48:21 +00:00
- name: Install tinkerd service
ansible.windows.win_shell:
"tinkerd service install"
- name: Start tinkerd service
ansible.windows.win_shell:
"tinkerd service start"
- name: Wait Tinker api health
ansible.windows.win_uri:
url: http://localhost:6068/api/health/
status_code: 200
method: GET
register: _result
until: _result.status_code == 200
retries: 30
delay: 5
- name: Sync all remote applets
ansible.windows.win_shell:
"tinkerd install all"
2022-11-11 10:16:11 +00:00