Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for proxyv2 (0.21 sec)

  1. pkg/kube/inject/inject_test.go

    			},
    		},
    		{
    			in:   "proxy-override.yaml",
    			want: "proxy-override.yaml.injected",
    		},
    		{
    			in:   "explicit-security-context.yaml",
    			want: "explicit-security-context.yaml.injected",
    		},
    		{
    			in:   "only-proxy-container.yaml",
    			want: "only-proxy-container.yaml.injected",
    		},
    		{
    			in:   "proxy-override-args.yaml",
    			want: "proxy-override-args.yaml.injected",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject.go

    }
    
    // imageURL creates url from parts.
    // imageType is appended if not empty
    // if imageType is already present in the tag, then it is replaced.
    // docker.io/istio/proxyv2:1.12-distroless
    // gcr.io/gke-release/asm/proxyv2:1.11.2-asm.17-distroless
    // docker.io/istio/proxyv2:1.12
    func imageURL(hub, imageName, tag, imageType string) string {
    	return hub + "/" + imageName + ":" + updateImageTypeIfPresent(tag, imageType)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
    
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        priorityClassName: ""
        proxy:
          image: proxyv2
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
          clusterDomain: "cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    	}
    
    	tests := []struct {
    		deploymentName string
    		containerName  string
    		want           string
    	}{
    		{
    			deploymentName: "istio-ingressgateway",
    			containerName:  "istio-proxy",
    			want:           "istio-spec.hub/proxyv2:istio-spec.tag",
    		},
    		{
    			deploymentName: "istiod",
    			containerName:  "discovery",
    			want:           "component.pilot.hub/pilot:2",
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string excludeIPRanges = 13;
    
      // Image name or path for the proxy, default: "proxyv2".
      //
      // If registry or tag are not specified, global.hub and global.tag are used.
      //
      // Examples: my-proxy (uses global.hub/tag), docker.io/myrepo/my-proxy:v1.0.0
      string image = 14;
    
      // Lists the IP ranges of Istio egress traffic that the sidecar captures.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/envoy/proxy.go

    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    	logLevel, componentLogs := splitComponentLog(cfg.LogLevel)
    	if logLevel != "" {
    		args = append(args, "-l", logLevel)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cluster/gce/manifests/kube-proxy.manifest

    # Please keep kube-proxy configuration in-sync with:
    # cluster/addons/kube-proxy/kube-proxy-ds.yaml
    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/context.go

    // GetProxyConfigNamespace extracts the namespace associated with the proxy
    // from the proxy metadata or the proxy ID
    func GetProxyConfigNamespace(proxy *Proxy) string {
    	if proxy == nil {
    		return ""
    	}
    
    	// First look for ISTIO_META_CONFIG_NAMESPACE
    	// All newer proxies (from Istio 1.1 onwards) are supposed to supply this
    	if len(proxy.Metadata.Namespace) > 0 {
    		return proxy.Metadata.Namespace
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    [registry.k8s.io/kube-proxy:v1.27.11](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-proxy) | [amd64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-proxy-amd64), [arm64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-proxy-arm64), [ppc64le](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-proxy-ppc64le), [s390x](https://console.cloud.google.com/gcr/images/k8s...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top