We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d353cf commit bdb3862Copy full SHA for bdb3862
.github/workflows/multinode.yml
@@ -150,8 +150,9 @@ jobs:
150
- name: Generate a VXLAN VNI
151
id: vxlan_vni
152
run: |
153
- # VXLAN VNI is 24 bits
154
- max_vni=$(((2 << (24 - 1)) - 1))
+ # There is an undocumented restriction limiting us to a max VNI of
+ # 100,000.
155
+ max_vni=100000
156
timestamp=$(date +%s)
157
vni=$(((timestamp % max_vni) + 1))
158
echo vxlan_vni=$vni >> $GITHUB_OUTPUT
0 commit comments