Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 390 for It (0.02 sec)

  1. prow/config/calico.yaml

                      connect-time load balancer is required for the host to be able to
                      reach Kubernetes services and it improves the performance of pod-to-service
                      connections.  The only reason to disable it is for debugging purposes.
                      This will be deprecated. Use BPFConnectTimeLoadBalancing [Default:
                      true]'
                    type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/settings.go

    	SelectorString string
    
    	// The regex specifying which tests to skip. This follows inverted semantics of golang's
    	// -test.run flag, which only supports positive match. If an entire package is meant to be
    	// excluded, it can be filtered with `go list` and explicitly passing the list of desired
    	// packages. For example: `go test $(go list ./... | grep -v bad-package)`.
    	SkipString  ArrayFlags
    	SkipMatcher *Matcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    		// Code defaults
    		BinaryPath:     constants.BinaryPathFilename,
    		StatNameLength: 189,
    		StatusPort:     15020,
    	}
    }
    
    // DefaultMeshNetworks returns a default meshnetworks configuration.
    // By default, it is empty.
    func DefaultMeshNetworks() *meshconfig.MeshNetworks {
    	return ptr.Of(EmptyMeshNetworks())
    }
    
    // DefaultMeshConfig returns the default mesh config.
    // This is merged with values from the mesh config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. tests/integration/security/pass_through_filter_chain_test.go

    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    )
    
    // Analyze implements Analyzer
    func (s *ExternalControlPlaneAnalyzer) Analyze(c analysis.Context) {
    	reportWebhookURL := func(r *resource.Instance, hName string, clientConf v1.WebhookClientConfig) {
    		// If defined, it means that an external istiod has been adopted
    		if clientConf.URL != nil {
    			result, err := lintWebhookURL(*clientConf.URL)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/lds.go

    //
    // See: xds/internal/httpfilter/rbac
    //
    // TODO: gRPC also supports 'per route override' - not yet clear how to use it, Istio uses path expressions instead and we don't generate
    // vhosts or routes for the inbound listener.
    //
    // For gateways it would make a lot of sense to use this concept, same for moving path prefix at top level ( more scalable, easier for users)
    // This should probably be done for the v2 API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              pid="$$$$"
    
              # Run the pilot agent and Envoy
              # TODO: run with systemctl?
              # Setup a script to start istio but exit the container if it exits. This more closely mirrors Pods.
              # This is not strictly needed, but it makes our CI properly report crashes (including core dumps)
              cat <<'EOF'>/tmp/start.sh
              #!/bin/bash
              /usr/local/bin/istio-start.sh
              kill "$1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/cni-watcher.go

    	log.Debugf("netns: %s", addCmd.Netns)
    
    	// The CNI node plugin should have already checked the pod against the k8s API before forwarding us the event,
    	// but we have to invoke the K8S client anyway, so to be safe we check it again here to make sure we get the same result.
    	ambientPod, err := s.getPodWithRetry(log, addCmd.PodName, addCmd.PodNamespace)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/kube/util.go

    // BuildClientConfig builds a client rest config from a kubeconfig filepath and context.
    // It overrides the current context with the one provided (empty to use default).
    //
    // This is a modified version of k8s.io/client-go/tools/clientcmd/BuildConfigFromFlags with the
    // difference that it loads default configs if not running in-cluster.
    func BuildClientConfig(kubeconfig, context string) (*rest.Config, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. manifests/charts/base/templates/default.yaml

              - extensions.istio.io
            apiVersions:
              - "*"
            resources:
              - "*"
    
        {{- if .Values.base.validationCABundle }}
        # Disable webhook controller in Pilot to stop patching it
        failurePolicy: Fail
        {{- else }}
        # Fail open until the validation webhook is ready. The webhook controller
        # will update this to `Fail` and patch in the `caBundle` when the webhook
        # endpoint is ready.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top