Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for HorizontalPodAutoscaler (0.28 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. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.api.resource.Quantity currentAverageValue = 4;
    }
    
    // configuration of a horizontal pod autoscaler.
    message HorizontalPodAutoscaler {
      // Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity currentAverageValue = 4;
    }
    
    // configuration of a horizontal pod autoscaler.
    message HorizontalPodAutoscaler {
      // Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"status":   "status is the current information about the autoscaler.",
    }
    
    func (HorizontalPodAutoscaler) SwaggerDoc() map[string]string {
    	return map_HorizontalPodAutoscaler
    }
    
    var map_HorizontalPodAutoscalerCondition = map[string]string{
    	"":                   "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
    	"type":               "type describes the current condition",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. architecture/environments/operator.md

    replicaCount | [replica count](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/)
    hpaSpec | [HorizontalPodAutoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/)
    podDisruptionBudget | [PodDisruptionBudget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#how-disruption-budgets-work)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. operator/pkg/object/objects.go

    		case gk == "extensions/Deployment" || gk == "apps/Deployment":
    			return 1000
    
    			// Autoscalers typically act on a deployment
    		case gk == "autoscaling/HorizontalPodAutoscaler":
    			return 1001
    
    			// Create services late - after pods have been started
    		case gk == "/Service":
    			return 10000
    
    		default:
    			return 1000
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. 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)
  10. operator/README.md

    - [readiness probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/)
    - [replica count](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/)
    - [HorizontalPodAutoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/)
    - [PodDisruptionBudget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#how-disruption-budgets-work)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top