Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Mathis (0.07 sec)

  1. pkg/log/options.go

    	// OutputPaths is a list of file system paths to write the log data to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stdout.
    	OutputPaths []string
    
    	// ErrorOutputPaths is a list of file system paths to write logger errors to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stderr.
    	ErrorOutputPaths []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag"),
    			want: "private-repo/istio/proxyv2:1.12-this-is-unusual-tag",
    		},
    		{
    			desc: "unusual tag should work, default override",
    			v:    val("private-repo/istio", "1.12-this-is-unusual-tag-distroless"),
    			pc:   pc("default"),
    			want: "private-repo/istio/proxyv2:1.12-this-is-unusual-tag",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/settings.go

    // from the provided k8s config files.
    type ClientFactoryFunc func(kubeConfigs []string) ([]istioKube.CLIClient, error)
    
    // Settings provide kube-specific Settings from flags.
    type Settings struct {
    	// An array of paths to kube config files. Required if the environment is kubernetes.
    	KubeConfig []string
    
    	// Indicates that the LoadBalancer services can obtain a public IP. If not, NodePort be used as a workaround
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. cni/pkg/repair/netns.go

    // it might be.
    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    // * /var/lib/cni/results shows the outputs of CNI plugins; this containers the bind-mounted network namespace file.
    //
    // Instead, we traverse the procfs. Comments on this method are inline.
    func getPodNetNs(pod *corev1.Pod) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	// TODO we should derive this from IngressClass
    	IstioIngressLabelValue = "ingressgateway"
    
    	// IstioSystemNamespace is the namespace where Istio's components are deployed
    	IstioSystemNamespace = "istio-system"
    
    	// DefaultAuthenticationPolicyName is the name of the cluster-scoped authentication policy. Only
    	// policy with this name in the cluster-scoped will be considered.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    		// Multi-network is not configured (this is the case by default). Just access all endpoints directly.
    		return endpoints
    	}
    
    	// A new array of endpoints to be returned that will have both local and
    	// remote gateways (if any)
    	filtered := make([]*LocalityEndpoints, 0)
    
    	// Scale all weights by the lcm of gateways per network and gateways per cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    					errs = appendErrors(errs, security.CheckEmptyValues("Ports", op.Ports))
    					errs = appendErrors(errs, security.CheckEmptyValues("Methods", op.Methods))
    					errs = appendErrors(errs, security.CheckEmptyValues("Paths", op.Paths))
    					errs = appendErrors(errs, security.CheckEmptyValues("Hosts", op.Hosts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPorts", op.NotPorts))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/config/model.go

    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    	configEnv, f := lbls[label.IoIstioRev.Name]
    	if !f {
    		// This is a global object, and always included
    		return true
    	}
    	// If the revision is empty, this means we don't specify a revision, and
    	// we should always include it
    	if rev == "" {
    		return true
    	}
    	// Otherwise, only return true if revisions equal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. pkg/envoy/proxy.go

    	}
    
    	// Explicitly enable core dumps. This may be desirable more often (by default), but for now we only set it in VM tests.
    	if enableEnvoyCoreDump {
    		args = append(args, "--enable-core-dump")
    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    	}
    }
    
    // splitComponentLog breaks down an argument string into a log level (ie "info") and component log levels (ie "misc:error").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. cni/pkg/ipset/nldeps_linux.go

    }
    
    // Alpine and some distros struggles with this - ipset CLI utilities support this, but
    // the kernel can be out of sync with the CLI utility, leading to errors like:
    //
    // ipset v7.10: Argument `comment' is supported in the kernel module of the set type hash:ip
    // starting from the revision 3 and you have installed revision 1 only.
    // Your kernel is behind your ipset utility.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top