Skip to content

Commit a79379c

Browse files
committed
fix liqo on raspbain os
1 parent 373dc94 commit a79379c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

deployments/liqo/templates/liqo-proxy-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
securityContext:
2929
{{- include "liqo.podSecurityContext" . | nindent 8 }}
3030
containers:
31-
- image: {{ .Values.proxy.image.name }}{{ include "liqo.suffix" $proxyConfig }}:{{ include "liqo.version" $proxyConfig }}
31+
- image: {{ .Values.proxy.image.name }}
3232
imagePullPolicy: {{ .Values.pullPolicy }}
3333
name: {{ $proxyConfig.name }}
3434
securityContext:

deployments/liqo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ proxy:
637637
priorityClassName: ""
638638
image:
639639
# -- Image repository for the proxy pod.
640-
name: "ghcr.io/liqotech/proxy"
640+
name: "thegrandpkizzle/envoy:1.26.1"
641641
# -- Custom version for the proxy image. If not specified, the global tag is used.
642642
version: ""
643643
service:

pkg/utils/network/netmonitor/netmonitor.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,22 @@ func InterfacesMonitoring(ctx context.Context, eventChannel chan event.GenericEv
131131
for {
132132
select {
133133
case updateLink := <-chLink:
134+
klog.Info("Link update received")
134135
if options.Link != nil {
135136
handleLinkUpdate(&updateLink, options.Link, interfaces, eventChannel)
136137
}
137138
case updateAddr := <-chAddr:
139+
klog.Info("Addr update received")
138140
if options.Addr != nil {
139141
handleAddrUpdate(&updateAddr, options.Addr, eventChannel)
140142
}
141143
case updateRoute := <-chRoute:
144+
klog.Info("Route update received")
142145
if options.Route != nil {
143146
handleRouteUpdate(&updateRoute, options.Route, eventChannel)
144147
}
145148
case updateNft := <-chNft:
149+
klog.Info("Nft update received")
146150
if updateNft != nil && options.Nftables != nil {
147151
handleNftUpdate(updateNft, options.Nftables, eventChannel)
148152
}

0 commit comments

Comments
 (0)