Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HorizontalPodAutoscaler (0.28 sec)

  1. pkg/apis/autoscaling/validation/validation_test.go

    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := []struct {
    		horizontalPodAutoscaler autoscaling.HorizontalPodAutoscaler
    		msg                     string
    	}{{
    		horizontalPodAutoscaler: autoscaling.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{Name: "myautoscaler", Namespace: metav1.NamespaceDefault},
    			Spec: autoscaling.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    		go wait.UntilWithContext(ctx, a.worker, time.Second)
    	}
    
    	<-ctx.Done()
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) updateHPA(old, cur interface{}) {
    	a.enqueueHPA(cur)
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) enqueueHPA(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                  "responseKind": {
                    "group": "",
                    "kind": "HorizontalPodAutoscaler",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "hpa"
                  ],
                  "singularResource": "horizontalpodautoscaler",
                  "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)
  4. api/discovery/aggregated_v2.json

                  "responseKind": {
                    "group": "",
                    "kind": "HorizontalPodAutoscaler",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "hpa"
                  ],
                  "singularResource": "horizontalpodautoscaler",
                  "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)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message EgressGatewayConfig {
      // Controls whether auto scaling with a HorizontalPodAutoscaler is enabled.
      google.protobuf.BoolValue autoscaleEnabled = 1;
    
      // maxReplicas setting for HorizontalPodAutoscaler.
      uint32 autoscaleMax = 2;
    
      // minReplicas setting for HorizontalPodAutoscaler.
      uint32 autoscaleMin = 3;
    
      // K8s memory utilization setting for HorizontalPodAutoscaler target.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top