Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for clusterIPs (0.21 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	// Call cluster-replication policy creation hook to replicate policy deletion to
    	// other minio clusters.
    	replLogIf(ctx, globalSiteReplicationSys.IAMChangeHook(ctx, madmin.SRIAMItem{
    		Type:      madmin.SRIAMItemPolicy,
    		Name:      policyName,
    		UpdatedAt: UTCNow(),
    	}))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    	return inst.ServiceName() + "-" + inst.Config().Version
    }
    
    func TestMetadataServer(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		ver, _ := t.Clusters().Default().GetKubernetesVersion()
    		if !strings.Contains(ver.GitVersion, "-gke") {
    			t.Skip("requires GKE cluster")
    		}
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // If there is an IP, we will set the `loadBalancerIP` type.
    // While there is no defined standard for this in the API yet, it is tracked in https://github.com/kubernetes-sigs/gateway-api/issues/892.
    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    // Currently, the supported options are:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. tests/integration/security/authz_test.go

    					allow := allowValue(from.NamespacedName() == allowed.Config().NamespacedName())
    
    					skipSourceIPTestsForMulticluster := func(t framework.TestContext) {
    						t.Helper()
    						if t.Clusters().IsMulticluster() {
    							// TODO(nmittler): Needs to be documented as a limitation for multi-network.
    							t.Skip("https://github.com/istio/istio/issues/37307: " +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    // tf-device-decompose-resource-ops would always decompose the resource op.
    // tf-device-decompose-resource-ops-in-cluster would not decompose ops outside
    // cluster or functions transitively called from within clusters.
    
    // CHECK-LABEL: func @decomposition_outside_cluster
    func.func @decomposition_outside_cluster() {
      %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<2x8xi32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    	switch cs := vhRoute.GetRoute().GetClusterSpecifier().(type) {
    	case *route.RouteAction_Cluster:
    		clusterName = cs.Cluster
    	case *route.RouteAction_WeightedClusters:
    		clusterName = cs.WeightedClusters.Clusters[0].GetName()
    	}
    
    	// If this is an ingress gateway, the Domains will be something like *:80, so check routes
    	// which will look like "outbound|9080||productpage.default.svc.cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    		}
    	}
    
    	// Delete chains no longer in use. Since "iptables-save" can take several seconds
    	// to run on hosts with lots of iptables rules, we don't bother to do this on
    	// every sync in large clusters. (Stale chains will not be referenced by any
    	// active rules, so they're harmless other than taking up memory.)
    	deletedChains := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    		klog.V(4).InfoS("Creating container in pod", "containerType", typeName, "container", spec.container, "pod", klog.KObj(pod))
    		// NOTE (aramase) podIPs are populated for single stack and dual stack clusters. Send only podIPs.
    		if msg, err := m.startContainer(ctx, podSandboxID, podSandboxConfig, spec, pod, podStatus, pullSecrets, podIP, podIPs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top