add k8s capacity test case
[bottlenecks.git] / testsuites / kubestone / testcases / deployment_capacity.yaml
1 apiVersion: apps/v1
2 kind: Deployment
3 namespace: bottlenecks-kubestone
4 test_type: Horizontal-Scaling
5 scaling_steps: 10, 50, 100, 200
6 template: None
7 metadata:
8   name: nginx-deployment
9   labels:
10     app: nginx
11 spec:
12   replicas: 3
13   selector:
14     matchLabels:
15       app: nginx
16   template:
17     metadata:
18       labels:
19         app: nginx
20     spec:
21       containers:
22       - name: nginx
23         image: nginx:1.7.9
24         ports:
25         - containerPort: 80