Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(masa-satck-config): NAMESPACE rename MASA_NAMESPACE #630

Merged
merged 2 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ namespace Masa.BuildingBlocks.StackSdks.Config;

public static class MasaStackConfigConstant
{
public const string VERSION = "VERSION";
public const string VERSION = "MASA_VERSION";
public const string ELASTIC = "ELASTIC";
public const string ENVIRONMENT = "ENVIRONMENT";
public const string ENVIRONMENT = "MASA_ENVIRONMENT";
public const string IS_DEMO = "IS_DEMO";
public const string REDIS = "REDIS";
public const string CLUSTER = "CLUSTER";
public const string CLUSTER = "MASA_CLUSTER";
public const string DOMAIN_NAME = "DOMAIN_NAME";
public const string NAMESPACE = "NAMESPACE";
public const string NAMESPACE = "MASA_NAMESPACE";
public const string CONNECTIONSTRING = "CONNECTIONSTRING";
public const string MASA_STACK = "MASA_STACK";
public const string OTLP_URL = "OTLP_URL";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"CLUSTER": "Default",
"MASA_CLUSTER": "Default",
"CONNECTIONSTRING": "{\"Server\": \"masastack-sqlserver.masastack\", \"port\": 1433,\"Database\":\"\",\"UserId\": \"sa\",\"Password\":\"p@ssw0rd\"}",
"DOMAIN_NAME": "masastack.com",
"ELASTIC": "{\"Nodes\": [\"masastack-es.masastack\"],\"Index\": \"user_dev\"}",
"IS_DEMO": "true",
"MASA_STACK": "[{\"id\":\"pm\",\"service\":{\"id\":\"pm-service\",\"domain\":\"pm-staging.masastack\"},\"web\":{\"id\":\"pm-web\",\"domain\":\"pm.masastack.com\"}},{\"id\":\"dcc\",\"service\":{\"id\":\"dcc-service\",\"domain\":\"dcc-staging.masastack\"},\"web\":{\"id\":\"dcc-web\",\"domain\":\"\"}},{\"id\":\"tsc\",\"service\":{\"id\":\"tsc-service\",\"domain\":\"\"},\"web\":{\"id\":\"tsc-web\",\"domain\":\"\"}},{\"id\":\"alert\",\"service\":{\"id\":\"alert-service\",\"domain\":\"\"},\"web\":{\"id\":\"alert-web\",\"domain\":\"\"}},{\"id\":\"scheduler\",\"service\":{\"id\":\"scheduler-service\",\"domain\":\"\"},\"worker\":{\"id\":\"scheduler-worker\",\"domain\":\"\"},\"web\":{\"id\":\"scheduler-web\",\"domain\":\"\"}},{\"id\":\"mc\",\"service\":{\"id\":\"mc-service\",\"domain\":\"\"},\"web\":{\"id\":\"mc-web\",\"domain\":\"\"}},{\"id\":\"auth\",\"service\":{\"id\":\"auth-service\",\"domain\":\"\"},\"web\":{\"id\":\"auth-web\",\"domain\":\"\"},\"sso\":{\"id\":\"auth-sso\",\"domain\":\"\"}}]",
"OTLP_URL": "otel-collector.masastack:9013",
"REDIS": "{\"RedisHost\": \"localhost\", \"RedisPort\": 6379, \"RedisDb\": 0,\"RedisPassword\": \"\"}",
"VERSION": "1.0-Preview1",
"ENVIRONMENT": "Development",
"NAMESPACE": "masastack",
"MASA_VERSION": "1.0-Preview1",
"MASA_ENVIRONMENT": "Development",
"MASA_NAMESPACE": "masastack",
"ADMIN_PWD": "admin_pwd",
"DCC_SECRET": "dcc_secret",
"SUFFIX_IDENTITY": "dev"
Expand Down