Skip to content

Commit 2356f88

Browse files
authored
Merge pull request #69121 from ShaunaDiaz/OCPBUGS-24561
OCPBUGS#24561: fix typo busybox yaml
2 parents 4f3400f + c4e25a7 commit 2356f88

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

modules/microshift-applying-manifests-example.adoc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ metadata:
3838
apiVersion: apps/v1
3939
kind: Deployment
4040
metadata:
41-
name: busybox-deployment
42-
namespace:busybox
41+
name: busybox
42+
namespace: busybox-deployment
4343
spec:
4444
selector:
4545
matchLabels:
@@ -52,9 +52,7 @@ spec:
5252
containers:
5353
- name: busybox
5454
image: BUSYBOX_IMAGE
55-
command:
56-
- sleep
57-
- "3600"
55+
command: [ "/bin/sh", "-c", "while true ; do date; sleep 3600; done;" ]
5856
EOF
5957
----
6058

0 commit comments

Comments
 (0)