Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for csiproxy (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    		{
    			name:            "dual-stack host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "dual-stack host: defaultEndpoint set to [::1]:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "[::1]:7073",
    			expectedAddr:    "::1",
    			expectedPort:    7073,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    			d.Authenticate = auth.Authenticate
    		}
    		if _, err := d.DialWithConn(ctx, conn, "tcp", cm.targetAddr); err != nil {
    			conn.Close()
    			return nil, err
    		}
    	case cm.targetScheme == "http":
    		pconn.isProxy = true
    		if pa := cm.proxyAuth(); pa != "" {
    			pconn.mutateHeaderFunc = func(h Header) {
    				h.Set("Proxy-Authorization", pa)
    			}
    		}
    	case cm.targetScheme == "https":
    		conn := pconn.conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      ln -s -f "${mount_point}/srv/kubernetes" /etc/srv/kubernetes
      # Directory for kube-apiserver to store SSH key (if necessary).
      mkdir -p "${mount_point}/srv/sshproxy"
      ln -s -f "${mount_point}/srv/sshproxy" /etc/srv/sshproxy
    
      chown -R etcd "${mount_point}/var/etcd"
      chgrp -R etcd "${mount_point}/var/etcd"
    }
    
    # append_or_replace_prefixed_line ensures:
    # 1. the specified file exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (1)
Back to top