mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-04 03:48:58 +00:00
✨ Template the controller
field in IngressClass
resource
This commit is contained in:
parent
bc031be0fe
commit
4ef91a2701
@ -87,6 +87,7 @@ type AuthConfig struct {
|
||||
type IngressConfig struct {
|
||||
Enabled bool `yaml:"enabled" json:"enabled" default:"false"`
|
||||
ClassName string `yaml:"className" json:"className" default:"kubeshark-ingress-class"`
|
||||
Controller string `yaml:"controller" json:"controller" default:"k8s.io/ingress-nginx"`
|
||||
Host string `yaml:"host" json:"host" default:"ks.svc.cluster.local"`
|
||||
TLS []networking.IngressTLS `yaml:"tls" json:"tls"`
|
||||
Auth AuthConfig `yaml:"auth" json:"auth"`
|
||||
|
@ -11,5 +11,5 @@ metadata:
|
||||
name: kubeshark-ingress-class
|
||||
namespace: {{ .Values.tap.selfnamespace }}
|
||||
spec:
|
||||
controller: k8s.io/ingress-nginx
|
||||
controller: {{ .Values.tap.ingress.controller }}
|
||||
{{- end }}
|
||||
|
@ -46,6 +46,7 @@ tap:
|
||||
ingress:
|
||||
enabled: false
|
||||
className: kubeshark-ingress-class
|
||||
controller: k8s.io/ingress-nginx
|
||||
host: ks.svc.cluster.local
|
||||
tls: []
|
||||
auth:
|
||||
|
Loading…
Reference in New Issue
Block a user