* rename config values - api -> backend - nginx -> frontend * job pods: - set job_pull_policy from api_pull_policy (same as backend image) - default to Always, but can be overridden for local deployment (same as backend image) typo fix: CRAWL_NAMESPACE -> CRAWLER_NAMESPACE (part of #491) ansible: set default label to :latest instead of :dev for
		
			
				
	
	
		
			31 lines
		
	
	
		
			650 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			650 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # microk8s overrides for ci
 | |
| # -------------------------
 | |
| 
 | |
| 
 | |
| # use local images
 | |
| backend_image: "localhost:32000/webrecorder/browsertrix-backend:latest"
 | |
| frontend_image: "localhost:32000/webrecorder/browsertrix-frontend:latest"
 | |
| 
 | |
| # don't pull use, existing images
 | |
| backend_pull_policy: "IfNotPresent"
 | |
| frontend_pull_policy: "IfNotPresent"
 | |
| 
 | |
| 
 | |
| mongo_auth:
 | |
|   # specify either username + password (for local mongo)
 | |
|   username: root
 | |
|   password: PASSWORD@
 | |
| 
 | |
| 
 | |
| superuser:
 | |
|   # set this to enable a superuser admin
 | |
|   email: admin@example.com
 | |
| 
 | |
|   # optional: if not set, automatically generated
 | |
|   # change or remove this
 | |
|   password: PASSW0RD!
 | |
| 
 | |
| 
 | |
| local_service_port: 30870
 | |
| 
 |