Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 184 for Present (0.1 sec)

  1. pilot/pkg/autoregistration/controller.go

    	if cfg == nil {
    		log.Infof("workloadentry %s/%s is not found, maybe deleted or because of propagate latency",
    			proxy.Metadata.Namespace, entryName)
    		// return error and backoff retry to prevent workloadentry leak
    		return false, fmt.Errorf("workloadentry %s/%s is not found", proxy.Metadata.Namespace, entryName)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    				if ac == 0 {
    					log.Info("There are no more active connections. terminating proxy...")
    					a.abortCh <- errAbort
    					break graceful_loop
    				}
    				log.Infof("There are still %d active connections", ac)
    				// reset retry count
    				retryCount = 0
    			}
    		}
    	} else {
    		log.Infof("Graceful termination period is %v, starting...", a.terminationDrainDuration)
    		select {
    		case status := <-a.statusCh:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	// XdsNode is the xDS node identifier
    	XdsNode *core.Node
    
    	workloadEntryName        string
    	workloadEntryAutoCreated bool
    
    	// LastPushContext stores the most recent push context for this proxy. This will be monotonically
    	// increasing in version. Requests should send config based on this context; not the global latest.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    	Label(labels ...label.Instance) Suite
    	// SkipIf skips the suite if the function returns true
    	SkipIf(reason string, fn resource.ShouldSkipFn) Suite
    	// Skip marks a suite as skipped with the given reason. This will prevent any setup functions from occurring.
    	Skip(reason string) Suite
    	// RequireMinClusters ensures that the current environment contains at least the given number of clusters.
    	// Otherwise it stops test execution.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/virtualservice_test.go

    			got := hasConflict(tc.root, tc.leaf)
    			if got != tc.expected {
    				t.Errorf("got %v, expected %v", got, tc.expected)
    			}
    		})
    	}
    }
    
    // Note: this is to prevent missing merge new added HTTPRoute fields
    func TestFuzzMergeHttpRoute(t *testing.T) {
    	f := fuzz.New().NilChance(0.5).NumElements(0, 1).Funcs(
    		func(r *networking.HTTPRoute, c fuzz.Continue) {
    			c.FuzzNoCustom(r)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    		{
    			name:       "default text format",
    			encoding:   meshconfig.MeshConfig_TEXT,
    			wantFormat: model.EnvoyTextLogFormat,
    		},
    	} {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			accessLogBuilder.reset()
    			// Update MeshConfig
    			m := mesh.DefaultMeshConfig()
    			m.AccessLogFile = "foo"
    			m.AccessLogEncoding = tc.encoding
    			m.AccessLogFormat = tc.format
    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. tests/integration/pilot/common/routing.go

    							},
    							Count: 1,
    							Check: check.Status(http.StatusForbidden),
    						}
    					}(),
    				},
    			},
    			workloadAgnostic: true,
    		})
    
    		// allow only when `end-user` header present.
    		t.RunTraffic(TrafficTestCase{
    			name: "without headers regex convert to present_match",
    			config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: vs
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    }
    
    var CheckDeny = check.Or(
    	check.ErrorContains("rpc error: code = PermissionDenied"), // gRPC
    	check.ErrorContains("EOF"),                                // TCP envoy
    	check.ErrorContains("read: connection reset by peer"),     // TCP ztunnel
    	check.NoErrorAndStatus(http.StatusForbidden),              // HTTP
    	check.NoErrorAndStatus(http.StatusServiceUnavailable),     // HTTP client, TCP server
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. manifests/charts/base/README.md

    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/README.md

    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top