9 lines
		
	
	
		
			639 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			639 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Can be either basic (with single instance of Zookeeper, Kafka and Redis) or high-availability (with Zookeeper, Kafka and Redis in cluster modes).
 | 
						|
# According to the deployment type corresponding kubernetes resources will be deployed (see content of the directories ./basic and ./high-availability for details).
 | 
						|
DEPLOYMENT_TYPE=basic
 | 
						|
 | 
						|
# Database used by ThingsBoard, can be either postgres (PostgreSQL) or hybrid (PostgreSQL for entities database and Cassandra for timeseries database).
 | 
						|
# According to the database type corresponding kubernetes resources will be deployed (see postgres.yml, cassandra.yml for details).
 | 
						|
DATABASE=postgres
 | 
						|
 |