mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	- Added oidc feature flag in config - Removed obsolete credentials schema (initial_root_password) - Updated docker-compose.yml.j2 to use explicit GITLAB_* vars (image, version, container, volumes) - Moved initial_root_password into vars/main.yml - Introduced GITLAB_OMNIBUS_BASE and GITLAB_OMNIBUS_OIDC config lists - Switched env.j2 to use GITLAB_OMNIBUS_ALL join See conversation: https://chatgpt.com/share/68b1962c-3ee0-800f-a858-d4590ff6132a
		
			
				
	
	
		
			26 lines
		
	
	
		
			551 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			551 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
features:
 | 
						|
  matomo:           true
 | 
						|
  css:              true
 | 
						|
  desktop:          true
 | 
						|
  central_database: true
 | 
						|
  logout:           true
 | 
						|
  oidc:             true 
 | 
						|
docker:
 | 
						|
  services:
 | 
						|
    redis:
 | 
						|
      enabled:      true
 | 
						|
    database: 
 | 
						|
      enabled:      true
 | 
						|
    gitlab:
 | 
						|
      image:        "gitlab/gitlab-ee"
 | 
						|
      version:      "latest"
 | 
						|
      name:         "gitlab"
 | 
						|
  volumes:
 | 
						|
    data:           "gitlab_data"
 | 
						|
    logs:           "gitlab_logs"
 | 
						|
    config:         "gitlab_config"
 | 
						|
server:
 | 
						|
  domains:
 | 
						|
    canonical:
 | 
						|
      - gitlab.{{ PRIMARY_DOMAIN }}
 |