diff --git a/internal/api/v1/docs/swagger.json b/internal/api/v1/docs/swagger.json index d046d632..e03c1ae1 100644 --- a/internal/api/v1/docs/swagger.json +++ b/internal/api/v1/docs/swagger.json @@ -5442,6 +5442,7 @@ "x-nullable": true }, "inbound_mtls_profile": { + "description": "HTTP-based routes only: must match a configured inbound_mtls_profiles entry and is ignored when entrypoint.inbound_mtls_profile is set", "type": "string", "x-nullable": false, "x-omitempty": false diff --git a/internal/api/v1/docs/swagger.yaml b/internal/api/v1/docs/swagger.yaml index d3f04804..92baca11 100644 --- a/internal/api/v1/docs/swagger.yaml +++ b/internal/api/v1/docs/swagger.yaml @@ -1053,6 +1053,8 @@ definitions: - $ref: '#/definitions/IdlewatcherConfig' x-nullable: true inbound_mtls_profile: + description: 'HTTP-based routes only: must match a configured inbound_mtls_profiles + entry and is ignored when entrypoint.inbound_mtls_profile is set' type: string index: description: Index file to serve for single-page app mode @@ -1838,12 +1840,12 @@ definitions: type: string kernel_version: type: string + load_avg_5m: + type: string load_avg_15m: type: string load_avg_1m: type: string - load_avg_5m: - type: string mem_pct: type: string mem_total: diff --git a/internal/route/route.go b/internal/route/route.go index 92f77dbc..e465560f 100644 --- a/internal/route/route.go +++ b/internal/route/route.go @@ -56,7 +56,7 @@ type ( Index string `json:"index,omitempty"` // Index file to serve for single-page app mode route.HTTPConfig - InboundMTLSProfile string `json:"inbound_mtls_profile,omitempty"` + InboundMTLSProfile string `json:"inbound_mtls_profile,omitempty"` // HTTP-based routes only: must match a configured inbound_mtls_profiles entry and is ignored when entrypoint.inbound_mtls_profile is set PathPatterns []string `json:"path_patterns,omitempty" extensions:"x-nullable"` Rules rules.Rules `json:"rules,omitempty" extensions:"x-nullable"` RuleFile string `json:"rule_file,omitempty" extensions:"x-nullable"`