Skip to content

Commit

Permalink
docs: Mark host firewall stable
Browse files Browse the repository at this point in the history
The remaining issues with the host firewall and kube-proxy are resolved.
The race condition on node labels was also addressed and the host
firewall's status is now present in cilium status. We can now mark the
host firewall stable regardless of KPR status.

Signed-off-by: Paul Chaignon <paul@cilium.io>
  • Loading branch information
pchaigno committed Aug 24, 2021
1 parent 8085dfa commit d9ddba4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Documentation/cmdref/cilium-agent.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 3 additions & 11 deletions Documentation/gettingstarted/host-firewall.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,13 @@

.. _host_firewall:

******************************************
Host Firewall (beta when using kube-proxy)
******************************************
*************
Host Firewall
*************

This document serves as an introduction to Cilium's host firewall, to enforce
security policies for Kubernetes nodes.

.. note::

The host firewall is a beta feature when running without our kube-proxy
replacement. In particular, two bugs need to be addressed before we can
consider this feature stable: :gh-issue:`12205` and :gh-issue:`14859`.
Please provide feedback and file a GitHub issue if you experience any
problems.

Enable the Host Firewall in Cilium
==================================

Expand Down
2 changes: 1 addition & 1 deletion daemon/cmd/daemon_main.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ func init() {
flags.Bool(option.EnableIdentityMark, true, "Enable setting identity mark for local traffic")
option.BindEnv(option.EnableIdentityMark)

flags.Bool(option.EnableHostFirewall, false, "Enable host network policies (beta when using kube-proxy)")
flags.Bool(option.EnableHostFirewall, false, "Enable host network policies")
option.BindEnv(option.EnableHostFirewall)

flags.String(option.NativeRoutingCIDR, "",
Expand Down

0 comments on commit d9ddba4

Please sign in to comment.