mirror of https://github.com/linkerd/linkerd2.git
				
				
				
			Add `iptablesMode` flag to proxy-init (#8887)
This change introduces a new value to be used at install (or upgrade) time. The value (`proxyInit.iptablesMode=nft|legacy`) is responsible for starting the proxy-init container in nft or legacy mode. By default, the init container will use iptables-nft. When the mode is set to `nft`, it will instead use iptables-nft. Most modern Linux distributions support both, but a subset (such as RHEL based families) only support iptables-nft and nf_tables. Signed-off-by: Matei David <matei@buoyant.io>
This commit is contained in:
		
							parent
							
								
									b9915ad557
								
							
						
					
					
						commit
						9dd51d3897
					
				| 
						 | 
					@ -228,6 +228,7 @@ Kubernetes: `>=1.21.0-0`
 | 
				
			||||||
| proxyInit.image.name | string | `"cr.l5d.io/linkerd/proxy-init"` | Docker image for the proxy-init container |
 | 
					| proxyInit.image.name | string | `"cr.l5d.io/linkerd/proxy-init"` | Docker image for the proxy-init container |
 | 
				
			||||||
| proxyInit.image.pullPolicy | string | imagePullPolicy | Pull policy for the proxy-init container Docker image |
 | 
					| proxyInit.image.pullPolicy | string | imagePullPolicy | Pull policy for the proxy-init container Docker image |
 | 
				
			||||||
| proxyInit.image.version | string | `"v1.6.2"` | Tag for the proxy-init container Docker image |
 | 
					| proxyInit.image.version | string | `"v1.6.2"` | Tag for the proxy-init container Docker image |
 | 
				
			||||||
 | 
					| proxyInit.iptablesMode | string | `"nft"` | Variant of iptables that will be used to configure routing. Currently, proxy-init can be run either in 'nft' or in 'legacy' mode. The mode will control which utility binary will be called. The host must support whichever mode will be used |
 | 
				
			||||||
| proxyInit.logFormat | string | plain | Log format (`plain` or `json`) for the proxy-init |
 | 
					| proxyInit.logFormat | string | plain | Log format (`plain` or `json`) for the proxy-init |
 | 
				
			||||||
| proxyInit.logLevel | string | info | Log level for the proxy-init |
 | 
					| proxyInit.logLevel | string | info | Log level for the proxy-init |
 | 
				
			||||||
| proxyInit.resources.cpu.limit | string | `"100m"` | Maximum amount of CPU units that the proxy-init container can use |
 | 
					| proxyInit.resources.cpu.limit | string | `"100m"` | Maximum amount of CPU units that the proxy-init container can use |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -175,6 +175,11 @@ proxy:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# proxy-init configuration
 | 
					# proxy-init configuration
 | 
				
			||||||
proxyInit:
 | 
					proxyInit:
 | 
				
			||||||
 | 
					  # -- Variant of iptables that will be used to configure routing. Currently,
 | 
				
			||||||
 | 
					  # proxy-init can be run either in 'nft' or in 'legacy' mode. The mode will
 | 
				
			||||||
 | 
					  # control which utility binary will be called. The host must support
 | 
				
			||||||
 | 
					  # whichever mode will be used
 | 
				
			||||||
 | 
					  iptablesMode: "nft"
 | 
				
			||||||
  # -- Default set of inbound ports to skip via iptables
 | 
					  # -- Default set of inbound ports to skip via iptables
 | 
				
			||||||
  # - Galera (4567,4568)
 | 
					  # - Galera (4567,4568)
 | 
				
			||||||
  ignoreInboundPorts: "4567,4568"
 | 
					  ignoreInboundPorts: "4567,4568"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,13 @@
 | 
				
			||||||
{{- define "partials.proxy-init" -}}
 | 
					{{- define "partials.proxy-init" -}}
 | 
				
			||||||
args:
 | 
					args:
 | 
				
			||||||
 | 
					{{- if (eq .Values.proxyInit.iptablesMode "nft") }}
 | 
				
			||||||
 | 
					- --firewall-bin-path
 | 
				
			||||||
 | 
					- "iptables-nft"
 | 
				
			||||||
 | 
					- --firewall-save-bin-path
 | 
				
			||||||
 | 
					- "iptables-nft-save"
 | 
				
			||||||
 | 
					{{- else if not (eq .Values.proxyInit.iptablesMode "legacy") }}
 | 
				
			||||||
 | 
					{{ fail (printf "Unsupported value \"%s\" for proxyInit.iptablesMode\nValid values: [\"nft\", \"legacy\"]" .Values.proxyInit.iptablesMode) }}
 | 
				
			||||||
 | 
					{{- end }}
 | 
				
			||||||
- --incoming-proxy-port
 | 
					- --incoming-proxy-port
 | 
				
			||||||
- {{.Values.proxy.ports.inbound | quote}}
 | 
					- {{.Values.proxy.ports.inbound | quote}}
 | 
				
			||||||
- --outgoing-proxy-port
 | 
					- --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -101,6 +101,7 @@ func TestRender(t *testing.T) {
 | 
				
			||||||
			OpaquePorts: "25,443,587,3306,5432,11211",
 | 
								OpaquePorts: "25,443,587,3306,5432,11211",
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
		ProxyInit: &charts.ProxyInit{
 | 
							ProxyInit: &charts.ProxyInit{
 | 
				
			||||||
 | 
								IptablesMode: "nft",
 | 
				
			||||||
			Image: &charts.Image{
 | 
								Image: &charts.Image{
 | 
				
			||||||
				Name:       "ProxyInitImageName",
 | 
									Name:       "ProxyInitImageName",
 | 
				
			||||||
				PullPolicy: "ImagePullPolicy",
 | 
									PullPolicy: "ImagePullPolicy",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -149,6 +149,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -149,6 +149,10 @@ spec:
 | 
				
			||||||
          name: server
 | 
					          name: server
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -347,6 +351,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -149,6 +149,10 @@ spec:
 | 
				
			||||||
          name: server
 | 
					          name: server
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -189,6 +189,10 @@ spec:
 | 
				
			||||||
        - mountPath: /config
 | 
					        - mountPath: /config
 | 
				
			||||||
          name: contour-config
 | 
					          name: contour-config
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -160,6 +160,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -369,6 +373,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -578,6 +586,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -787,6 +799,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -160,6 +160,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -163,6 +163,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -152,6 +152,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -173,6 +173,10 @@ spec:
 | 
				
			||||||
          runAsUser: 33
 | 
					          runAsUser: 33
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -177,6 +177,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -160,6 +160,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -369,6 +373,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -165,6 +165,10 @@ spec:
 | 
				
			||||||
        terminationMessagePolicy: FallbackToLogsOnError
 | 
					        terminationMessagePolicy: FallbackToLogsOnError
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -160,6 +160,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -161,6 +161,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -161,6 +161,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -161,6 +161,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,6 +162,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,6 +162,10 @@ spec:
 | 
				
			||||||
          protocol: UDP
 | 
					          protocol: UDP
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,6 +162,10 @@ items:
 | 
				
			||||||
            name: http
 | 
					            name: http
 | 
				
			||||||
        initContainers:
 | 
					        initContainers:
 | 
				
			||||||
        - args:
 | 
					        - args:
 | 
				
			||||||
 | 
					          - --firewall-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft
 | 
				
			||||||
 | 
					          - --firewall-save-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft-save
 | 
				
			||||||
          - --incoming-proxy-port
 | 
					          - --incoming-proxy-port
 | 
				
			||||||
          - "4143"
 | 
					          - "4143"
 | 
				
			||||||
          - --outgoing-proxy-port
 | 
					          - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -365,6 +369,10 @@ items:
 | 
				
			||||||
            protocol: TCP
 | 
					            protocol: TCP
 | 
				
			||||||
        initContainers:
 | 
					        initContainers:
 | 
				
			||||||
        - args:
 | 
					        - args:
 | 
				
			||||||
 | 
					          - --firewall-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft
 | 
				
			||||||
 | 
					          - --firewall-save-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft-save
 | 
				
			||||||
          - --incoming-proxy-port
 | 
					          - --incoming-proxy-port
 | 
				
			||||||
          - "4143"
 | 
					          - "4143"
 | 
				
			||||||
          - --outgoing-proxy-port
 | 
					          - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,6 +162,10 @@ items:
 | 
				
			||||||
            name: http
 | 
					            name: http
 | 
				
			||||||
        initContainers:
 | 
					        initContainers:
 | 
				
			||||||
        - args:
 | 
					        - args:
 | 
				
			||||||
 | 
					          - --firewall-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft
 | 
				
			||||||
 | 
					          - --firewall-save-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft-save
 | 
				
			||||||
          - --incoming-proxy-port
 | 
					          - --incoming-proxy-port
 | 
				
			||||||
          - "4143"
 | 
					          - "4143"
 | 
				
			||||||
          - --outgoing-proxy-port
 | 
					          - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -365,6 +369,10 @@ items:
 | 
				
			||||||
            protocol: TCP
 | 
					            protocol: TCP
 | 
				
			||||||
        initContainers:
 | 
					        initContainers:
 | 
				
			||||||
        - args:
 | 
					        - args:
 | 
				
			||||||
 | 
					          - --firewall-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft
 | 
				
			||||||
 | 
					          - --firewall-save-bin-path
 | 
				
			||||||
 | 
					          - iptables-nft-save
 | 
				
			||||||
          - --incoming-proxy-port
 | 
					          - --incoming-proxy-port
 | 
				
			||||||
          - "4143"
 | 
					          - "4143"
 | 
				
			||||||
          - --outgoing-proxy-port
 | 
					          - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -144,6 +144,10 @@ spec:
 | 
				
			||||||
    name: vote-bot
 | 
					    name: vote-bot
 | 
				
			||||||
  initContainers:
 | 
					  initContainers:
 | 
				
			||||||
  - args:
 | 
					  - args:
 | 
				
			||||||
 | 
					    - --firewall-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft
 | 
				
			||||||
 | 
					    - --firewall-save-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft-save
 | 
				
			||||||
    - --incoming-proxy-port
 | 
					    - --incoming-proxy-port
 | 
				
			||||||
    - "4143"
 | 
					    - "4143"
 | 
				
			||||||
    - --outgoing-proxy-port
 | 
					    - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -147,6 +147,10 @@ spec:
 | 
				
			||||||
    name: vote-bot
 | 
					    name: vote-bot
 | 
				
			||||||
  initContainers:
 | 
					  initContainers:
 | 
				
			||||||
  - args:
 | 
					  - args:
 | 
				
			||||||
 | 
					    - --firewall-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft
 | 
				
			||||||
 | 
					    - --firewall-save-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft-save
 | 
				
			||||||
    - --incoming-proxy-port
 | 
					    - --incoming-proxy-port
 | 
				
			||||||
    - "4143"
 | 
					    - "4143"
 | 
				
			||||||
    - --outgoing-proxy-port
 | 
					    - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -146,6 +146,10 @@ spec:
 | 
				
			||||||
    name: vote-bot
 | 
					    name: vote-bot
 | 
				
			||||||
  initContainers:
 | 
					  initContainers:
 | 
				
			||||||
  - args:
 | 
					  - args:
 | 
				
			||||||
 | 
					    - --firewall-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft
 | 
				
			||||||
 | 
					    - --firewall-save-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft-save
 | 
				
			||||||
    - --incoming-proxy-port
 | 
					    - --incoming-proxy-port
 | 
				
			||||||
    - "4143"
 | 
					    - "4143"
 | 
				
			||||||
    - --outgoing-proxy-port
 | 
					    - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -155,6 +155,10 @@ spec:
 | 
				
			||||||
    name: vote-bot
 | 
					    name: vote-bot
 | 
				
			||||||
  initContainers:
 | 
					  initContainers:
 | 
				
			||||||
  - args:
 | 
					  - args:
 | 
				
			||||||
 | 
					    - --firewall-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft
 | 
				
			||||||
 | 
					    - --firewall-save-bin-path
 | 
				
			||||||
 | 
					    - iptables-nft-save
 | 
				
			||||||
    - --incoming-proxy-port
 | 
					    - --incoming-proxy-port
 | 
				
			||||||
    - "4143"
 | 
					    - "4143"
 | 
				
			||||||
    - --outgoing-proxy-port
 | 
					    - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -161,6 +161,10 @@ spec:
 | 
				
			||||||
          name: http
 | 
					          name: http
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,6 +162,10 @@ spec:
 | 
				
			||||||
        - containerPort: 9090
 | 
					        - containerPort: 9090
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -373,6 +377,10 @@ spec:
 | 
				
			||||||
        - containerPort: 9090
 | 
					        - containerPort: 9090
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -214,6 +214,10 @@ spec:
 | 
				
			||||||
      dnsPolicy: ClusterFirst
 | 
					      dnsPolicy: ClusterFirst
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - iptables-nft-save
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -881,6 +882,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1296,6 +1301,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1597,6 +1606,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: my.custom.registry/linkerd-io/proxy-init
 | 
					        name: my.custom.registry/linkerd-io/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -878,6 +879,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-end-entity
 | 
					          name: linkerd-identity-end-entity
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1283,6 +1288,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1575,6 +1584,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -591,6 +591,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -962,6 +963,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1422,6 +1427,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1759,6 +1768,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -591,6 +591,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -962,6 +963,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1422,6 +1427,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1759,6 +1768,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -495,6 +495,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -811,6 +812,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1225,6 +1230,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1476,6 +1485,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -540,6 +540,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: test-proxy-init-version
 | 
					        version: test-proxy-init-version
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -850,6 +851,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1267,6 +1272,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1573,6 +1582,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -567,6 +567,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: test-proxy-init-version
 | 
					        version: test-proxy-init-version
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -932,6 +933,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1395,6 +1400,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1737,6 +1746,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -571,6 +571,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: test-proxy-init-version
 | 
					        version: test-proxy-init-version
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -940,6 +941,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1407,6 +1412,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1757,6 +1766,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -562,6 +562,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: test-proxy-init-version
 | 
					        version: test-proxy-init-version
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -922,6 +923,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1385,6 +1390,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1727,6 +1736,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -557,6 +557,7 @@ data:
 | 
				
			||||||
        name: ProxyInitImageName
 | 
					        name: ProxyInitImageName
 | 
				
			||||||
        pullPolicy: ImagePullPolicy
 | 
					        pullPolicy: ImagePullPolicy
 | 
				
			||||||
        version: ProxyInitVersion
 | 
					        version: ProxyInitVersion
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -871,6 +872,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1290,6 +1295,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1591,6 +1600,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -564,6 +564,7 @@ data:
 | 
				
			||||||
        name: cr.l5d.io/linkerd/proxy-init
 | 
					        name: cr.l5d.io/linkerd/proxy-init
 | 
				
			||||||
        pullPolicy: ""
 | 
					        pullPolicy: ""
 | 
				
			||||||
        version: v1.6.2
 | 
					        version: v1.6.2
 | 
				
			||||||
 | 
					      iptablesMode: nft
 | 
				
			||||||
      logFormat: ""
 | 
					      logFormat: ""
 | 
				
			||||||
      logLevel: ""
 | 
					      logLevel: ""
 | 
				
			||||||
      resources:
 | 
					      resources:
 | 
				
			||||||
| 
						 | 
					@ -880,6 +881,10 @@ spec:
 | 
				
			||||||
          name: linkerd-identity-token
 | 
					          name: linkerd-identity-token
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1294,6 +1299,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					@ -1595,6 +1604,10 @@ spec:
 | 
				
			||||||
          readOnly: true
 | 
					          readOnly: true
 | 
				
			||||||
      initContainers:
 | 
					      initContainers:
 | 
				
			||||||
      - args:
 | 
					      - args:
 | 
				
			||||||
 | 
					        - --firewall-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft"
 | 
				
			||||||
 | 
					        - --firewall-save-bin-path
 | 
				
			||||||
 | 
					        - "iptables-nft-save"
 | 
				
			||||||
        - --incoming-proxy-port
 | 
					        - --incoming-proxy-port
 | 
				
			||||||
        - "4143"
 | 
					        - "4143"
 | 
				
			||||||
        - --outgoing-proxy-port
 | 
					        - --outgoing-proxy-port
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,6 +42,10 @@
 | 
				
			||||||
    "path": "/spec/initContainers/-",
 | 
					    "path": "/spec/initContainers/-",
 | 
				
			||||||
    "value": {
 | 
					    "value": {
 | 
				
			||||||
      "args": [
 | 
					      "args": [
 | 
				
			||||||
 | 
					        "--firewall-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft",
 | 
				
			||||||
 | 
					        "--firewall-save-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft-save",
 | 
				
			||||||
        "--incoming-proxy-port",
 | 
					        "--incoming-proxy-port",
 | 
				
			||||||
        "4143",
 | 
					        "4143",
 | 
				
			||||||
        "--outgoing-proxy-port",
 | 
					        "--outgoing-proxy-port",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -52,6 +52,10 @@
 | 
				
			||||||
    "path": "/spec/initContainers/-",
 | 
					    "path": "/spec/initContainers/-",
 | 
				
			||||||
    "value": {
 | 
					    "value": {
 | 
				
			||||||
      "args": [
 | 
					      "args": [
 | 
				
			||||||
 | 
					        "--firewall-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft",
 | 
				
			||||||
 | 
					        "--firewall-save-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft-save",
 | 
				
			||||||
        "--incoming-proxy-port",
 | 
					        "--incoming-proxy-port",
 | 
				
			||||||
        "4143",
 | 
					        "4143",
 | 
				
			||||||
        "--outgoing-proxy-port",
 | 
					        "--outgoing-proxy-port",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,6 +42,10 @@
 | 
				
			||||||
    "path": "/spec/initContainers/-",
 | 
					    "path": "/spec/initContainers/-",
 | 
				
			||||||
    "value": {
 | 
					    "value": {
 | 
				
			||||||
      "args": [
 | 
					      "args": [
 | 
				
			||||||
 | 
					        "--firewall-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft",
 | 
				
			||||||
 | 
					        "--firewall-save-bin-path",
 | 
				
			||||||
 | 
					        "iptables-nft-save",
 | 
				
			||||||
        "--incoming-proxy-port",
 | 
					        "--incoming-proxy-port",
 | 
				
			||||||
        "4143",
 | 
					        "4143",
 | 
				
			||||||
        "--outgoing-proxy-port",
 | 
					        "--outgoing-proxy-port",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -129,6 +129,7 @@ type (
 | 
				
			||||||
		Resources            *Resources       `json:"resources"`
 | 
							Resources            *Resources       `json:"resources"`
 | 
				
			||||||
		CloseWaitTimeoutSecs int64            `json:"closeWaitTimeoutSecs"`
 | 
							CloseWaitTimeoutSecs int64            `json:"closeWaitTimeoutSecs"`
 | 
				
			||||||
		RunAsRoot            bool             `json:"runAsRoot"`
 | 
							RunAsRoot            bool             `json:"runAsRoot"`
 | 
				
			||||||
 | 
							IptablesMode         string           `json:"iptablesMode"`
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// DebugContainer contains the fields to set the debugging sidecar
 | 
						// DebugContainer contains the fields to set the debugging sidecar
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -116,6 +116,7 @@ func TestNewValues(t *testing.T) {
 | 
				
			||||||
			Await:                  true,
 | 
								Await:                  true,
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
		ProxyInit: &ProxyInit{
 | 
							ProxyInit: &ProxyInit{
 | 
				
			||||||
 | 
								IptablesMode:        "nft",
 | 
				
			||||||
			IgnoreInboundPorts:  "4567,4568",
 | 
								IgnoreInboundPorts:  "4567,4568",
 | 
				
			||||||
			IgnoreOutboundPorts: "4567,4568",
 | 
								IgnoreOutboundPorts: "4567,4568",
 | 
				
			||||||
			LogLevel:            "",
 | 
								LogLevel:            "",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue