Skip to content

Commit fccd83d

Browse files
committed
maybe dangerous changes
1 parent f02ee3a commit fccd83d

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

gateway/gateway.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
workers = 8
22
max_blocking = 64
3-
ident = "Dstack Gateway"
3+
ident = "dstack Gateway"
44
temp_dir = "/tmp"
55
keep_alive = 10
66
log_level = "info"

guest-agent/dstack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[default]
22
workers = 8
33
max_blocking = 64
4-
ident = "Dstack guest agent"
4+
ident = "dstack guest agent"
55
temp_dir = "/tmp"
66
keep_alive = 10
77
log_level = "debug"

kms/src/main_service.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,8 @@ impl RpcHandler {
477477
.context("Failed to derive app disk key")?;
478478
let req = CertRequest::builder()
479479
.key(&app_key)
480-
.org_name("Dstack")
481-
.subject("Dstack App CA")
480+
.org_name("dstack")
481+
.subject("dstack App CA")
482482
.ca_level(0)
483483
.app_id(app_id)
484484
.special_usage("app:ca")

kms/src/onboard_service.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,17 @@ impl Keys {
124124
quote_enabled: bool,
125125
) -> Result<Self> {
126126
let tmp_ca_cert = CertRequest::builder()
127-
.org_name("Dstack")
128-
.subject("Dstack Client Temp CA")
127+
.org_name("dstack")
128+
.subject("dstack Client Temp CA")
129129
.ca_level(0)
130130
.key(&tmp_ca_key)
131131
.build()
132132
.self_signed()?;
133133

134134
// Create self-signed KMS cert
135135
let ca_cert = CertRequest::builder()
136-
.org_name("Dstack")
137-
.subject("Dstack KMS CA")
136+
.org_name("dstack")
137+
.subject("dstack KMS CA")
138138
.ca_level(1)
139139
.key(&ca_key)
140140
.build()

sdk/simulator/dstack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[default]
22
workers = 8
33
max_blocking = 64
4-
ident = "Dstack Simulator"
4+
ident = "dstack Simulator"
55
temp_dir = "/tmp"
66
keep_alive = 10
77
log_level = "debug"

vmm/src/host_api_service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl RpcCall<App> for HostApiHandler {
3131
impl HostApiRpc for HostApiHandler {
3232
async fn info(self) -> Result<HostInfo> {
3333
let host_info = HostInfo {
34-
name: "Dstack VMM".to_string(),
34+
name: "dstack VMM".to_string(),
3535
version: env!("CARGO_PKG_VERSION").to_string(),
3636
};
3737
Ok(host_info)

vmm/vmm.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
workers = 8
22
max_blocking = 64
3-
ident = "Dstack VMM"
3+
ident = "dstack VMM"
44
temp_dir = "/tmp"
55
keep_alive = 10
66
log_level = "debug"
@@ -79,7 +79,7 @@ detached = false
7979
auto_start = true
8080

8181
[host_api]
82-
ident = "Dstack VMM"
82+
ident = "dstack VMM"
8383
address = "vsock:2"
8484
port = 10000
8585

0 commit comments

Comments
 (0)