From ea040b77a84b4a1597cd359cd72e12867e336819 Mon Sep 17 00:00:00 2001 From: gmarek Date: Fri, 25 Mar 2016 14:51:14 +0100 Subject: [PATCH] Remove test/scalability --- test/scalability/counter/Makefile | 41 ------------------------ test/scalability/counter/counter-rc.yaml | 23 ------------- 2 files changed, 64 deletions(-) delete mode 100644 test/scalability/counter/Makefile delete mode 100644 test/scalability/counter/counter-rc.yaml diff --git a/test/scalability/counter/Makefile b/test/scalability/counter/Makefile deleted file mode 100644 index 8219ea5379c..00000000000 --- a/test/scalability/counter/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2016 The Kubernetes Authors All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# 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. - -counter: - kubectl create --validate -f counter-rc.yaml - -counter1: - kubectl scale rc counter --replicas=1 - -counter10: - kubectl scale rc counter --replicas=10 - -counter50: - kubectl scale rc counter --replicas=50 - -counter100: - kubectl scale rc counter --replicas=100 - -counter200: - kubectl scale rc counter --replicas=200 - -counter500: - kubectl scale rc counter --replicas=500 - - -counter5000: - kubectl scale rc counter --replicas=5000 - -stop: - kubectl delete rc counter diff --git a/test/scalability/counter/counter-rc.yaml b/test/scalability/counter/counter-rc.yaml deleted file mode 100644 index ddc39a56dc4..00000000000 --- a/test/scalability/counter/counter-rc.yaml +++ /dev/null @@ -1,23 +0,0 @@ -apiVersion: v1 -kind: ReplicationController -metadata: - name: counter -spec: - replicas: 1 - selector: - app: counter - template: - metadata: - labels: - app: counter - spec: - containers: - - name: count - image: ubuntu:14.04 - resources: - limits: - cpu: 1m - args: [bash, -c, - 'for ((i = 0; ; i++)); do echo "$i: $(date)"; sleep 1; done'] - -