File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11workers = 8
22max_blocking = 64
3- ident = " Dstack Gateway"
3+ ident = " dstack Gateway"
44temp_dir = " /tmp"
55keep_alive = 10
66log_level = " info"
Original file line number Diff line number Diff line change 11[default ]
22workers = 8
33max_blocking = 64
4- ident = " Dstack guest agent"
4+ ident = " dstack guest agent"
55temp_dir = " /tmp"
66keep_alive = 10
77log_level = " debug"
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff line change 11[default ]
22workers = 8
33max_blocking = 64
4- ident = " Dstack Simulator"
4+ ident = " dstack Simulator"
55temp_dir = " /tmp"
66keep_alive = 10
77log_level = " debug"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ impl RpcCall<App> for HostApiHandler {
3131impl 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)
Original file line number Diff line number Diff line change 11workers = 8
22max_blocking = 64
3- ident = " Dstack VMM"
3+ ident = " dstack VMM"
44temp_dir = " /tmp"
55keep_alive = 10
66log_level = " debug"
@@ -79,7 +79,7 @@ detached = false
7979auto_start = true
8080
8181[host_api ]
82- ident = " Dstack VMM"
82+ ident = " dstack VMM"
8383address = " vsock:2"
8484port = 10000
8585
You can’t perform that action at this time.
0 commit comments