Skip to content

1.2.0

Compare
Choose a tag to compare
@pat-s pat-s released this 07 Mar 15:51
· 60 commits to main since this release

1.2.0 - 2024-03-04

✨ Features

  • Add PVC for agent [#163]. This removes the infinite registration of new agents through new agent pods.

Additional Information:

To clean old stale agents, the following commands can be executed on the database (Postgres example)

delete from agents where capacity=-1;
delete from agents where coalesce(name, '') = '';

This will clean a lot stale agents but not all.

Another way is to clean all agents for which the last contact is older than 1 day (thanks @zc-devs), one can do

delete from agents where last_contact < now() - interval '1 day';

Alternatively, one can remove all agents, then recreate the pod and the attached PV. This will reinitialize a fresh agent with a new ID.

🐛 Bug Fixes

  • fix volumeMounts if persistentVolume is not enabled [#160]

Misc

  • chore(deps): update jnorwood/helm-docs docker tag to v1.13.1 [#168]
  • chore(deps): update alpine/helm docker tag to v3.14.2 [#167]
  • chore(deps): update jnorwood/helm-docs docker tag to v1.13.0 [#166]
  • chore(deps): update dependency helm-unittest/helm-unittest to v0.4.2 [#165]
  • chore(deps): update alpine/helm docker tag to v3.14.1 [#164]
  • [pre-commit.ci] pre-commit autoupdate [#159]