Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for autoscalingapiv2 (0.24 sec)

  1. pkg/registry/autoscaling/rest/storage_autoscaling.go

    limitations under the License.
    */
    
    package rest
    
    import (
    	autoscalingapiv1 "k8s.io/api/autoscaling/v1"
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    	autoscalingapiv2 "k8s.io/kubernetes/pkg/apis/autoscaling/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 29 08:51:48 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. pkg/controlplane/instance.go

    	authenticationv1alpha1 "k8s.io/api/authentication/v1alpha1"
    	authenticationv1beta1 "k8s.io/api/authentication/v1beta1"
    	authorizationapiv1 "k8s.io/api/authorization/v1"
    	autoscalingapiv1 "k8s.io/api/autoscaling/v1"
    	autoscalingapiv2 "k8s.io/api/autoscaling/v2"
    	batchapiv1 "k8s.io/api/batch/v1"
    	certificatesapiv1 "k8s.io/api/certificates/v1"
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    					tc.key: tc.scaleDownEvents,
    				},
    			}
    			arg := NormalizationArg{
    				Key:               tc.key,
    				ScaleUpBehavior:   autoscalingapiv2.GenerateHPAScaleUpRules(tc.scaleUpRules),
    				ScaleDownBehavior: autoscalingapiv2.GenerateHPAScaleDownRules(tc.scaleDownRules),
    				MinReplicas:       tc.specMinReplicas,
    				MaxReplicas:       tc.specMaxReplicas,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/metrics/client_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package metrics
    
    import (
    	"context"
    	"fmt"
    	"testing"
    	"time"
    
    	autoscalingapi "k8s.io/api/autoscaling/v2"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/meta/testrestmapper"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	dc.scaleClient.AddReactor("get", "customresources", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &autoscalingapi.Scale{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: metav1.NamespaceDefault,
    				UID:       customResourceUID,
    			},
    			Spec: autoscalingapi.ScaleSpec{
    				Replicas: replicas,
    			},
    		}
    		return true, obj, nil
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top