1. 12 Dec, 2023 6 commits
    • Kirill Smelkov's avatar
      wendelin.core: Unbreak tests · 7f7ff9c0
      Kirill Smelkov authored
      After d8409763 (NEO: default ZODB was changed to 5) wendelin.core tests
      started to fail to build because files, that the tests extend from, were
      renamed on neoppod side. Example failure:
      
          An internal error occurred due to a bug in either zc.buildout or in a
          recipe being used:
          Traceback (most recent call last):
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 2359, in main
              user_defaults, command, args)
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 312, in __init__
              data['buildout'], override))
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 1974, in _open
              seen, processing))
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 1974, in _open
              seen, processing))
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 1974, in _open
              seen, processing))
            File "/opt/slapos/eggs/zc.buildout-2.7.1+slapos019-py3.7.egg/zc/buildout/buildout.py", line 1940, in _open
              with open(downloaded_filename) as fp:
          FileNotFoundError: [Errno 2] No such file or directory: '/srv/slapgrid/slappart49/srv/project/slapos/software/neoppod/software-zodb5.cfg'
      
      -> Fix it by adjusting wendelin.core tests correspondingly.
      
      Similarly to 339490eb (components/zodbtools: reorganize test profiles)
      make each test profile to explicitly indicate which configuration it
      tests against.
      
      Drop support for testing pristine ZODB4 - now only ZODB5 and ZODB4-wc2 remain.
      
      We can drop test coverage for ZODB4 because slapos mainline switched to
      ZODB5 to be used by default in 1c51c4cd (stack/erp5: version up all zope
      stack (Zope 4.8.7), and because wendelin.core 2 works only with ZODB5
      and ZODB4-wc2, but not with plain ZODB4.
      7f7ff9c0
    • Joanne Hugé's avatar
      software/ors-amarisoft: update changelog · 6765c349
      Joanne Hugé authored
      6765c349
    • Jérome Perrin's avatar
    • Levin Zimmermann's avatar
      software/wendelin: Set with-max-rlimit-nofile default to true · 67a38887
      Levin Zimmermann authored
      In Wendelin we mostly always want to run our zopes with the soft limit
      set to the hard limit.
      
      /reviewed-by @jerome, @jm, @rafael, @vpelletier
      /reviewed-on nexedi/slapos!1465
      
      ---
      
      This patch was already added in nexedi/slapos!1451, but
      removed (by force push), due to issues discussed in nexedi/slapos!1451 (comment 193296).
      67a38887
    • Levin Zimmermann's avatar
      software/erp5: Add with-max-rlimit-nofile option · f55f0c0c
      Levin Zimmermann authored
      erp5@39369169 added the functionality to ERP5 to
      set its soft limit of allowed open file descriptors to the system wide hard limit.
      This parameter is useful for Wendelin based instances where the 1024
      limit is easily reached.
      
      With this patch, this parameter can also be set via SlapOS, which
      simplifies usage of the Wendelin SR.
      
      /reviewed-by @jerome, @jm, @rafael, @vpelletier
      /reviewed-on !1465
      
      ---
      
      This patch was already added in !1451, but
      removed (by force push), due to issues discussed in !1451 (comment 193296).
      f55f0c0c
    • Thomas Gambier's avatar
      software/cloudooo: fix input schema JSON · 8103c4f9
      Thomas Gambier authored
      8103c4f9
  2. 08 Dec, 2023 4 commits
  3. 07 Dec, 2023 1 commit
  4. 05 Dec, 2023 2 commits
  5. 04 Dec, 2023 18 commits
  6. 01 Dec, 2023 3 commits
  7. 30 Nov, 2023 3 commits
  8. 29 Nov, 2023 3 commits
    • Kirill Smelkov's avatar
      fixup! software/ors-amarisoft: remove redundant netconf supervision subsciption · f9819ca1
      Kirill Smelkov authored
      - remove no longer used ru/lopcomm/supervision.jinja2.py
      - restore removed `+ keep on touching RU watchdog` comment.
        Now it relates to ru/lopcomm/stats which became responsible for this function.
      - move code of RU-netconf-connection promise to be located nearby stats service
        because this promise interacts with that service, and grouping code by
        interaction makes it easier to understand for humans. Previously
        RU-netconf-connection was interacting with supervision service whcsh is gone
        after the patch in question.
      - use double vertical space to delimit logical sections from each other.
      
      open questions:
      
      - before the patch in question stats code was reconnecting after each error
        with 10 seconds pause. Now it logs it wants to reconnect but does _not_
        because top-level `while True` was removed. Was that intended?
      
        If it was not the intent then new stats code will fail after any single error
        and won't reconnect to RU by itself.
      
      /reviewed-by @lu.xu
      /reviewed-on nexedi/slapos!1483
      f9819ca1
    • Kirill Smelkov's avatar
      software/ors-amarisoft: enb: Factor rx-saturated promise to generic ru library and to be per-RU · 85db2a47
      Kirill Smelkov authored
      Similarly to sdr-busy, if we have several radio units, we want each of them to
      have its own rx-saturated promise.
      
      See slapos.toolbox!126 for
      corresponding part in slapos.toolbox that makes check_rx_saturated per-RU
      configurable.
      
      Not touching gnb.jinja2.cfg as currently gnb does not support multicell at all,
      and in the future it will be sole enb.cfg to handle both LTE and NR
      simultaneously.
      
      /cc @xavier_thompson, @Daetalus
      /reviewed-by @jhuge, @lu.xu
      /reviewed-on !1485
      85db2a47
    • Kirill Smelkov's avatar
      software/ors-amarisoft: enb: Factor sdr-busy promise to generic ru library and to be per-RU · ea2536db
      Kirill Smelkov authored
      If we have several radio units, we want each of them to have its own sdr-busy promise.
      
      See slapos.toolbox!125 for
      corresponding part in slapos.toolbox that makes check_sdr_busy per-RU
      configurable.
      
      Not touching gnb.jinja2.cfg as currently gnb does not support multicell at all,
      and in the future it will be sole enb.cfg to handle both LTE and NR
      simultaneously.
      
      /cc @xavier_thompson, @Daetalus
      /reviewed-by @jhuge, @lu.xu
      /reviewed-on !1485
      ea2536db