mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	- Removed obsolete 'cmp' category, introduced 'stk' category (fa-bars-staggered icon). - Renamed roles: * cmp-db-docker → sys-stk-back-stateful * cmp-docker-oauth2 → sys-stk-back-stateless * srv-domain-provision → sys-stk-front * cmp-db-docker-proxy → sys-stk-full-stateful * cmp-docker-proxy → sys-stk-full-stateless * cmp-rdbms → sys-svc-rdbms - Updated all include_role references, vars, templates and README.md files. - Adjusted run_once comments and variable paths accordingly. - Updated all web-app roles to use new sys-stk/* and sys-svc/* roles. Conversation: https://chatgpt.com/share/68b0ba66-09f8-800f-86fc-76c47009d431
		
			
				
	
	
		
			16 lines
		
	
	
		
			670 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			670 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {# Base template for all docker-compose.yml.j2 #}
 | |
| services:
 | |
| {# Load Database #}
 | |
| {% if applications | is_docker_service_enabled(application_id, 'database') %}
 | |
| {% include 'roles/sys-svc-rdbms/templates/services/main.yml.j2' %}
 | |
| {% endif %}
 | |
| {# Load Redis #}
 | |
| {% if applications | is_docker_service_enabled(application_id, 'redis') or applications | get_app_conf(application_id, 'features.oauth2', False) %}
 | |
| {% include 'roles/svc-db-redis/templates/service.yml.j2' %}
 | |
| {% endif %}
 | |
| {# Load OAuth2 Proxy #}
 | |
| {% if applications | get_app_conf(application_id, 'features.oauth2', False) %}
 | |
| {% include 'roles/web-app-oauth2-proxy/templates/container.yml.j2' %}
 | |
| {% endif %}
 | |
| {{ "\n" }}
 |