Skip to content

Commit b728565

Browse files
committed
fix typo in LocalManager parameters
Signed-off-by: Michael Friese <mfriese@microsoft.com>
1 parent 01a1f10 commit b728565

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,19 +265,19 @@ func main() {
265265
globalParams.Set("remote-address", remoteAddress)
266266
rtParams = runtime.ParamDescs().ToParams()
267267
if k8sNamespace != "" {
268-
pv["operator.LocalManageer.k8s-namespace"] = k8sNamespace
268+
pv["operator.LocalManager.k8s-namespace"] = k8sNamespace
269269
}
270270
if k8sContainername != "" {
271-
pv["operator.LocalManageer.k8s-containername"] = k8sContainername
271+
pv["operator.LocalManager.k8s-containername"] = k8sContainername
272272
}
273273
if k8sPodname != "" {
274-
pv["operator.LocalManageer.k8s-podname"] = k8sPodname
274+
pv["operator.LocalManager.k8s-podname"] = k8sPodname
275275
}
276276
if k8sSelector != "" {
277-
pv["operator.LocalManageer.k8s-selector"] = k8sSelector
277+
pv["operator.LocalManager.k8s-selector"] = k8sSelector
278278
}
279279
if runtimeContainername != "" {
280-
pv["operator.LocalManageer.runtime-containername"] = runtimeContainername
280+
pv["operator.LocalManager.runtime-containername"] = runtimeContainername
281281
}
282282
case "ig-k8s":
283283
runtime = grpcruntime.New(grpcruntime.WithConnectUsingK8SProxy)

0 commit comments

Comments
 (0)