27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright © 2023 Vulcanize
 | 
						|
 | 
						|
# This program is free software: you can redistribute it and/or modify
 | 
						|
# it under the terms of the GNU Affero General Public License as published by
 | 
						|
# the Free Software Foundation, either version 3 of the License, or
 | 
						|
# (at your option) any later version.
 | 
						|
 | 
						|
# This program is distributed in the hope that it will be useful,
 | 
						|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
# GNU Affero General Public License for more details.
 | 
						|
 | 
						|
# You should have received a copy of the GNU Affero General Public License
 | 
						|
# along with this program.  If not, see <http:#www.gnu.org/licenses/>.
 | 
						|
 | 
						|
stack_file_name = "stack.yml"
 | 
						|
compose_deploy_type = "compose"
 | 
						|
k8s_kind_deploy_type = "k8s-kind"
 | 
						|
k8s_deploy_type = "k8s"
 | 
						|
kube_config_key = "kube-config"
 | 
						|
deploy_to_key = "deploy-to"
 | 
						|
network_key = "network"
 | 
						|
http_proxy_key = "http-proxy"
 | 
						|
image_resigtry_key = "image-registry"
 | 
						|
kind_config_filename = "kind-config.yml"
 | 
						|
kube_config_filename = "kubeconfig.yml"
 |