Remove test/scalability

This commit is contained in:
gmarek 2016-03-25 14:51:14 +01:00
parent 918ddbe5f0
commit ea040b77a8
2 changed files with 0 additions and 64 deletions

View File

@ -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

View File

@ -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']