Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 304 for proxyconfig (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    metadata:
      labels:
        istio-injection: enabled
      name: workload-override
    ---
    # ProxyConfig for root namespace
    apiVersion: networking.istio.io/v1beta1
    kind: ProxyConfig
    metadata:
      name: valid-example-pc
      namespace: istio-system
    ---
    # ProxyConfig for ns-override namespace
    apiVersion: networking.istio.io/v1beta1
    kind: ProxyConfig
    metadata:
      name: valid-example-pc
      namespace: ns-override
    spec:
      image:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

    {{- end }}
      }
    spec:
      {{- $holdProxy := and
          (or .ProxyConfig.HoldApplicationUntilProxyStarts.GetValue .Values.global.proxy.holdApplicationUntilProxyStarts)
          (not $nativeSidecar) }}
      initContainers:
      {{ if ne (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) `NONE` }}
      {{ if or .Values.pilot.cni.enabled .Values.istio_cni.enabled -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. pkg/envoy/proxy_test.go

    		BinaryPath:        proxyConfig.BinaryPath,
    		ConfigPath:        proxyConfig.ConfigPath,
    		ConfigCleanup:     true,
    		AdminPort:         proxyConfig.ProxyAdminPort,
    		DrainDuration:     proxyConfig.DrainDuration,
    		Concurrency:       8,
    	}
    
    	test := &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   []string{"-l", "trace", "--component-log-level", "misc:error"},
    	}
    
    	testProxy := NewProxy(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/config/mesh/mesh.go

    func MergeProxyConfig(yaml string, proxyConfig *meshconfig.ProxyConfig) (*meshconfig.ProxyConfig, error) {
    	origMetadata := proxyConfig.ProxyMetadata
    	origProxyHeaders := proxyConfig.ProxyHeaders
    	if err := protomarshal.ApplyYAML(yaml, proxyConfig); err != nil {
    		return nil, fmt.Errorf("could not parse proxy config: %v", err)
    	}
    	newMetadata := proxyConfig.ProxyMetadata
    	proxyConfig.ProxyMetadata = mergeMap(origMetadata, newMetadata)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/model/proxy_test.go

    				t.Fatalf("failed to unmarshal: %v", err)
    			}
    
    			assert.Equal(t, (*meshconfig.ProxyConfig)(meta.NodeMetadata.ProxyConfig), (*meshconfig.ProxyConfig)(tt.inOut.NodeMetadata.ProxyConfig))
    			// cmp cannot handle the type-alias in the metadata, so check them separately.
    			meta.NodeMetadata.ProxyConfig = nil
    			tt.inOut.NodeMetadata.ProxyConfig = nil
    			assert.Equal(t, meta, tt.inOut)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    // health checking for VMs and DNS proxying).
    func NewAgent(proxyConfig *mesh.ProxyConfig, agentOpts *AgentOptions, sopts *security.Options, eopts envoy.ProxyConfig) *Agent {
    	return &Agent{
    		proxyConfig: proxyConfig,
    		cfg:         agentOpts,
    		secOpts:     sopts,
    		envoyOpts:   eopts,
    		fileWatcher: filewatcher.NewWatcher(),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/security.go

    		RootCertFilePath:               security.DefaultRootCertFilePath,
    	}
    
    	o, err := SetupSecurityOptions(proxyConfig, o, jwtPolicy.Get(),
    		credFetcherTypeEnv, credIdentityProvider)
    	if err != nil {
    		return o, err
    	}
    
    	return o, err
    }
    
    func SetupSecurityOptions(proxyConfig *meshconfig.ProxyConfig, secOpt *security.Options, jwtPolicy,
    	credFetcherTypeEnv, credIdentityProvider string,
    ) (*security.Options, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/statusserver.go

    	"istio.io/istio/pkg/model"
    )
    
    func NewStatusServerOptions(ipv6 bool, t model.NodeType, proxyConfig *meshconfig.ProxyConfig, agent *istioagent.Agent) *status.Options {
    	return &status.Options{
    		IPv6:           ipv6,
    		PodIP:          InstanceIPVar.Get(),
    		AdminPort:      uint16(proxyConfig.ProxyAdminPort),
    		StatusPort:     uint16(proxyConfig.StatusPort),
    		KubeAppProbers: kubeAppProberNameVar.Get(),
    		NodeType:       t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top