mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-09 04:19:22 +00:00
🔨 Add default value for Dex node selector terms (#1740)
This commit is contained in:
parent
a6eabbbdee
commit
25ecc18d39
@ -50,6 +50,17 @@ func CreateDefaultConfig() ConfigStruct {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Dex: []v1.NodeSelectorTerm{
|
||||||
|
{
|
||||||
|
MatchExpressions: []v1.NodeSelectorRequirement{
|
||||||
|
{
|
||||||
|
Key: "kubernetes.io/os",
|
||||||
|
Operator: v1.NodeSelectorOpIn,
|
||||||
|
Values: []string{"linux"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Tolerations: configStructs.TolerationsConfig{
|
Tolerations: configStructs.TolerationsConfig{
|
||||||
Workers: []v1.Toleration{
|
Workers: []v1.Toleration{
|
||||||
|
Loading…
Reference in New Issue
Block a user