Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for proxyutil (0.27 sec)

  1. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        args:
        - istio-iptables
        - "-p"
        - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
        - "-z"
        - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
        - "-u"
        - {{ .ProxyUID | default "1337" | quote }}
        - "-m"
        - "{{ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode }}"
        - "-i"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/constants/constants.go

    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    	EnvoyPort                 = "envoy-port"
    	InboundCapturePort        = "inbound-capture-port"
    	InboundTunnelPort         = "inbound-tunnel-port"
    	ProxyUID                  = "proxy-uid"
    	ProxyGID                  = "proxy-gid"
    	KubeVirtInterfaces        = "kube-virt-interfaces"
    	DryRun                    = "dry-run"
    	TraceLogging              = "iptables-trace-logging"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. internal/logger/target/http/http.go

    	} else {
    		h.payloadType = "application/json"
    	}
    
    	// If proxy available, set the same
    	if h.config.Proxy != "" {
    		proxyURL, _ := url.Parse(h.config.Proxy)
    		transport := h.config.Transport
    		ctransport := transport.(*http.Transport).Clone()
    		ctransport.Proxy = http.ProxyURL(proxyURL)
    		h.config.Transport = ctransport
    	}
    
    	h.client = &http.Client{Transport: h.config.Transport}
    	return h, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/files/injection-template.yaml

        args:
        - istio-iptables
        - "-p"
        - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
        - "-z"
        - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
        - "-u"
        - {{ .ProxyUID | default "1337" | quote }}
        - "-m"
        - "{{ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode }}"
        - "-i"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		ClusterID:      d.clusterID.String(),
    
    		KubeVersion:               kube.GetVersionAsInt(d.client),
    		Revision:                  d.revision,
    		ServiceType:               serviceType,
    		ProxyUID:                  proxyUID,
    		ProxyGID:                  proxyGID,
    		CompliancePolicy:          common_features.CompliancePolicy,
    		InfrastructureLabels:      gw.GetLabels(),
    		InfrastructureAnnotations: gw.GetAnnotations(),
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	if cfg.RedirectDNS {
    		ownerGroupsFilter := types.ParseInterceptFilter(cfg.OwnerGroupsInclude, cfg.OwnerGroupsExclude)
    
    		common.HandleDNSUDP(common.DeleteOps, builder.NewIptablesRuleBuilder(nil), ext, iptV, ipt6V, cfg.ProxyUID, cfg.ProxyGID,
    			cfg.DNSServersV4, cfg.DNSServersV6, cfg.CaptureAllDNS, ownerGroupsFilter)
    	}
    }
    
    func (c *IptablesCleaner) Run() {
    	defer func() {
    		_ = c.ext.Run(constants.IPTablesSave, c.iptV, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

    import org.apache.maven.settings.crypto.SettingsDecryptionRequest;
    import org.apache.maven.settings.crypto.SettingsDecryptionResult;
    import org.apache.maven.wagon.proxy.ProxyInfo;
    import org.apache.maven.wagon.proxy.ProxyUtils;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    import org.codehaus.plexus.logging.Logger;
    import org.eclipse.aether.RepositorySystemSession;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    		Revision:                 params.revision,
    		ProxyImage:               ProxyImage(params.valuesConfig.asStruct, params.proxyConfig.Image, strippedPod.Annotations),
    		ProxyUID:                 proxyUID,
    		ProxyGID:                 proxyGID,
    		InboundTrafficPolicyMode: InboundTrafficPolicyMode(meshConfig),
    		CompliancePolicy:         common_features.CompliancePolicy,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    		RootCAs:      certPool,
    	}, nil
    }
    
    func getProxyAddress(urlString string) (string, error) {
    	proxyURL, err := url.Parse(urlString)
    	if err != nil {
    		return "", fmt.Errorf("invalid proxy server url %q: %v", urlString, err)
    	}
    	return proxyURL.Host, nil
    }
    
    func connectionToDialerCreator(c apiserver.Connection) (*dialerCreator, error) {
    	switch c.ProxyProtocol {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. pkg/probe/http/http.go

    	// We do not want the probe use node's local proxy set.
    	transport := utilnet.SetTransportDefaults(
    		&http.Transport{
    			TLSClientConfig:    config,
    			DisableKeepAlives:  true,
    			Proxy:              http.ProxyURL(nil),
    			DisableCompression: true, // removes Accept-Encoding header
    			// DialContext creates unencrypted TCP connections
    			// and is also used by the transport for HTTPS connection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top