# kubernetes-sidecar-injector **Repository Path**: mirrors_addons/kubernetes-sidecar-injector ## Basic Information - **Project Name**: kubernetes-sidecar-injector - **Description**: Easy Service Mesh with Kong and Kubernetes - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DEPRECATED This repository has been deprecated. Please use docs for [Kong for Kubernetes](https://docs.konghq.com/1.4.x/kong-for-kubernetes/) for installation and configuration of Kong on Kubernetes. # Howto ## Minikube Start minikube with mutation admission webhook support. ``` minikube start ``` Old minikube/kubernetes < 1.9 will need this --extra-config: ``` minikube start --extra-config=apiserver.admission-control="NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota" ``` For inspecting the running system inside of minikube with docker, run: ``` eval $(minikube docker-env) ``` ## Setup Kong ``` ### Run Kong on k8s git clone https://github.com/Kong/kong-dist-kubernetes.git cd kong-dist-kubernetes make run_ kubectl -n kong get all ### Turn on kong plugins kubectl port-forward -n kong svc/kong-control-plane 8001:8001 & curl localhost:8001/plugins -d name=kubernetes-sidecar-injector ### Turn on sidecar injection cat <