Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01.kubernetes-in-action/Chapter13/pod-privileged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ spec:
image: alpine
command: ["/bin/sleep", "999999"]
securityContext:
privileged: true
privileged: false
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Pod
metadata:
name: pod-with-host-network
spec:
hostNetwork: true
hostNetwork: false
containers:
- name: main
image: alpine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Pod
metadata:
name: pod-with-host-pid-and-ipc
spec:
hostPID: true
hostPID: false
hostIPC: true
containers:
- name: main
Expand Down