mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-24 15:24:17 +00:00
Add disableTlsLog command line option support for tracer (#1595)
This commit is contained in:
parent
ad738387b7
commit
a0eb85e71d
@ -189,6 +189,7 @@ type TapConfig struct {
|
|||||||
Resources ResourcesConfig `yaml:"resources" json:"resources"`
|
Resources ResourcesConfig `yaml:"resources" json:"resources"`
|
||||||
ServiceMesh bool `yaml:"serviceMesh" json:"serviceMesh" default:"true"`
|
ServiceMesh bool `yaml:"serviceMesh" json:"serviceMesh" default:"true"`
|
||||||
Tls bool `yaml:"tls" json:"tls" default:"true"`
|
Tls bool `yaml:"tls" json:"tls" default:"true"`
|
||||||
|
DisableTlsLog bool `yaml:"disableTlsLog" json:"disableTlsLog" default:"false"`
|
||||||
PacketCapture string `yaml:"packetCapture" json:"packetCapture" default:"best"`
|
PacketCapture string `yaml:"packetCapture" json:"packetCapture" default:"best"`
|
||||||
IgnoreTainted bool `yaml:"ignoreTainted" json:"ignoreTainted" default:"false"`
|
IgnoreTainted bool `yaml:"ignoreTainted" json:"ignoreTainted" default:"false"`
|
||||||
Labels map[string]string `yaml:"labels" json:"labels" default:"{}"`
|
Labels map[string]string `yaml:"labels" json:"labels" default:"{}"`
|
||||||
|
@ -166,6 +166,9 @@ spec:
|
|||||||
{{- if .Values.tap.debug }}
|
{{- if .Values.tap.debug }}
|
||||||
- -debug
|
- -debug
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.tap.disableTlsLog }}
|
||||||
|
- -disable-tls-log
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.tap.misc.profile }}
|
{{- if .Values.tap.misc.profile }}
|
||||||
- -port
|
- -port
|
||||||
- '{{ add .Values.tap.proxy.worker.srvPort 1 }}'
|
- '{{ add .Values.tap.proxy.worker.srvPort 1 }}'
|
||||||
|
Loading…
Reference in New Issue
Block a user