Skip to content
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 @@ -57,6 +57,7 @@ public class ComputeMetadataJsonConverter : global::System.Text.Json.Serializati
if (__jsonProps.Contains("serveAgentInternalLoadBalancerAllowGlobalAccess")) __score1++;
if (__jsonProps.Contains("serveAgentLoadBalancerSourceRanges")) __score1++;
if (__jsonProps.Contains("serveAgentLoadBalancerSubnetIds")) __score1++;
if (__jsonProps.Contains("serveAgentProxyEndpoint")) __score1++;
if (__jsonProps.Contains("serveAgentServiceType")) __score1++;
if (__jsonProps.Contains("tolerations")) __score1++;
var __bestScore = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ public sealed partial class ComputeMetadataVariant2
[global::System.Text.Json.Serialization.JsonPropertyName("serveAgentInternalLoadBalancer")]
public bool? ServeAgentInternalLoadBalancer { get; set; }

/// <summary>
/// When set, all ingress-related traffic on the services cluster is routed through this proxy endpoint<br/>
/// instead of the serveAgentEndpoint. Used for environments (e.g. FORD HPC) where a local proxy<br/>
/// is needed to bypass Kong. If not set, serveAgentEndpoint is used as the ingress target as today.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("serveAgentProxyEndpoint")]
public string? ServeAgentProxyEndpoint { get; set; }

/// <summary>
///
/// </summary>
Expand Down Expand Up @@ -140,6 +148,11 @@ public sealed partial class ComputeMetadataVariant2
/// AWS: comma-separated public subnet IDs so the NLB is internet-facing when nodes are in private subnets
/// </param>
/// <param name="serveAgentInternalLoadBalancer"></param>
/// <param name="serveAgentProxyEndpoint">
/// When set, all ingress-related traffic on the services cluster is routed through this proxy endpoint<br/>
/// instead of the serveAgentEndpoint. Used for environments (e.g. FORD HPC) where a local proxy<br/>
/// is needed to bypass Kong. If not set, serveAgentEndpoint is used as the ingress target as today.
/// </param>
/// <param name="serveAgentDNS"></param>
/// <param name="cacheRunnerFS"></param>
/// <param name="filestoreServer"></param>
Expand All @@ -161,6 +174,7 @@ public ComputeMetadataVariant2(
bool? serveAgentInternalLoadBalancerAllowGlobalAccess,
global::System.Collections.Generic.IList<string>? serveAgentLoadBalancerSubnetIds,
bool? serveAgentInternalLoadBalancer,
string? serveAgentProxyEndpoint,
string? serveAgentDNS,
string? cacheRunnerFS,
string? filestoreServer,
Expand All @@ -179,6 +193,7 @@ public ComputeMetadataVariant2(
this.ServeAgentInternalLoadBalancerAllowGlobalAccess = serveAgentInternalLoadBalancerAllowGlobalAccess;
this.ServeAgentLoadBalancerSubnetIds = serveAgentLoadBalancerSubnetIds;
this.ServeAgentInternalLoadBalancer = serveAgentInternalLoadBalancer;
this.ServeAgentProxyEndpoint = serveAgentProxyEndpoint;
this.ServeAgentDNS = serveAgentDNS;
this.CacheRunnerFS = cacheRunnerFS;
this.FilestoreServer = filestoreServer;
Expand Down
4 changes: 4 additions & 0 deletions src/libs/Dataloop/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17010,6 +17010,10 @@
"serveAgentInternalLoadBalancer": {
"type": "boolean"
},
"serveAgentProxyEndpoint": {
"type": "string",
"description": "When set, all ingress-related traffic on the services cluster is routed through this proxy endpoint\ninstead of the serveAgentEndpoint. Used for environments (e.g. FORD HPC) where a local proxy\nis needed to bypass Kong. If not set, serveAgentEndpoint is used as the ingress target as today."
},
"serveAgentDNS": {
"type": "string"
},
Expand Down