Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 633 for Validate2 (0.34 sec)

  1. istioctl/pkg/validate/validate.go

      # Validate all yaml files under samples/bookinfo/networking directory
      istioctl validate -f samples/bookinfo/networking
    
      # Validate current deployments under 'default' namespace within the cluster
      kubectl get deployments -o yaml | istioctl validate -f -
    
      # Validate current services under 'default' namespace within the cluster
      kubectl get services -o yaml | istioctl validate -f -
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		if val != "false" {
    			// Pod subnet was already validated, we need to validate now against the node-mask
    			allErrs = append(allErrs, ValidatePodSubnetNodeMask(c.Networking.PodSubnet, c, fldPath.Child("podSubnet"))...)
    		}
    	}
    	return allErrs
    }
    
    // ValidateAbsolutePath validates whether provided path is absolute or not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/discovery/token/token.go

    	klog.V(1).Infof("[discovery] Requesting info from %q again to validate TLS against the pinned public key", endpoint)
    	secureClusterInfo, err := getClusterInfo(client, secureBootstrapConfig, token, interval, timeout)
    	if err != nil {
    		return nil, err
    	}
    
    	// Pull the kubeconfig from the securely-obtained ConfigMap and validate that it's the same as what we found the first time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation.go

    func ValidateStatefulSetName(name string, prefix bool) []string {
    	// TODO: Validate that there's room for the suffix inserted by the pods.
    	// Currently this is just "-index". In the future we may allow a user
    	// specified list of suffixes and we need  to validate the longest one.
    	return apimachineryvalidation.NameIsDNSLabel(name, prefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certs.go

    }
    
    // validateCACert tries to load a x509 certificate from pkiDir and validates that it is a CA
    func validateCACert(l certKeyLocation) error {
    	// Check CA Cert
    	caCert, err := pkiutil.TryLoadCertFromDisk(l.pkiDir, l.caBaseName)
    	if err != nil {
    		return errors.Wrapf(err, "failure loading certificate for %s", l.uxName)
    	}
    	// Validate period
    	CheckCertificatePeriodValidity(l.uxName, caCert)
    
    	// Check if cert is a CA
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/initconfiguration.go

    // BytesToInitConfiguration converts a byte slice to an internal, defaulted and validated InitConfiguration object.
    // The map may contain many different YAML documents. These YAML documents are parsed one-by-one
    // and well-known ComponentConfig GroupVersionKinds are stored inside of the internal InitConfiguration struct.
    // The resulting InitConfiguration is then dynamically defaulted and validated prior to return.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    type basicSchemaValidator struct {
    	*validate.SchemaValidator
    }
    
    func (s basicSchemaValidator) Validate(new interface{}, options ...ValidationOption) *validate.Result {
    	return s.SchemaValidator.Validate(new)
    }
    
    func (s basicSchemaValidator) ValidateUpdate(new, old interface{}, options ...ValidationOption) *validate.Result {
    	return s.Validate(new, options...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	}
    }
    
    // Validate validates all x-kubernetes-validations rules in Validator against obj and returns any errors.
    // If the validation rules exceed the costBudget, subsequent evaluations will be skipped, the list of errs returned will not be empty, and a negative remainingBudget will be returned.
    // Most callers can ignore the returned remainingBudget value unless another validate call is going to be made
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    	// sets the bucket policy using the policy statement generated from `getReadOnlyBucketStatement` so that the
    	// unsigned request goes through and its validated again.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    			},
    			failingObjects: []failingObject{
    				{object: map[string]interface{}{"field": true}, expectErrs: []string{
    					`<nil>: Invalid value: "": "field" must validate all the schemas (allOf). None validated`,
    					`<nil>: Invalid value: "": "field" must validate at least one schema (anyOf)`,
    					`field: Invalid value: "boolean": field in body must be of type integer,string: "boolean"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top