Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( //TerraformerURL is a listening URL for Terraformer module TerraformerURL = os.Getenv("TERRAFORMER_HOSTNAME") + ":" + os.Getenv("TERRAFORMER_PORT") //AnsiblerURL is a listening URL for Ansibler module AnsiblerURL = os.Getenv("ANSIBLER_HOSTNAME") + ":" + os.Getenv("ANSIBLER_PORT") //KubeElevenURL is a listening URL for KubeEleven module KubeElevenURL = os.Getenv("KUBE_ELEVEN_HOSTNAME") + ":" + os.Getenv("KUBE_ELEVEN_PORT") //ContextBoxURL is a listening URL for ContextBox module ContextBoxURL = os.Getenv("CONTEXT_BOX_HOSTNAME") + ":" + os.Getenv("CONTEXT_BOX_PORT") //OperatorURL is a listening URL for claudie-operator connection OperatorURL = os.Getenv("OPERATOR_HOSTNAME") + ":" + os.Getenv("OPERATOR_PORT") //DatabaseURL is a listening URL for Database DatabaseURL = "mongodb://" + os.Getenv("DATABASE_USERNAME") + ":" + os.Getenv("DATABASE_PASSWORD") + "@" + os.Getenv("DATABASE_HOSTNAME") + ":" + os.Getenv("DATABASE_PORT") //KuberURL is a listening URL for Kuber module KuberURL = os.Getenv("KUBER_HOSTNAME") + ":" + os.Getenv("KUBER_PORT") //MinioURL is a listening URL for Minio deployment MinioURL = "http://" + os.Getenv("MINIO_HOSTNAME") + ":" + os.Getenv("MINIO_PORT") //DynamoURL is a listening URL for DynamoDB local deployment DynamoURL = "http://" + os.Getenv("DYNAMO_HOSTNAME") + ":" + os.Getenv("DYNAMO_PORT") //DynamoTable is the name of the DB table used for state locking DynamoTable = os.Getenv("DYNAMO_TABLE_NAME") // AwsAccesskeyId is part of credentials needed for connecting to dynamoDB AwsAccesskeyId = os.Getenv("AWS_ACCESS_KEY_ID") // AwsSecretAccessKey is part of credentials needed for connecting to dynamoDB AwsSecretAccessKey = os.Getenv("AWS_SECRET_ACCESS_KEY") // AwsRegion is part of credentials needed for connecting to dynamoDB AwsRegion = os.Getenv("AWS_REGION") //MinioAccessKey for backend MinioAccessKey = os.Getenv("MINIO_ROOT_USER") //MinioSecretKey for backend MinioSecretKey = os.Getenv("MINIO_ROOT_PASSWORD") //Namespace of current deployment //NOTE: namespace should be left empty if env var not been set Namespace = os.Getenv("NAMESPACE") //Golang log level LogLevel = os.Getenv("GOLANG_LOG") )
Hostnames and ports on what services are listening
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.