Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for qualified (0.19 sec)

  1. common-protos/k8s.io/api/discovery/v1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Specifies the hostname of the Carp
      // If not specified, the carp's hostname will be set to a system-defined value.
      // +optional
      optional string hostname = 16;
    
      // If specified, the fully qualified Carp hostname will be "<hostname>.<subdomain>.<carp namespace>.svc.<cluster domain>".
      // If not specified, the carp will not have a domainname at all.
      // +optional
      optional string subdomain = 17;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // is other than default (typically TCP ports 860 and 3260).
      optional string targetPortal = 1;
    
      // iqn is Target iSCSI Qualified Name.
      optional string iqn = 2;
    
      // lun is iSCSI Target Lun number.
      optional int32 lun = 3;
    
      // iscsiInterface is the interface Name that uses an iSCSI transport.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

    message AuditAnnotation {
      // key specifies the audit annotation key. The audit annotation keys of
      // a ValidatingAdmissionPolicy must be unique. The key must be a qualified
      // name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
      //
      // The key is combined with the resource name of the
      // ValidatingAdmissionPolicy to construct an audit annotation key:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // the related backend services. Incoming requests are first evaluated for a host
    // match, then routed to the backend associated with the matching IngressRuleValue.
    message IngressRule {
      // host is the fully qualified domain name of a network host, as defined by RFC 3986.
      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      optional string uid = 1;
    
      // Kind is the fully-qualified type of object being submitted (for example, v1.Pod or autoscaling.v1.Scale)
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind kind = 2;
    
      // Resource is the fully-qualified resource being requested (for example, v1.pods)
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionResource resource = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

    message CertificateSigningRequestSpec {
      // Base64-encoded PKCS#10 CSR data
      // +listType=atomic
      optional bytes request = 1;
    
      // Requested signer for the request. It is a qualified name in the form:
      // `scope-hostname.io/name`.
      // If empty, it will be defaulted:
      //  1. If it's a kubelet client certificate, it is assigned
      //     "kubernetes.io/kube-apiserver-client-kubelet".
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                  minimum: 0
                                  type: integer
                                service:
                                  description: The fully qualified service name for this
                                    cluster.
                                  type: string
                                subset:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  10. bin/diff_yaml.py

    # It ensures that order does not matter
    #
    from __future__ import print_function
    import argparse
    import datadiff
    import sys
    import yaml  # pyyaml
    
    # returns fully qualified resource name of the k8s resource
    
    
    def by_resource_name(res):
        if res is None:
            return ""
    
        return "{}::{}::{}".format(res['apiVersion'],
                                   res['kind'],
    Python
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 03 16:14:57 GMT 2021
    - 4.5K bytes
    - Viewed (0)
Back to top