29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # SPDX-FileCopyrightText: 2020 MDAD project contributors
 | |
| # SPDX-FileCopyrightText: 2020 Marcel Partap
 | |
| # SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
 | |
| # SPDX-FileCopyrightText: 2022 Marko Weltzer
 | |
| #
 | |
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| 
 | |
| ---
 | |
| 
 | |
| - name: Check ma1sd Identity Service
 | |
|   ansible.builtin.uri:
 | |
|     url: "{{ matrix_ma1sd_self_check_endpoint_url }}"
 | |
|     follow_redirects: none
 | |
|     validate_certs: "{{ matrix_ma1sd_self_check_validate_certificates }}"
 | |
|   check_mode: false
 | |
|   register: result_ma1sd
 | |
|   ignore_errors: true
 | |
|   delegate_to: 127.0.0.1
 | |
|   become: false
 | |
| 
 | |
| - name: Fail if ma1sd Identity Service not working
 | |
|   ansible.builtin.fail:
 | |
|     msg: "Failed checking ma1sd is up at `{{ matrix_ma1sd_hostname }}` (checked endpoint: `{{ matrix_ma1sd_self_check_endpoint_url }}`). Is ma1sd running? Is port 443 open in your firewall? Full error: {{ result_ma1sd }}"
 | |
|   when: "result_ma1sd.failed or 'json' not in result_ma1sd"
 | |
| 
 | |
| - name: Report working ma1sd Identity Service
 | |
|   ansible.builtin.debug:
 | |
|     msg: "ma1sd at `{{ matrix_ma1sd_hostname }}` is working (checked endpoint: `{{ matrix_ma1sd_self_check_endpoint_url }}`)"
 |