blob: 0e807058d0dd2f9f00da3db099c31cc8f0e81924 [file] [log] [blame]
Andy Bavier7b01b682022-03-17 13:26:55 -07001# Copyright 2022-present Open Networking Foundation
2#
3# SPDX-License-Identifier: Apache-2.0
4
5# Create a pod with app: mme label so that oaisim will start
6
7apiVersion: v1
8kind: Pod
9metadata:
10 name: busybox-sleep
11 labels:
12 app: mme
13spec:
14 containers:
15 - name: busybox
16 image: busybox
17 args:
18 - sleep
19 - "1000000"