I use a board with 4 fixed wired INA's on board with fixed adresses.
Unfortunately the INA219 node is configured to use 2 standard adresses an 2 other adresses, which first seemed to make the node useless, since the adresses are fixed and connot be changed during the setup process.
But there is a fix. Looking in the ina.html in the node-red directory i saw, that it can be edited.
Editing this part
<script type="text/x-red" data-template-name="ina-sensor-manager">
<div class="form-row">
<label for="node-config-input-address"><i class= "icon-bookmark"></i>Address of ina</label>
<select id= "node-config-input-address">
<option value=0x40> 0x40 </option>
<option value=0x41> 0x41 </option>
<option value=0x44> 0x44 </option>
<option value=0x45> 0x45 </option>
</select>
</div>
was successful to use the fixed adresses of my board.
I wanted to post that just in case someone else ran in trouble like i did.