Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for proxyconfig (0.47 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package proxyconfig
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"regexp"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    	"github.com/spf13/cobra"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top