-
Notifications
You must be signed in to change notification settings - Fork 21
Multiple s3gw Instances in one Kubernetes Cluster
Moritz Röhrich edited this page Apr 5, 2023
·
3 revisions
Overview of the highlevel architecture of a two-node Kubernetes cluster with two instances of the s3gw, two bucktes and its own volume each:
---
title: s3gw Architecture
---
flowchart LR;
subgraph cluster [Kubernetes]
direction TB;
subgraph node1[Node 1]
direction LR;
subgraph s3gw1[s3gw 1]
direction TB;
bucket1;
bucket2;
end
volume1[Longhorn Volume 1];
subgraph storage1
direction TB;
disk1;
disk2;
end
end
subgraph node2[Node 2]
direction LR;
subgraph s3gw2[s3gw 2]
direction TB;
bucket3;
bucket4;
end
volume2[Longhorn Volume 2];
subgraph storage2
direction TB;
disk3;
disk4;
end
end
subgraph ingress[Ingress]
subgraph ingress1[s3gw 1 ingress]
direction TB;
i1["bucket{1,2}.s3gw1.endpoint"];
end
subgraph ingress2[s3gw 2 ingress]
direction TB;
i2["bucket{3,4}.s3gw2.endpoint"];
end
end
end
c1[S3 client];
c1 --> i1;
i1 --> bucket1;
i1 --> bucket2;
c1 --> i2;
i2 --> bucket3;
i2 --> bucket4;
s3gw1 --> volume1 --> disk1 & disk3;
s3gw2 --> volume2 --> disk2 & disk4;
- v0.17.0 - 2023-06-08
- v0.16.0 - 2023-05-12
- v0.15.0 - 2023-04-28
- v0.14.0 - 2023-03-30
- v0.13.0 - 2023-03-09
- v0.12.0 - 2023-02-17
- v0.11.0 - 2023-01-27
- v0.10.0 - 2022-12-22
- v0.9.1 - 2022-12-07
- v0.9.0 - 2022-12-01
- v0.8.0 - 2022-11-11
- v0.7.0 - 2022-10-20
- v0.6.1 - 2022-10-05
- v0.6.0 - 2022-09-29
- v0.5.0 - 2022-09-15
- v0.4.0 - 2022-09-01
- v0.3.0 - 2022-08-05
- v0.2.0 - 2022-07-28
- v0.1.0 - 2022-07-14