Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for csiproxy (0.22 sec)

  1. cluster/gce/windows/configure.ps1

      Configure-Crictl
      Setup-ContainerRuntime
      DownloadAndInstall-KubernetesBinaries
      DownloadAndInstall-NodeProblemDetector
      DownloadAndInstall-CSIProxyBinaries
      DownloadAndInstall-AuthProviderGcpBinary
      Start-CSIProxy
      Create-NodePki
      Create-KubeletKubeconfig
      Create-KubeproxyKubeconfig
      Create-NodeProblemDetectorKubeConfig
      Create-AuthProviderGcpConfig
      Set-PodCidr
      Configure-HostNetworkingService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        }
      }
    }
    
    function Start-CSIProxy {
      if ("${env:ENABLE_CSI_PROXY}" -eq "true") {
        Log-Output "Creating CSI Proxy Service"
        $flags = "-windows-service -log_file=${env:LOGS_DIR}\csi-proxy.log -logtostderr=false ${env:CSI_PROXY_FLAGS}"
        & sc.exe create csiproxy binPath= "${env:NODE_DIR}\csi-proxy.exe $flags"
        & sc.exe failure csiproxy reset= 0 actions= restart/10000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. proguard/concurrent.pro

    -dontnote com.google.appengine.api.ThreadManager
    -keep class com.google.appengine.api.ThreadManager {
      static *** currentRequestThreadFactory(...);
    }
    -dontnote com.google.apphosting.api.ApiProxy
    -keep class com.google.apphosting.api.ApiProxy {
      static *** getCurrentEnvironment (...);
    }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/dns/server/name_table_test.go

    	}
    	nw1proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{Network: "nw1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    	cl1proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{ClusterID: "cl1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    
    	pod1 := &model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pilot/pkg/xds/statusgen.go

    			break
    		}
    		res = dumpRes
    	}
    	return res, model.DefaultXdsLogDetails, nil
    }
    
    // isSidecar ad-hoc method to see if connection represents a sidecar
    func isProxy(con *Connection) bool {
    	return con != nil &&
    		con.proxy != nil &&
    		con.proxy.Metadata != nil &&
    		con.proxy.Metadata.ProxyConfig != nil
    }
    
    func isZtunnel(con *Connection) bool {
    	return con != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    		return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
    	}
    	return proxyURL, nil
    }
    
    // useProxy reports whether requests to addr should use a proxy,
    // according to the NO_PROXY or no_proxy environment variable.
    // addr is always a canonicalAddr with a host and port.
    func (cfg *config) useProxy(addr string) bool {
    	if len(addr) == 0 {
    		return true
    	}
    	host, port, err := net.SplitHostPort(addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	apiproxy "k8s.io/apimachinery/pkg/util/proxy"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    )
    
    // SpdyRoundTripper knows how to upgrade an HTTP request to one that supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/match/matchers.go

    	return i.Config().IsProxylessGRPC()
    }
    
    // NotProxylessGRPC is equivalent to Not(ProxylessGRPC)
    var NotProxylessGRPC = Not(ProxylessGRPC)
    
    var TProxy Matcher = func(i echo.Instance) bool {
    	return i.Config().IsTProxy()
    }
    
    var NotTProxy = Not(TProxy)
    
    var ServiceAddressedWaypoint Matcher = func(i echo.Instance) bool {
    	return i.Config().HasServiceAddressedWaypointProxy()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

        params+=" --advertise-address=${vm_external_ip}"
        if [[ -n "${KUBE_API_SERVER_RUNASUSER:-}" && -n "${KUBE_API_SERVER_RUNASGROUP:-}" ]]; then
          chown -R "${KUBE_API_SERVER_RUNASUSER}":"${KUBE_API_SERVER_RUNASGROUP}" /etc/srv/sshproxy/
        fi
      fi
    
      local webhook_authn_config_mount=""
      local webhook_authn_config_volume=""
      if [[ -n "${GCP_AUTHN_URL:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top