1 instantiation of ContainerNetworkTunnelProxy
Aspire.Hosting (1)
Dcp\Model\ContainerTunnel.cs (1)
267var tp = new ContainerNetworkTunnelProxy(new ContainerNetworkTunnelProxySpec());
9 references to ContainerNetworkTunnelProxy
Aspire.Hosting (9)
Dcp\DcpExecutor.cs (5)
238await CreateAllDcpObjectsAsync<ContainerNetworkTunnelProxy>(ct).ConfigureAwait(false); 918var containerTunnelProxies = _appResources.Where(r => r.DcpResource is ContainerNetworkTunnelProxy { }).ToImmutableArray(); 921var containerNetworkName = (ctp.DcpResource as ContainerNetworkTunnelProxy)?.Spec.ContainerNetworkName; 1272ContainerNetworkTunnelProxy? tunnelProxy = null; 1277tunnelProxy = ContainerNetworkTunnelProxy.Create(KnownNetworkIdentifiers.DefaultAspireContainerNetwork.Value + "-tunnelproxy");
Dcp\Model\ContainerTunnel.cs (3)
100/// Represents the status of a single tunnel managed by <see cref="ContainerNetworkTunnelProxy"/>. 265public static ContainerNetworkTunnelProxy Create(string name) 267var tp = new ContainerNetworkTunnelProxy(new ContainerNetworkTunnelProxySpec());
Dcp\Model\GroupVersion.cs (1)
44Schema.Add<ContainerNetworkTunnelProxy>(ContainerNetworkTunnelProxyKind, "containernetworktunnelproxies");