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 92032ca commit a982da8Copy full SHA for a982da8
infra/gcp/terraform/k8s-infra-gcp-gcve/vsphere/scripts/boskos-userdata.sh
@@ -17,16 +17,16 @@
17
function printProjectUserData() {
18
NR="${1}"
19
20
- S2="$(($(($(($NR-1))*16))))"
21
- E2="$(($(($NR*16))-1))"
+ S2="$(($(($((NR-1))*16))))"
+ E2="$(($((NR*16))-1))"
22
23
- S1="$((${S2}/256))"
24
- E1="$((${E2}/256))"
25
- S2="$((${S2}%256))"
26
- E2="$((${E2}%256))"
+ S1="$((S2/256))"
+ E1="$((E2/256))"
+ S2="$((S2%256))"
+ E2="$((E2%256))"
27
28
- START="192.168.$((33+$S1)).${S2}"
29
- END="192.168.$((33+$E1)).${E2}"
+ START="192.168.$((33+S1)).${S2}"
+ END="192.168.$((33+E1)).${E2}"
30
31
printf "k8s-infra-e2e-gcp-gcve-project-%03d:\n" "${NR}"
32
printf " folder: /Datacenter/vm/prow/k8s-infra-e2e-gcp-gcve-project-%03d\n" "${NR}"
0 commit comments