Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for HorizontalPodAutoscalers (0.44 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        name: system:controller:horizontal-pod-autoscaler
      rules:
      - apiGroups:
        - autoscaling
        resources:
        - horizontalpodautoscalers
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - autoscaling
        resources:
        - horizontalpodautoscalers/status
        verbs:
        - update
      - apiGroups:
        - '*'
        resources:
        - '*/scale'
        verbs:
        - get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. pkg/controlplane/instance_test.go

    	legacyEnabledBetaResources := map[schema.GroupVersionResource]bool{
    		autoscalingapiv2beta1.SchemeGroupVersion.WithResource("horizontalpodautoscalers"): true,
    		autoscalingapiv2beta2.SchemeGroupVersion.WithResource("horizontalpodautoscalers"): true,
    		batchapiv1beta1.SchemeGroupVersion.WithResource("cronjobs"):                       true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		Rules: []rbacv1.PolicyRule{
    			rbacv1helpers.NewRule("get", "list", "watch").Groups(autoscalingGroup).Resources("horizontalpodautoscalers").RuleOrDie(),
    			rbacv1helpers.NewRule("update").Groups(autoscalingGroup).Resources("horizontalpodautoscalers/status").RuleOrDie(),
    			rbacv1helpers.NewRule("get", "update").Groups("*").Resources("*/scale").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    		}
    
    		return true, obj, nil
    	})
    
    	testClient.AddReactor("list", "horizontalpodautoscalers", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &autoscalingv2.HorizontalPodAutoscalerList{
    			Items: hpaList[:],
    		}
    		return true, obj, nil
    	})
    
    	testClient.AddReactor("update", "horizontalpodautoscalers", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "autoscaling_v1"
            ]
          }
        },
        "/apis/autoscaling/v1/horizontalpodautoscalers": {
          "get": {
            "description": "list or watch objects of kind HorizontalPodAutoscaler",
            "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
            "responses": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "autoscaling_v2"
            ]
          }
        },
        "/apis/autoscaling/v2/horizontalpodautoscalers": {
          "get": {
            "description": "list or watch objects of kind HorizontalPodAutoscaler",
            "operationId": "listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces",
            "responses": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			expected: "pods,replicationcontrollers,services,statefulsets.apps,horizontalpodautoscalers.autoscaling,jobs.batch,cronjobs.batch,daemonsets.extensions,deployments.extensions,replicasets.extensions",
    		},
    		{
    			name:     "alias-in-comma-separated-arg",
    			arg:      "all,secrets",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	namespace, name, err := cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		return true, err
    	}
    
    	logger := klog.FromContext(ctx)
    
    	hpa, err := a.hpaLister.HorizontalPodAutoscalers(namespace).Get(name)
    	if k8serrors.IsNotFound(err) {
    		logger.Info("Horizontal Pod Autoscaler has been deleted", "HPA", klog.KRef(namespace, name))
    
    		a.recommendationsLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    the new apiVersions will still be accessible, using the old version.  You can
    continue to use your existing JSON and YAML files until you are ready to switch
    to <code>autoscaling/v1</code>.  We may remove support for HorizontalPodAutoscalers with  <code>apiVersion: extensions/v1beta1 </code>in 1.3 or 1.4.
      * Kube-Proxy now defaults to an iptables-based proxy. If the --proxy-mode flag is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            "schemes": [
              "https"
            ],
            "tags": [
              "autoscaling_v1"
            ]
          }
        },
        "/apis/autoscaling/v1/horizontalpodautoscalers": {
          "get": {
            "consumes": [
              "*/*"
            ],
            "description": "list or watch objects of kind HorizontalPodAutoscaler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top