Commit ecf00ca2ada97e472719fb66dd37a0c203c4b2b0

Authored by Alexis Koralewski
1 parent f658859b
Exists in dev

Add computer config for astroguita

CHANGELOG
  1 +02-02-2023 (AKo): v0.6.17.O
  2 + - Add computer config for astroguita
  3 +
  4 +01-02-2023 (AKo): v0.6.17.0
  5 + - Add parse arg function to Agent
  6 +
1 7 19-01-2023 (AKo): v0.6.17.0
2 8 - Add API docs to website
3 9 - Larger command column in agents commands list
... ...
privatedev/config/tnc/computer_astroguita.yml 0 → 100644
... ... @@ -0,0 +1,23 @@
  1 +# Schema file to check the syntax of this config file
  2 +schema: schema_computer-2.0.yml
  3 +
  4 +# Here is the description of the configuration of an isolated computer
  5 +COMPUTER:
  6 +
  7 + inventory_label: IRAP-xxx
  8 + manufacturer: HP
  9 + model: EliteBook840
  10 + description: "Intel(R)"
  11 + sn: xxx
  12 + power:
  13 + voltage: 19
  14 + intensity: 5
  15 + socket: "USB-C"
  16 +
  17 + hostname: ceres
  18 +
  19 + virtual_machine: False
  20 + os: Ubuntu
  21 + os_version: "22"
  22 + network_interfaces:
  23 + - 48-51-C5-DE-11-0B # Wifi
... ...
privatedev/config/tnc/observatory_tnc.yml
... ... @@ -153,6 +153,13 @@ OBSERVATORY:
153 153 # IP attributed by the Router
154 154 network_ip: 192.168.0.12
155 155  
  156 + - COMPUTER:
  157 + name: astroguitaComputer
  158 + file: computer_astroguita.yml
  159 + role: Main
  160 + network_interface_index: 0
  161 + # IP attributed by the Router
  162 + network_ip: 192.168.0.13
156 163  
157 164 # === Assembly of devices into units
158 165 # A unit is a robotic telescope
... ... @@ -371,7 +378,10 @@ OBSERVATORY:
371 378 - AGENT:
372 379 name: AgentSST1
373 380 computer: AKoralewskiPersoComputer
374   -
  381 + - AGENT:
  382 + name: AgentSST4
  383 + computer: astroguitaComputer
  384 +
375 385 - AGENT:
376 386 name: AgentSST2
377 387 computer: AKlotzPersoComputer
... ...