Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 312 for It (1.81 sec)

  1. pilot/pkg/features/pilot.go

    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/environment/kube/flags.go

    	}
    
    	s.configTopology, err = newConfigTopology()
    	if err != nil {
    		return nil, err
    	}
    
    	return s, nil
    }
    
    func getKubeConfigsFromEnvironment() ([]string, error) {
    	// Normalize KUBECONFIG so that it is separated by the OS path list separator.
    	// The framework currently supports comma as a separator, but that violates the
    	// KUBECONFIG spec.
    	value := env.KUBECONFIG.Value()
    	if strings.Contains(value, ",") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "pod1", "pod2", "name1", "name2")
    	// we should see an update for the workloads selected by the service entry
    	// do not expect event for pod2 since it is not selected by the service entry
    	s.assertEvent(t, s.podXdsName("pod1"), s.wleXdsName("name0"), s.wleXdsName("name1"), "ns1/se.istio.io")
    
    	assert.Equal(t, s.lookup(s.addrXdsName("140.140.0.10")), []model.AddressInfo{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. tests/integration/ambient/waypoint_test.go

    			gwc, _ := client.Get(context.Background(), constants.WaypointGatewayClassName, metav1.GetOptions{})
    			gwc.Status.Conditions = nil
    			client.Update(context.Background(), gwc, metav1.UpdateOptions{})
    			// It should be added back
    			retry.UntilSuccessOrFail(t, check)
    		})
    }
    
    func TestWaypoint(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier.go

    	config.JwtOutputPayloadLocations = nil
    	p := config.Policy
    	// Reset origins to use with beta API
    	// nolint: staticcheck
    	p.Origins = []*authn_alpha.OriginAuthenticationMethod{}
    	// Always set to true for beta API, as it doesn't doe rejection on missing token.
    	// nolint: staticcheck
    	p.OriginIsOptional = true
    
    	// Always bind request.auth.principal from JWT origin. In v2 policy, authorization config specifies what principal to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/configmap.go

    				return err
    			}
    
    			cfgMap, err := mc.getConfigMap(c, cfgMapName)
    			if err != nil {
    				// Remote clusters typically don't have mesh config, allow it to skip
    				if c.IsRemote() && kerrors.IsNotFound(err) {
    					scopes.Framework.Infof("skipped %s meshconfig patch, as it is a remote", c.Name())
    					return nil
    				}
    				return err
    			}
    
    			// Get the MeshConfig yaml from the config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. pkg/log/scope_test.go

    	}
    }
    
    func TestFind(t *testing.T) {
    	if z := FindScope("TestFind"); z != nil {
    		t.Error("Found scope, but expected it wouldn't exist")
    	}
    
    	_ = RegisterScope("TestFind", "")
    
    	if z := FindScope("TestFind"); z == nil {
    		t.Error("Did not find scope, expected to find it")
    	}
    }
    
    func TestBadNames(t *testing.T) {
    	badNames := []string{
    		"a:b",
    		"a,b",
    		"a.b",
    
    		":ab",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    			// netns == ""; at this point netns should have been added via the initial snapshot,
    			// or via the cni plugin. If it happens to get here before the cni plugin somehow,
    			// then we will just fail to add the pod to the mesh, and it will be retried later when cni plugin adds it.
    
    			// We need a pod IP - if the pod was added via the CNI plugin, that plugin told us the IPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
      // +optional
      optional string reason = 2;
    
      // EvaluationError is an indication that some error occurred during the authorization check.
      // It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top