2023-11-15 03:59:48 +00:00
|
|
|
# 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/>.
|
|
|
|
|
2023-12-06 05:56:58 +00:00
|
|
|
cluster_name_prefix = "laconic-"
|
2023-11-15 03:59:48 +00:00
|
|
|
stack_file_name = "stack.yml"
|
2023-11-29 04:14:02 +00:00
|
|
|
spec_file_name = "spec.yml"
|
|
|
|
config_file_name = "config.env"
|
2023-12-06 05:56:58 +00:00
|
|
|
deployment_file_name = "deployment.yml"
|
|
|
|
compose_dir_name = "compose"
|
2023-11-20 16:12:57 +00:00
|
|
|
compose_deploy_type = "compose"
|
|
|
|
k8s_kind_deploy_type = "k8s-kind"
|
|
|
|
k8s_deploy_type = "k8s"
|
2023-12-06 05:56:58 +00:00
|
|
|
cluster_id_key = "cluster-id"
|
2023-11-20 16:12:57 +00:00
|
|
|
kube_config_key = "kube-config"
|
2023-11-21 03:23:55 +00:00
|
|
|
deploy_to_key = "deploy-to"
|
2023-11-21 23:04:36 +00:00
|
|
|
network_key = "network"
|
|
|
|
http_proxy_key = "http-proxy"
|
2024-02-14 21:45:01 +00:00
|
|
|
image_registry_key = "image-registry"
|
|
|
|
configmaps_key = "configmaps"
|
|
|
|
resources_key = "resources"
|
|
|
|
volumes_key = "volumes"
|
|
|
|
security_key = "security"
|
|
|
|
annotations_key = "annotations"
|
|
|
|
labels_key = "labels"
|
2023-11-20 16:12:57 +00:00
|
|
|
kind_config_filename = "kind-config.yml"
|
|
|
|
kube_config_filename = "kubeconfig.yml"
|