Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for HorizontalPodAutoscaler (0.36 sec)

  1. pkg/apis/autoscaling/v2beta1/zz_generated.defaults.go

    // All generated defaulters are covering - they call all nested defaulters.
    func RegisterDefaults(scheme *runtime.Scheme) error {
    	scheme.AddTypeDefaultingFunc(&v2beta1.HorizontalPodAutoscaler{}, func(obj interface{}) {
    		SetObjectDefaults_HorizontalPodAutoscaler(obj.(*v2beta1.HorizontalPodAutoscaler))
    	})
    	scheme.AddTypeDefaultingFunc(&v2beta1.HorizontalPodAutoscalerList{}, func(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/v2beta2/zz_generated.defaults.go

    // All generated defaulters are covering - they call all nested defaulters.
    func RegisterDefaults(scheme *runtime.Scheme) error {
    	scheme.AddTypeDefaultingFunc(&v2beta2.HorizontalPodAutoscaler{}, func(obj interface{}) {
    		SetObjectDefaults_HorizontalPodAutoscaler(obj.(*v2beta2.HorizontalPodAutoscaler))
    	})
    	scheme.AddTypeDefaultingFunc(&v2beta2.HorizontalPodAutoscalerList{}, func(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_v2.golden.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. releasenotes/notes/46121.yaml

        **Fixed** an issue preventing the gateway chart from being used with a custom HorizontalPodAutoscaler resource.
    
    upgradeNotes:
      - title: don't set spec.replicas unless user supplies a real number
        content: |
          When using the gateway chart, the user had to either pick between
          explicitly setting `spec.replicas`, or using the chart-supplied
          `HorizontalPodAutoscaler`. Now `spec.replicas` is only set if
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 13:53:35 UTC 2023
    - 652 bytes
    - Viewed (0)
  5. pkg/registry/autoscaling/horizontalpodautoscaler/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 13:14:38 UTC 2016
    - 682 bytes
    - Viewed (0)
  6. releasenotes/notes/30203.yaml

    apiVersion: release-notes/v2
    kind: bug-fix 
    area: installation
    issue:
      - 30203
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 20 16:24:36 UTC 2021
    - 243 bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/v2beta1/conversion_test.go

    			obj2: &v2beta1.ResourceMetricSource{},
    		},
    		{
    			obj1: &autoscaling.ResourceMetricStatus{},
    			obj2: &v2beta1.ResourceMetricStatus{},
    		},
    		{
    			obj1: &autoscaling.HorizontalPodAutoscaler{},
    			obj2: &v2beta1.HorizontalPodAutoscaler{},
    		},
    		{
    			obj1: &autoscaling.MetricTarget{},
    			obj2: &v2beta1.CrossVersionObjectReference{},
    		},
    	}
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if and $gateway.autoscaleEnabled $gateway.autoscaleMin $gateway.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 951 bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v2/defaults.go

    			},
    		},
    	}
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_HorizontalPodAutoscaler(obj *autoscalingv2.HorizontalPodAutoscaler) {
    	if obj.Spec.MinReplicas == nil {
    		obj.Spec.MinReplicas = pointer.Int32(1)
    	}
    
    	if len(obj.Spec.Metrics) == 0 {
    		utilizationDefaultVal := int32(autoscaling.DefaultCPUUtilization)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

    {{- if and .Values.pilot.autoscaleEnabled .Values.pilot.autoscaleMin .Values.pilot.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top