@@ -163,6 +163,7 @@ type DeploymentValues struct {
163
163
SSHConfig SSHConfig `json:"config_ssh,omitempty" typescript:",notnull"`
164
164
WgtunnelHost clibase.String `json:"wgtunnel_host,omitempty" typescript:",notnull"`
165
165
DisableOwnerWorkspaceExec clibase.Bool `json:"disable_owner_workspace_exec,omitempty" typescript:",notnull"`
166
+ ProxyHealthStatusInterval clibase.Duration `json:"proxy_health_status_interval,omitempty" typescript:",notnull"`
166
167
167
168
Config clibase.YAMLConfigPath `json:"config,omitempty" typescript:",notnull"`
168
169
WriteConfig clibase.Bool `json:"write_config,omitempty" typescript:",notnull"`
@@ -1497,6 +1498,16 @@ Write out the current server config as YAML to stdout.`,
1497
1498
Default : "" , // empty string means pick best server
1498
1499
Hidden : true ,
1499
1500
},
1501
+ {
1502
+ Name : "Proxy Health Check Interval" ,
1503
+ Description : "The interval in which coderd should be checking the status of workspace proxies." ,
1504
+ Flag : "proxy-health-interval" ,
1505
+ Env : "CODER_PROXY_HEALTH_INTERVAL" ,
1506
+ Default : (time .Minute ).String (),
1507
+ Value : & c .ProxyHealthStatusInterval ,
1508
+ Group : & deploymentGroupNetworkingHTTP ,
1509
+ YAML : "proxyHealthInterval" ,
1510
+ },
1500
1511
}
1501
1512
return opts
1502
1513
}
0 commit comments