Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 248 for SubDomain (0.26 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"metadata":          "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver name.\n\nObjects...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. pkg/config/labels/instance_test.go

    			tags:  labels.Instance{"key": ""},
    			valid: true,
    		},
    		{
    			name:  "good tag - DNS prefix",
    			tags:  labels.Instance{"k8s.io/key": "value"},
    			valid: true,
    		},
    		{
    			name:  "good tag - subdomain DNS prefix",
    			tags:  labels.Instance{"app.kubernetes.io/name": "value"},
    			valid: true,
    		},
    		{
    			name: "bad tag - empty key",
    			tags: labels.Instance{"": "value"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    	copy(dAtA[i:], m.SchedulerName)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SchedulerName)))
    	i--
    	dAtA[i] = 0x1
    	i--
    	dAtA[i] = 0x9a
    	i -= len(m.Subdomain)
    	copy(dAtA[i:], m.Subdomain)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Subdomain)))
    	i--
    	dAtA[i] = 0x1
    	i--
    	dAtA[i] = 0x8a
    	i -= len(m.Hostname)
    	copy(dAtA[i:], m.Hostname)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hostname)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	copy(dAtA[i:], m.SchedulerName)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SchedulerName)))
    	i--
    	dAtA[i] = 0x1
    	i--
    	dAtA[i] = 0x9a
    	i -= len(m.Subdomain)
    	copy(dAtA[i:], m.Subdomain)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Subdomain)))
    	i--
    	dAtA[i] = 0x1
    	i--
    	dAtA[i] = 0x8a
    	i -= len(m.Hostname)
    	copy(dAtA[i:], m.Hostname)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hostname)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/names.go

    			// validation as any further error messages will be duplicates, and non-distinguishable
    			// from each other, confusing users.
    			break
    		}
    	}
    
    	// ensure that segments[1] can accommodate a dns label + dns subdomain + '.'
    	maxPathSegmentLength := validation.DNS1123SubdomainMaxLength + validation.DNS1123LabelMaxLength + 1
    	maxSignerNameLength := maxDomainSegmentLength + maxPathSegmentLength + 1
    	if len(signerName) > maxSignerNameLength {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    	return rc.values[plugin]
    }
    
    func checkKeyFormat(key string) error {
    	parts := strings.Split(key, "/")
    	if len(parts) != 2 {
    		return fmt.Errorf("annotation key has invalid format, the right format is a DNS subdomain prefix and '/' and key name. (e.g. 'podsecuritypolicy.admission.k8s.io/admit-policy')")
    	}
    	if msgs := validation.IsQualifiedName(key); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    	}, {
    		name:       "name should not include scheme",
    		targetName: "http://foo.k8s.io",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "email should be invalid",
    		targetName: "******@****.***",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "name cannot be empty",
    		targetName: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // node.
    type CSIStorageCapacity struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata. The name has no particular meaning. It must be
    	// be a DNS subdomain (dots allowed, 253 characters). To ensure that
    	// there are no conflicts with other CSI drivers on the cluster, the recommendation
    	// is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. pkg/scheduler/util/utils.go

    )
    
    // GetPodFullName returns a name that uniquely identifies a pod.
    func GetPodFullName(pod *v1.Pod) string {
    	// Use underscore as the delimiter because it is not allowed in pod name
    	// (DNS subdomain format).
    	return pod.Name + "_" + pod.Namespace
    }
    
    // GetPodStartTime returns start time of the given pod or current timestamp
    // if it hasn't started yet.
    func GetPodStartTime(pod *v1.Pod) *metav1.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    		MaxRegexSize: 30,
    	},
    	"qualifiedName": {
    		Name:         "QualifiedName",
    		ValidateFunc: validation.IsQualifiedName,
    		MaxRegexSize: 60, // uses subdomain regex
    	},
    
    	"dns1123LabelPrefix": {
    		Name:         "DNS1123LabelPrefix",
    		ValidateFunc: func(s string) []string { return apimachineryvalidation.NameIsDNSLabel(s, true) },
    		MaxRegexSize: 30,
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top