Skip to content

Commit

Permalink
capitalise values for Host Firewall and Policy Audit Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ledroide committed Jun 14, 2024
1 parent 745f1a7 commit 149f203
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions roles/network_plugin/cilium/templates/cilium/config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ data:
enable-l2-announcements: "{{ cilium_l2announcements }}"

# Enable Bandwidth Manager
# Ciliums bandwidth manager supports the kubernetes.io/egress-bandwidth Pod annotation.
# Cilium's bandwidth manager supports the kubernetes.io/egress-bandwidth Pod annotation.
# Bandwidth enforcement currently does not work in combination with L7 Cilium Network Policies.
# In case they select the Pod at egress, then the bandwidth enforcement will be disabled for those Pods.
# Bandwidth Manager requires a v5.1.x or more recent Linux kernel.
Expand All @@ -147,8 +147,8 @@ data:
{% endif %}

# Host Firewall and Policy Audit Mode
enable-host-firewall: {{ cilium_enable_host_firewall | quote }}
policy-audit-mode: {{ cilium_policy_audit_mode | quote }}
enable-host-firewall: {{ cilium_enable_host_firewall | quote | capitalize }}
policy-audit-mode: {{ cilium_policy_audit_mode | quote | capitalize }}

# Name of the cluster. Only relevant when building a mesh of clusters.
cluster-name: "{{ cilium_cluster_name }}"
Expand Down

0 comments on commit 149f203

Please sign in to comment.