Skip to content

Commit

Permalink
fix: apply feedback on tables
Browse files Browse the repository at this point in the history
Signed-off-by: Guilhem Barthés <guilhem.barthes@owkin.com>
  • Loading branch information
guilhem-barthes committed Jul 9, 2024
1 parent bffae23 commit 9059b0e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/source/reference/volumes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Orchestrator

The orchestrator claims are only linked with its database. This database (and the underlying volume) is important has it is where we store all the events that happen in the network.

+--------------+--------------+----------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+---------+
| PVC name | Component | Pod | access mode | Volume Size default (Gi) | storage class | reclaim policy | Can be reused | How to re use | Comment |
+==============+==============+==========+=================================+==========================+===============+================+===============+==============================================+=========+
| Postgres PVC | orchestrator | postgres | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | postgresql.primary.persistence.existingClaim | |
+--------------+--------------+----------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+---------+
+--------------+--------------+----------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+
| PVC name | Component | Pod | access mode | Volume Size default (Gi) | storage class | reclaim policy | Can be reused | How to re use |
+==============+==============+==========+=================================+==========================+===============+================+===============+==============================================+
| Postgres PVC | orchestrator | postgres | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | postgresql.primary.persistence.existingClaim |
+--------------+--------------+----------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+


Backend
Expand All @@ -25,17 +25,17 @@ The backend is the more compolex component and requires different volumes for fu
+=====================+===========+============+=================================+==========================+===============+================+===============+==============================================+====================================================+
| Postgres PVC | backend | postgres | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | postgresql.primary.persistence.existingClaim | |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| localstack PVC | backend | localstack | ReadWriteOnce (can be modified) | 5 | <empty> | default | yes | localstack.persistence.existingClaim | Only created when `localstack.enabled = true` |
| Localstack PVC | backend | localstack | ReadWriteOnce (can be modified) | 5 | <empty> | default | yes | localstack.persistence.existingClaim | Only created when `localstack.enabled = true` |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| minio PVC | backend | minio | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | minio.persistence.existingClaim | Only created when `minio.enabled = true` |
| Minio PVC | backend | minio | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | minio.persistence.existingClaim | Only created when `minio.enabled = true` |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| Redis PVC | backend | redis | ReadWriteOnce (can be modified) | 8 | <empty> | default | yes | redis.master.persistence.existingClaim | |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| Kaniko cache warmer | backend | builder | ReadWriteOnce | 10 | <empty> | default | No | | |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| builder PVC | backend | builder | ReadWriteOnce | 10 | <empty> | default | No | | |
| Builder PVC | backend | builder | ReadWriteOnce | 10 | <empty> | default | No | | |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| worker subtuple | backend | worker | ReadWriteOnce (can be modified) | 10 | <empty> | default | No | | |
| Worker subtuple | backend | worker | ReadWriteOnce (can be modified) | 10 | <empty> | default | No | | |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
| Docker registry | backend | registry | ReadWriteOnce (can be modified) | 10 | <empty> | default | yes | docker-registry.persistence.existingClaim | Only created when `docker-registry.enabled = true` |
+---------------------+-----------+------------+---------------------------------+--------------------------+---------------+----------------+---------------+----------------------------------------------+----------------------------------------------------+
Expand Down

0 comments on commit 9059b0e

Please sign in to comment.