Skip to content

Commit

Permalink
CRI-O: Use localhost for stream server with random port
Browse files Browse the repository at this point in the history
This should work since it's the default in CRI-O with the merge of
cri-o/cri-o#1714. It slightly increases security
of the default configuration.

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
  • Loading branch information
saschagrunert committed Oct 16, 2023
1 parent 2513389 commit 7abbec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ contents:
version_file_persist = "/var/lib/crio/version"
[crio.api]
stream_address = ""
stream_port = "10010"
stream_address = "127.0.0.1"
stream_port = "0"
[crio.runtime]
selinux = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ contents:
version_file_persist = "/var/lib/crio/version"
[crio.api]
stream_address = ""
stream_port = "10010"
stream_address = "127.0.0.1"
stream_port = "0"
[crio.runtime]
selinux = true
Expand Down

0 comments on commit 7abbec0

Please sign in to comment.