Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for Present (0.1 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	PeerAuths krt.Collection[*securityclient.PeerAuthentication],
    	meshCfg *MeshConfig,
    	workloadLabels map[string]string,
    	workloadNamespace string,
    ) []string {
    	// We need to filter from the policies that are present, which apply to us.
    	// We only want label selector ones; global ones are not attached to the final WorkloadInfo
    	// In general we just take all of the policies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
      // currentAverageValue is the current value of the average of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. pilot/pkg/trustbundle/trustbundle_test.go

    		t.Errorf("trustbundle intermediate cert update test failed. Callback value is %v", cbCounter)
    	}
    
    	// Try adding one more cert to a different source
    	// Ensure both certs are not present
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{rootCACert}},
    		Source:            SourceIstioCA,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/analysis/analysis_test.go

    			if err != nil {
    				t.Error(err)
    			}
    			// we should have all the conditions present
    			retry.UntilSuccessOrFail(t, func() error {
    				// should update
    				return expectWorkloadEntryStatus(t, ns, []*v1alpha1.IstioCondition{
    					{
    						Type:   "Health",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/extensions_test.go

    							WasmSecretEnv:          "secret-name",
    							WasmResourceVersionEnv: "dummy-resource-version",
    						},
    					},
    				},
    			},
    		},
    		{
    			desc:   "Build VMConfig with if-not-present pull policy",
    			vm:     nil,
    			policy: extensions.PullPolicy_IfNotPresent,
    			expected: &wasmextensions.PluginConfig_VmConfig{
    				VmConfig: &wasmextensions.VmConfig{
    					Runtime: defaultRuntime,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/config/mesh/kubemesh/watcher.go

    			log.Errorf("failed to read mesh config from ConfigMap: %v", err)
    			return
    		}
    		w.HandleMeshConfig(meshConfig)
    	})
    
    	go c.Run(stop)
    
    	// Ensure the ConfigMap is initially loaded if present.
    	if !client.WaitForCacheSync("configmap watcher", stop, c.HasSynced) {
    		log.Error("failed to wait for cache sync")
    	}
    	return w
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 20:54:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/security/security.go

    )
    
    var securityLog = istiolog.RegisterScope("security", "security debugging")
    
    const (
    	// etc/certs files are used with external CA managing the certs,
    	// i.e. mounted Secret or external plugin.
    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/util/sets/set.go

    func SortedList[T constraints.Ordered](s Set[T]) []T {
    	res := s.UnsortedList()
    	slices.Sort(res)
    	return res
    }
    
    // InsertContains inserts the item into the set and returns if it was already present.
    // Example:
    //
    //		if !set.InsertContains(item) {
    //			fmt.Println("Added item for the first time", item)
    //	  }
    func (s Set[T]) InsertContains(item T) bool {
    	if s.Contains(item) {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller_test.go

    	assert.EventuallyEqual(
    		t,
    		fetch(unpatchedWebhookConfig.Name),
    		webhookConfigWithCABundleIgnore,
    		retry.Message("no config update when endpoint not present"),
    		LongRetry,
    	)
    	webhooks.Delete(unpatchedWebhookConfig.Name, "")
    
    	// verify the webhook is updated after the controller can confirm invalid config is rejected.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. istioctl/pkg/checkinject/checkinject.go

    	return cmd
    }
    
    func printCheckInjectorResults(writer io.Writer, was []webhookAnalysis) error {
    	if len(was) == 0 {
    		fmt.Fprintf(writer, "ERROR: no Istio injection hooks present.\n")
    		return nil
    	}
    	w := table.NewStyleWriter(writer)
    	w.SetAddRowFunc(func(obj interface{}) table.Row {
    		wa := obj.(webhookAnalysis)
    		row := table.Row{
    			Cells: make([]table.Cell, 0),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top