Deploy the storage scrubbers in elastic staging
In order to upgrade and reactivate the storage scubbers in the elastic infra
-
Create the helm charts to deploy them -
Upgrade the toolbox configuration to be able to register the checkers -
Deploy in staging -
Add the scrubber configurations [1] -
Decommission scrubber0.internal.staging.swh.network
[1] Declare the scrubber configurations:
- for
swh
# in 2 loops to group the ids
for type in directory snapshot release revision
do
swh scrubber check init storage --object-type=$type --name storage-references-$type --no-check-hashes
done
for type in directory snapshot release revision
do
swh scrubber check init storage --object-type=$type --name storage-hashes-$type --no-check-references
done
- for
swh-cassandra
# in 2 loops to group the ids
for type in directory snapshot release revision
do
swh scrubber check init storage --object-type=$type --name storage-cassandra-references-$type --no-check-hashes
done
for type in directory snapshot release revision
do
swh scrubber check init storage --object-type=$type --name storage-cassandra-hashes-$type --no-check-references
done
Edited by Vincent Sellier