Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for policyv1 (0.19 sec)

  1. api/openapi-spec/v3/apis__policy__v1_openapi.json

              }
            },
            "tags": [
              "policy_v1"
            ],
            "x-kubernetes-action": "post",
            "x-kubernetes-group-version-kind": {
              "group": "policy",
              "kind": "PodDisruptionBudget",
              "version": "v1"
            }
          }
        },
        "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
          "delete": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	},
    		replicateIAMItem,
    	)
    	return errors.Unwrap(cerr)
    }
    
    // PeerAddPolicyHandler - copies IAM policy to local. A nil policy argument,
    // causes the named policy to be deleted.
    func (c *SiteReplicationSys) PeerAddPolicyHandler(ctx context.Context, policyName string, p *policy.Policy, updatedAt time.Time) error {
    	var err error
    	// skip overwrite of local update if peer sent stale info
    	if !updatedAt.IsZero() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	var objectAPI ObjectLayer
    	switch serviceSig {
    	case serviceRestart:
    		objectAPI, _ = validateAdminReq(ctx, w, r, policy.ServiceRestartAdminAction)
    	case serviceStop:
    		objectAPI, _ = validateAdminReq(ctx, w, r, policy.ServiceStopAdminAction)
    	case serviceFreeze, serviceUnFreeze:
    		objectAPI, _ = validateAdminReq(ctx, w, r, policy.ServiceFreezeAdminAction)
    	}
    	if objectAPI == nil {
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		s3Error = checkRequestAuthType(ctx, r, policy.GetObjectVersionAttributesAction, bucket, object)
    		if s3Error == ErrNone {
    			s3Error = checkRequestAuthType(ctx, r, policy.GetObjectVersionAction, bucket, object)
    		}
    	} else {
    		s3Error = checkRequestAuthType(ctx, r, policy.GetObjectAttributesAction, bucket, object)
    		if s3Error == ErrNone {
    			s3Error = checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, object)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "description": "MatchResources declares what resources match this binding and will be validated by it. Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this. If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    		return "Retain"
    	case policy.WhenScaled == retain && policy.WhenDeleted == delete:
    		return "SetDeleteOnly"
    	case policy.WhenScaled == delete && policy.WhenDeleted == retain:
    		return "ScaleDownOnly"
    	case policy.WhenScaled == delete && policy.WhenDeleted == delete:
    		return "Delete"
    	}
    	return "invalid"
    }
    
    func TestStatefulSetControl(t *testing.T) {
    	simpleSetFn := func() *apps.StatefulSet { return newStatefulSet(3) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/apis/apps/validation/validation_test.go

    	policy := &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{}
    
    	for _, tw := range tweaks {
    		tw(policy)
    	}
    
    	return policy
    }
    
    func tweakPVCDeletedPolicy(t apps.PersistentVolumeClaimRetentionPolicyType) pvcPolicyTweak {
    	return func(policy *apps.StatefulSetPersistentVolumeClaimRetentionPolicy) {
    		policy.WhenDeleted = t
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	return
    }
    
    func validateTrafficPolicy(policy *networking.TrafficPolicy) Validation {
    	if policy == nil {
    		return Validation{}
    	}
    	if policy.OutlierDetection == nil && policy.ConnectionPool == nil &&
    		policy.LoadBalancer == nil && policy.Tls == nil && policy.PortLevelSettings == nil && policy.Tunnel == nil && policy.ProxyProtocol == nil {
    		return WrapError(fmt.Errorf("traffic policy must have at least one field"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	}
    }
    
    func TestCalculateScaleUpLimitWithScalingRules(t *testing.T) {
    	policy := autoscalingv2.MinChangePolicySelect
    
    	calculated := calculateScaleUpLimitWithScalingRules(1, []timestampedScaleEvent{}, []timestampedScaleEvent{}, &autoscalingv2.HPAScalingRules{
    		StabilizationWindowSeconds: pointer.Int32(300),
    		SelectPolicy:               &policy,
    		Policies: []autoscalingv2.HPAScalingPolicy{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top