Posted On August 24, 2021

A Quick Note On How To Preserve Client Source IP’s on K8s Services

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> A Quick Note On How To Preserve Client Source IP’s on K8s Services
namespace=ingress-nginx
servicename=ingress-nginx-controller
kubectl edit svc $servicename -n $namespace

# edit this value from Cluster to Local - esc+wq+enter to save
  externalTrafficPolicy: Local

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

AWS Highlights

Features: 1. Multi-regions: compliance with Section 404 of COBIT requirements 2. Amazon S3 with redundancy,…

PowerShell: Set Virtual Machine Default Paths on Hyper-V Host of a Cluster

$newVirtualMachinePath='D:\VirtualMachines' $newVirtualHardDiskPath='D:\VirtualMachines' function getHyperVHostsInForest{ function includeRSAT{ $ErrorActionPreference='stop' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #$rsatWindows7x32='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu' $rsatWindows7x64='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu' $rsatWindows81='https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu' $rsat1709 =…

Docker: Staging Intermediary Containers

Benefits: - Smaller footprints of exposed containers- Less attack surfaces leads to minimum vulnerabilities- Job…