Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for cluster0 (0.18 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // type determines how the Service is exposed. Defaults to ClusterIP. Valid
      // options are ExternalName, ClusterIP, NodePort, and LoadBalancer.
      // "ClusterIP" allocates a cluster-internal IP address for load-balancing
      // to endpoints. Endpoints are determined by the selector or if that is not
      // specified, by manual construction of an Endpoints object or
      // EndpointSlice objects. If clusterIP is "None", no virtual IP is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    \"pods\" source).\n - `\"External\"` is a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).\n - `\"Object\"` is a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).\n - `\"Pods\"` is a metric describing each pod in the current scale target (for...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              "scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                        (Mesh conformance profile, experimental, ClusterIP Services only)
                        \n This API may be extended in the future to support additional
                        kinds of parent resources. \n The API object must be valid in
                        the cluster; the Group and Kind must be registered in the cluster
                        for this reference to be valid."
                      properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    			}
    			createdSvc := createdObj.(*api.Service)
    
    			if createdSvc.Spec.ClusterIP == "" {
    				t.Errorf("expected ClusterIP to be set")
    
    			}
    			if tc.svc.Spec.ClusterIP != "" {
    				if want, got := tc.svc.Spec.ClusterIP, createdSvc.Spec.ClusterIP; want != got {
    					t.Errorf("wrong ClusterIP: want %s, got %s", want, got)
    				}
    			}
    			if len(createdSvc.Spec.ClusterIPs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "iscsi": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		} else if service.Spec.ClusterIPs[0] != service.Spec.ClusterIP {
    			allErrs = append(allErrs, field.Invalid(clusterIPsField, service.Spec.ClusterIPs, "first value must match `clusterIP`"))
    		}
    	} else { // ClusterIP == ""
    		// If ClusterIP is not set, ClusterIPs must also be unset.
    		if len(service.Spec.ClusterIPs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                "type": "array",
                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object"
          },
          "io.k8s.api.rbac.v1.ClusterRole": {
            "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
            "properties": {
              "aggregationRule": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
Back to top