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

Hyper-V: De-register Storage File Share and/or Removing Paths from VMM

# vmmDeregisterFileSharePath.ps1 $pathSearch='\\DECOMMISSIONED-FILESHARE008' $unregister=$true $remove=$false $fileShares=Get-SCStorageFileShare|?{$_.SharePath -like "*$pathSearch*"} $thisLibraryServer = Get-SCLibraryServer if($unregister){$fileShares|%{Unregister-SCStorageFileShare -StorageFileShare $_ -LibraryServer…

How to Clone VMWare Virtual Machine using CLI

1. SSH into the ESXi host to perform VM cloning via Command Line Interface (CLI)…

Step by Step Kubernetes Application Hosting: Persistent Storage, Pod Creation, Deployment Plan, Service Clustering, and Ingress Routing

Overview Update: we have a new article which goes directly into a production-style setup of…