Skip to content

Commit 7feb6b8

Browse files
authored
Merge pull request #392 from hhyasdf/release/v0.8.4
[CHERRY PICK] release for v0.8.4
2 parents 4b0ef6a + 1fc0762 commit 7feb6b8

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

pkg/daemon/controller/utils.go

+5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ func (t *simpleTriggerSource) Start(ctx context.Context, handler handler.EventHa
5959
}
6060

6161
func (t *simpleTriggerSource) Trigger() {
62+
// do nothing if source is not started
63+
if t.queue == nil {
64+
return
65+
}
66+
6267
t.queue.Add(reconcile.Request{NamespacedName: types.NamespacedName{
6368
Name: t.key,
6469
}})

pkg/daemon/iptables/iptables.go

+8-5
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,14 @@ const (
4949
ChainHybridnetFromRuleSkip = CustomChainPrefix + "FROM-RULE-SKIP"
5050
ChainHybridnetPodToNodeTrafficMark = CustomChainPrefix + "POD-TO-NODE-MARK"
5151

52-
HybridnetOverlayNetSetName = "HYBRIDNET-OVERLAY-NET"
53-
HybridnetAllIPSetName = "HYBRIDNET-ALL"
54-
HybridnetNodeIPSetName = "HYBRIDNET-NODE-IP"
55-
HybridnetLocalPodIPSetName = "HYBRIDNET-LOCAL-POD-IP"
56-
HybridnetLocalUnderlayNetSetName = "HYBRIDNET-LOCAL-UNDERLAY-NET"
52+
// The origin ip set name below should not be longer than 25 characters, because v6 ip set name will get an "inet6:" prefix,
53+
// and the actual length of ip set name should not be longer than 31 characters.
54+
55+
HybridnetOverlayNetSetName = "HYBR-OVERLAY-NET"
56+
HybridnetAllIPSetName = "HYBR-ALL"
57+
HybridnetNodeIPSetName = "HYBR-NODE-IP"
58+
HybridnetLocalPodIPSetName = "HYBR-LOCAL-POD-IP"
59+
HybridnetLocalUnderlayNetSetName = "HYBR-LOCAL-UNDERLAY-NET"
5760

5861
PodToNodeBackTrafficMarkString = "0x20"
5962
FullNATedPodTrafficMarkString = "0x40"

0 commit comments

Comments
 (0)