Skip to content

Commit 5892325

Browse files
authored
Merge pull request #1618 from thakurmi/master
fix centos image in pod config examples
2 parents 251ada6 + 90797ca commit 5892325

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

examples/kubernetes/access_points/specs/example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ metadata:
6767
spec:
6868
containers:
6969
- name: app
70-
image: centos
70+
image: centos:7
7171
command: ["/bin/sh"]
7272
args: ["-c", "while true; do echo $(date -u) >> /data-dir1/out.txt; sleep 5; done"]
7373
volumeMounts:

examples/kubernetes/cross_account_mount/specs/pod-static-prov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: app
8-
image: centos
8+
image: centos:7
99
command: ["/bin/sh"]
1010
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
1111
volumeMounts:

examples/kubernetes/cross_account_mount/specs/pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
spec:
1919
containers:
2020
- name: app
21-
image: centos
21+
image: centos:7
2222
command: ["/bin/sh"]
2323
args: ["-c", "while true; do echo $(date -u) >> /data/out; sleep 5; done"]
2424
volumeMounts:

examples/kubernetes/dynamic_provisioning/specs/pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
spec:
1919
containers:
2020
- name: app
21-
image: centos
21+
image: centos:7
2222
command: ["/bin/sh"]
2323
args: ["-c", "while true; do echo $(date -u) >> /data/out; sleep 5; done"]
2424
volumeMounts:

examples/kubernetes/encryption_in_transit/specs/pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: app
8-
image: centos
8+
image: centos:7
99
command: ["/bin/sh"]
1010
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
1111
volumeMounts:

examples/kubernetes/static_provisioning/specs/pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: app
8-
image: centos
8+
image: centos:7
99
command: ["/bin/sh"]
1010
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
1111
volumeMounts:

examples/kubernetes/volume_path/specs/example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ metadata:
7171
spec:
7272
containers:
7373
- name: app
74-
image: centos
74+
image: centos:7
7575
command: ["/bin/sh"]
7676
args: ["-c", "while true; do echo $(date -u) >> /data-dir1/out.txt; sleep 5; done"]
7777
volumeMounts:

0 commit comments

Comments
 (0)