File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type Config struct {
15
15
ImageSource string
16
16
// AtomicLevel is an atomically changeable, dynamic logging level.
17
17
AtomicLevel zap.AtomicLevel
18
- // FlagKeyValues holds the parsed NGF flag keys and values.
18
+ // FlagKeyValues contains the parsed NGF flag keys and values.
19
19
FlagKeyValues FlagKeyValues
20
20
// GatewayNsName is the namespaced name of a Gateway resource that the Gateway will use.
21
21
// The Gateway will ignore all other Gateway resources.
@@ -108,12 +108,12 @@ type UsageReportConfig struct {
108
108
InsecureSkipVerify bool
109
109
}
110
110
111
- // FlagKeyValues holds the parsed NGF flag keys and values.
111
+ // FlagKeyValues contains the parsed NGF flag keys and values.
112
112
// Flag Key and Value are paired based off of index in slice.
113
113
type FlagKeyValues struct {
114
- // FlagKeys holds the name of the flag.
114
+ // FlagKeys contains the name of the flag.
115
115
FlagKeys []string
116
- // FlagValues holds the value of the flag in string form.
116
+ // FlagValues contains the value of the flag in string form.
117
117
// Value will be either true or false for boolean flags and default or user-defined for non-boolean flags.
118
118
FlagValues []string
119
119
}
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ type DataCollectorConfig struct {
76
76
PodNSName types.NamespacedName
77
77
// ImageSource is the source of the NGF image.
78
78
ImageSource string
79
- // FlagKeyValues holds the parsed NGF flag keys and values.
79
+ // FlagKeyValues contains the parsed NGF flag keys and values.
80
80
FlagKeyValues config.FlagKeyValues
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments