Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for apiservice (0.16 sec)

  1. api/discovery/aggregated_v2beta1.json

                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2.json

                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    	} else {
    		// this matches the APIService group field validation
    		if len(gv.Group) > 0 {
    			if errs := utilvalidation.IsDNS1123Subdomain(gv.Group); len(errs) > 0 {
    				allErrors = append(allErrors, field.Invalid(fldPath.Child("apiVersion"), gv.Group, strings.Join(errs, ",")))
    			}
    		}
    		// this matches the APIService version field validation
    		if len(gv.Version) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			s.addWaypoint(t, "10.0.0.10", "test-wp", c.trafficType, true)
    			s.addPods(t, "127.0.0.1", "pod1", "sa1",
    				map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    			s.assertEvent(t, s.podXdsName("pod1"))
    			s.addService(t, "svc1",
    				map[string]string{},
    				map[string]string{},
    				[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    			s.assertEvent(t, s.svcXdsName("svc1"), s.podXdsName("pod1"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			defer controller.pods.RUnlock()
    			if _, ok := controller.pods.podsByIP[ip]; ok {
    				return fmt.Errorf("pod still present")
    			}
    			return nil
    		}, retry.Timeout(time.Second))
    	}
    	addService := func(name string) {
    		// create service
    		createServiceWait(controller, name, "nsA", nil, nil,
    			[]int32{8080}, map[string]string{"app": "prod-app"}, t)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top