41 lines
2.4 KiB
Go
41 lines
2.4 KiB
Go
package utils
|
|
|
|
var (
|
|
SupportedPrivateGitRepository = []string{"github", "gitlab"}
|
|
)
|
|
|
|
type Configuration struct {
|
|
Version string `required:"true"`
|
|
InfraDeployments string `required:"true" split_words:"true"`
|
|
DbServer string `required:"true" split_words:"true"`
|
|
DbUser string `required:"true" split_words:"true"`
|
|
DbPassword string `required:"true" split_words:"true"`
|
|
SubscriberImage string `required:"true" split_words:"true"`
|
|
EventTrackerImage string `required:"true" split_words:"true"`
|
|
ArgoWorkflowControllerImage string `required:"true" split_words:"true"`
|
|
ArgoWorkflowExecutorImage string `required:"true" split_words:"true"`
|
|
LitmusChaosOperatorImage string `required:"true" split_words:"true"`
|
|
LitmusChaosRunnerImage string `required:"true" split_words:"true"`
|
|
LitmusChaosExporterImage string `required:"true" split_words:"true"`
|
|
ContainerRuntimeExecutor string `required:"true" split_words:"true"`
|
|
WorkflowHelperImageVersion string `required:"true" split_words:"true"`
|
|
ChaosCenterUiEndpoint string `split_words:"true" default:"https://localhost:8080"`
|
|
TlsCertB64 string `split_words:"true"`
|
|
LitmusAuthGrpcEndpoint string `split_words:"true" default:"localhost"`
|
|
LitmusAuthGrpcPort string `split_words:"true" default:":3030"`
|
|
KubeConfigFilePath string `split_words:"true"`
|
|
RemoteHubMaxSize string `split_words:"true"`
|
|
SkipSslVerify string `split_words:"true"`
|
|
HttpPort string `split_words:"true" default:"8080"`
|
|
RpcPort string `split_words:"true" default:"8000"`
|
|
InfraCompatibleVersions string `required:"true" split_words:"true"`
|
|
DefaultHubGitURL string `required:"true" default:"https://github.com/litmuschaos/chaos-charts"`
|
|
DefaultHubBranchName string `required:"true" split_words:"true"`
|
|
CustomChaosHubPath string `split_words:"true" default:"/tmp/"`
|
|
DefaultChaosHubPath string `split_words:"true" default:"/tmp/default/"`
|
|
EnableGQLIntrospection string `split_words:"true" default:"false"`
|
|
AllowedOrigins []string `split_words:"true" default:"^(http://|https://|)litmuschaos.io(:[0-9]+|)?,^(http://|https://|)localhost(:[0-9]+|)"`
|
|
}
|
|
|
|
var Config Configuration
|