Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 304 for proxyconfig (0.16 sec)

  1. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.injected

                  fieldPath: status.hostIP
            - name: ISTIO_CPU_LIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {"holdApplicationUntilProxyStarts":false}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                    {"name":"http","containerPort":80}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

                  valueFrom:
                    resourceFieldRef:
                      resource: limits.cpu
                - name: PROXY_CONFIG
                  value: |
                         {{ protoToJSON .ProxyConfig }}
                {{- if .ProxyConfig.ProxyMetadata }}
                {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
                - name: {{ $key }}
                  value: "{{ $value }}"
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  5. pilot/pkg/model/proxy_config.go

    	}
    	return proxyconfigs
    }
    
    func (p *ProxyConfigs) mergedGlobalConfig() *meshconfig.ProxyConfig {
    	return p.mergedNamespaceConfig(p.rootNamespace)
    }
    
    // mergedNamespaceConfig merges ProxyConfig resources matching the given namespace.
    func (p *ProxyConfigs) mergedNamespaceConfig(namespace string) *meshconfig.ProxyConfig {
    	for _, pc := range p.namespaceToProxyConfigs[namespace] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pilot/pkg/model/proxy_config_test.go

    	}{
    		{
    			name: "concurrency",
    			first: &meshconfig.ProxyConfig{
    				Concurrency: v(1),
    			},
    			second: &meshconfig.ProxyConfig{
    				Concurrency: v(2),
    			},
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: v(1),
    			},
    		},
    		{
    			name: "concurrency value 0",
    			first: &meshconfig.ProxyConfig{
    				Concurrency: v(0),
    			},
    			second: &meshconfig.ProxyConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/config/config.go

    	}
    	meshConfig, err := getMeshConfig(fileMeshContents, annotations[annotation.ProxyConfig.Name], proxyConfigEnv)
    	if err != nil {
    		return nil, err
    	}
    	proxyConfig := mesh.DefaultProxyConfig()
    	if meshConfig.DefaultConfig != nil {
    		proxyConfig = meshConfig.DefaultConfig
    	}
    
    	// Concurrency wasn't explicitly set
    	if proxyConfig.Concurrency == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    		PrivateKeyProvider:     nil,
    	}
    
    	modify := func(config *meshconfig.ProxyConfig, fieldSetter func(*meshconfig.ProxyConfig)) *meshconfig.ProxyConfig {
    		clone := proto.Clone(config).(*meshconfig.ProxyConfig)
    		fieldSetter(clone)
    		return clone
    	}
    
    	cases := []struct {
    		name    string
    		in      *meshconfig.ProxyConfig
    		isValid bool
    	}{
    		{
    			name:    "empty proxy config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    			}
    
    			// If we are using a custom template file (for control plane proxy, for example), configure this.
    			if proxyArgs.TemplateFile != "" && proxyConfig.CustomConfigFile == "" {
    				proxyConfig.ProxyBootstrapTemplatePath = proxyArgs.TemplateFile
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/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)
Back to top