Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for HorizontalPodAutoscaler (0.9 sec)

  1. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": {
          "description": "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  2. 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)
  3. 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 (1)
  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. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Controls whether auto scaling with a HorizontalPodAutoscaler is enabled.
    	AutoscaleEnabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=autoscaleEnabled,proto3" json:"autoscaleEnabled,omitempty"`
    	// maxReplicas setting for HorizontalPodAutoscaler.
    	AutoscaleMax uint32 `protobuf:"varint,2,opt,name=autoscaleMax,proto3" json:"autoscaleMax,omitempty"`
    	// minReplicas setting for HorizontalPodAutoscaler.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": {
          "description": "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": {
          "description": "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. 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)
  10. operator/pkg/translate/translate.go

    			"Components.{{.ComponentName}}.K8S.HpaSpec":             {OutPath: "[HorizontalPodAutoscaler:{{.ResourceName}}].spec"},
    			"Components.{{.ComponentName}}.K8S.ImagePullPolicy":     {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.containers.[name:{{.ContainerName}}].imagePullPolicy"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top