Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
fix configpath pointers
  • Loading branch information
dciangot authored Apr 15, 2024
1 parent 2f705ba commit 95ad78f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/virtual-kubelet/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ func main() {
}

cfg := Config{
ConfigPath: configpath,
NodeName: nodename,
ConfigPath: *configpath,
NodeName: *nodename,
OperatingSystem: "Linux",
// https://github.com/liqotech/liqo/blob/d8798732002abb7452c2ff1c99b3e5098f848c93/deployments/liqo/templates/liqo-gateway-deployment.yaml#L69
InternalIP: os.Getenv("POD_IP"),
Expand Down

0 comments on commit 95ad78f

Please sign in to comment.