mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
4e8cc3d801
This enables api calls during the installer.
64 lines
2.2 KiB
Bash
64 lines
2.2 KiB
Bash
#!/bin/sh
|
|
[ -e /tmp/confluent.initq ] && return 0
|
|
echo -n "" > /tmp/confluent.initq
|
|
cd /sys/class/net
|
|
for currif in *; do
|
|
ip link set $currif up
|
|
done
|
|
cd -
|
|
while ! grep MANAGER /tmp/confluent.info >& /dev/null; do
|
|
/opt/confluent/bin/copernicus -t > /tmp/confluent.info
|
|
done
|
|
read ifidx <<EOF
|
|
$(grep ^MANAGER /tmp/confluent.info|grep fe80|sed -e s/.*%//)
|
|
EOF
|
|
read mgr << EOF
|
|
$(grep ^MANAGER /tmp/confluent.info|grep fe80|awk '{print $2}')
|
|
EOF
|
|
mgridx=${mgr#*%}
|
|
ifname=$(ip link |grep ^$ifidx:|awk '{print $2}')
|
|
ifname=${ifname%:}
|
|
echo $ifname > /tmp/net.ifaces
|
|
nodename=$(grep ^NODENAME /tmp/confluent.info|awk '{print $2}')
|
|
#TODO: blkid --label <whatever> to find mounted api
|
|
|
|
if [ -z "$apikey" ]; then
|
|
apikey=$(/opt/confluent/bin/clortho $nodename $mgr)
|
|
fi
|
|
oum=$(umask)
|
|
umask 0077
|
|
echo $apikey > /etc/confluent.apikey
|
|
umask $oum
|
|
mgr="[$mgr]"
|
|
curl -f -H "CONFLUENT_NODENAME: $nodename" -H "CONFLUENT_APIKEY: $apikey" https://$mgr/confluent-api/self/deploycfg > /tmp/confluent.deploycfg
|
|
|
|
mgr=$(grep ^ipv4_server: /tmp/confluent.deploycfg)
|
|
mgr=${mgr#ipv4_server: }
|
|
profilename=$(grep ^profile: /tmp/confluent.deploycfg)
|
|
profilename=${profilename#profile: }
|
|
proto=$(grep ^protocol: /tmp/confluent.deploycfg)
|
|
proto=${proto#protocol: }
|
|
echo inst.repo=$proto://$mgr/confluent-public/os/$profilename/distribution >> /etc/cmdline.d/01-confluent.conf
|
|
echo inst.ks=$proto://$mgr/confluent-public/os/$profilename/kickstart >> /etc/cmdline.d/01-confluent.conf
|
|
kickstart=$proto://$mgr/confluent-public/os/$profilename/kickstart
|
|
root=anaconda-net:$proto://$mgr/confluent-public/os/$profilename/distribution
|
|
export kickstart
|
|
export root
|
|
autoconfigmethod=$(grep ipv4_method /tmp/confluent.deploycfg)
|
|
autoconfigmethod=${autoconfigmethod#ipv4_method}
|
|
if [ "$autoconfigmethod" = "dhcp" ]; then
|
|
echo ip=$ifname:dhcp
|
|
else
|
|
v4addr=$(grep ^ipv4_address: /tmp/confluent.deploycfg)
|
|
v4addr=${v4addr#ipv4_address: }
|
|
v4gw=$(grep ^ipv4_gateway: /tmp/confluent.deploycfg)
|
|
v4gw=${v4gw#ipv4_gateway: }
|
|
if [ "$v4gw" = "null" ]; then
|
|
v4gw=""
|
|
fi
|
|
v4nm=$(grep ipv4_netmask: /tmp/confluent.deploycfg)
|
|
v4nm=${v4nm#ipv4_netmask: }
|
|
echo ip=$v4addr::$vpgw:$v4nm:$nodename:$ifname:none >> /etc/cmdline.d/01-confluent.conf
|
|
fi
|
|
|