Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/api/autoscaling/v2/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.23
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    // autoscaler, which automatically manages the replica count of any resource
    // implementing the scale subresource based on the metrics specified.
    type HorizontalPodAutoscaler struct {
    	metav1.TypeMeta `json:",inline"`
    	// metadata is the standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// +optional
    	ObservedGeneration *int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
    
    	// lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods;
    	// used by the autoscaler to control how often the number of pods is changed.
    	// +optional
    	LastScaleTime *metav1.Time `json:"lastScaleTime,omitempty" protobuf:"bytes,2,opt,name=lastScaleTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		},
    		{
    			desc:       "autoscaling_ingress_v2",
    			diffSelect: "HorizontalPodAutoscaler:*:istiod,HorizontalPodAutoscaler:*:istio-ingressgateway",
    			fileSelect: []string{"templates/autoscale.yaml"},
    		},
    		{
    			desc:       "autoscaling_v2",
    			diffSelect: "HorizontalPodAutoscaler:*:istiod,HorizontalPodAutoscaler:*:istio-ingressgateway",
    			fileSelect: []string{"templates/autoscale.yaml"},
    		},
    	})
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. tests/integration/operator/switch_cr_test.go

    						metav1.GetOptions{})
    				} else {
    					_, err = cs.Kube().PolicyV1beta1().PodDisruptionBudgets(ns).Get(context.TODO(), name,
    						metav1.GetOptions{})
    				}
    			case "HorizontalPodAutoscaler":
    				// autoscaling v2 API is available on >=1.23
    				if cs.MinKubeVersion(23) {
    					_, err = cs.Kube().AutoscalingV2().HorizontalPodAutoscalers(ns).Get(context.TODO(), name,
    						metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// Only JSON paths without the array notation are allowed.
    	// Must be a JSON Path under `.status` or `.spec`.
    	// Must be set to work with HorizontalPodAutoscaler.
    	// The field pointed by this JSON path must be a string field (not a complex selector struct)
    	// which contains a serialized label selector in string form.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top