summaryrefslogtreecommitdiffstats
path: root/testsuites/kubestone/samples/deployment_sample.yaml
diff options
context:
space:
mode:
authorYang (Gabriel) Yu <Gabriel.yuyang@huawei.com>2018-09-07 03:54:05 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-09-07 03:54:05 +0000
commit27d82af1145673330eddbe80eb39c47d93322cbe (patch)
tree81c5cf27302f20ab2081f1035bf222da2e63d082 /testsuites/kubestone/samples/deployment_sample.yaml
parente32043f58a2450b6a5986dc2a01f64f8b22c3992 (diff)
parenteacf878ec5372a6db4596c9cbc78ef96bf2453b9 (diff)
Merge "add k8s capacity test case"
Diffstat (limited to 'testsuites/kubestone/samples/deployment_sample.yaml')
-rw-r--r--testsuites/kubestone/samples/deployment_sample.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuites/kubestone/samples/deployment_sample.yaml b/testsuites/kubestone/samples/deployment_sample.yaml
new file mode 100644
index 00000000..f7f95dee
--- /dev/null
+++ b/testsuites/kubestone/samples/deployment_sample.yaml
@@ -0,0 +1,21 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: nginx-deployment
+ labels:
+ app: nginx
+spec:
+ replicas: 3
+ selector:
+ matchLabels:
+ app: nginx
+ template:
+ metadata:
+ labels:
+ app: nginx
+ spec:
+ containers:
+ - name: nginx
+ image: nginx:1.7.9
+ ports:
+ - containerPort: 80