add k8s capacity test case
[bottlenecks.git] / testsuites / kubestone / samples / pod_sample.yaml
1 apiVersion: v1
2 kind: Pod
3 metadata:
4   name: myapp-pod
5   labels:
6     app: myapp
7 spec:
8   containers:
9   - name: myapp-container
10     image: busybox
11     command: ['sh', '-c', 'echo Hello Kubernetes! && sleep 3600']