Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for It (0.02 sec)

  1. pkg/test/kube/dump.go

    					validationContainer.IsContainer(container) || strings.HasPrefix(pod.Name, "istio-cni-node") {
    					// This is only called if the test failed, so we cannot mark it as "failed" again. Instead, output
    					// a log which will get highlighted in the test logs
    					// TODO proper analysis of restarts to ensure we do not miss crashes when tests still pass.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller.go

    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    		scope.Infof("Skip patching webhook, not found")
    		return nil
    	}
    
    	scope.Debugf("Reconcile(enter)")
    	defer func() { scope.Debugf("Reconcile(exit)") }()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    	StrictMatch bool
    	// If set, this will mark a test as skipped. Note the result is still checked first - we skip only
    	// if we pass the test. This is to ensure that if the behavior changes, we still capture it; the skip
    	// just ensures we notice a test is wrong
    	Skip string
    	t    test.Failer
    }
    
    func (r Result) Matches(t *testing.T, want Result) {
    	t.Helper()
    	r.StrictMatch = want.StrictMatch // to make diff pass
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds_test.go

    			resources: []string{"kubernetes://generic"},
    			request:   &model.PushRequest{Full: true},
    			// Should get a response, but it will be empty
    			expect: map[string]Expected{},
    			accessReviewResponse: func(action k8stesting.Action) (bool, runtime.Object, error) {
    				return true, nil, errors.New("not authorized")
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
      // There may be multiple addresses for a single service if it resides in multiple networks,
      // multiple clusters, and/or if it's dual stack (TODO: support dual stack).
      // For a headless kubernetes service, this list will be empty.
      repeated NetworkAddress addresses = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

                    json_format:
                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pkg/test/framework/test.go

    	RequireKubernetesMinorVersion(minorVersion uint) Test
    	// RequiresMinClusters ensures that the current environment contains at least the expected number of clusters.
    	// Otherwise it stops test execution and skips the test.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequiresMinClusters(minClusters int) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tests/integration/pilot/ingress_test.go

    					defaultIngress.CallOrFail(t, c.call)
    				})
    			}
    		})
    }
    
    // TestCustomGateway deploys a simple gateway deployment, that is fully injected, and verifies it can startup and send traffic
    func TestCustomGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    			if t.Settings().Compatibility {
    				inject = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    // Each service has a fully qualified domain name (FQDN) and one or more
    // ports where the service is listening for connections. *Optionally*, a
    // service can have a single load balancer/virtual IP address associated
    // with it, such that the DNS queries for the FQDN resolves to the virtual
    // IP address (a load balancer IP).
    //
    // E.g., in kubernetes, a service foo is associated with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    				80: true,
    				82: true,
    				// This is 'auto', but for STRICT we always get requests over TLS so HTTP inspector is not in play
    				81: true,
    				// Even for passthrough, we do not need HTTP inspector because it is handled by TLS inspector
    				1000: true,
    			},
    			tls: map[int]bool{
    				// strict mode: inspector is set everywhere.
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top