We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, privileged ksniff pod will run with istio-proxy sidecar if it runs in a namespace with injection enabled.
It would be great if we could add such label and annotation here:
ksniff/kube/kubernetes_api_service.go
Line 123 in b0b737c
Should be like that:
objectMetadata := v1.ObjectMeta{ GenerateName: "ksniff-", Namespace: k.targetNamespace, Labels: map[string]string{ "app": "ksniff", "app.kubernetes.io/name": "ksniff", "sidecar.istio.io/inject": "false", }, Annotations: map[string]string{ "sidecar.istio.io/inject": "false", }, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, privileged ksniff pod will run with istio-proxy sidecar if it runs in a namespace with injection enabled.
It would be great if we could add such label and annotation here:
ksniff/kube/kubernetes_api_service.go
Line 123 in b0b737c
Should be like that:
The text was updated successfully, but these errors were encountered: