docs: add Euronodes Object Storage, consolidate storage docs
This commit is contained in:
parent
e7b77043b9
commit
9a768f3816
1 changed files with 69 additions and 0 deletions
69
OBJECT-STORAGE.md
Normal file
69
OBJECT-STORAGE.md
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
# Object Storage - Rede5
|
||||
|
||||
Servicos de armazenamento de objetos para backup e credenciais.
|
||||
|
||||
---
|
||||
|
||||
## Civo Object Storage (NYC1)
|
||||
|
||||
| Propriedade | Valor |
|
||||
|-------------|-------|
|
||||
| Endpoint | https://objectstore.nyc1.civo.com |
|
||||
| Region | NYC1 |
|
||||
| Bucket | rede5 |
|
||||
| Arquivo | `~/.ssh/civo-object-storage` |
|
||||
|
||||
## Euronodes Object Storage (EU)
|
||||
|
||||
| Propriedade | Valor |
|
||||
|-------------|-------|
|
||||
| Endpoint | https://eu-west-1.euronodes.com |
|
||||
| Region | eu-west-1 |
|
||||
| Arquivo | `~/.ssh/euronodes-object-storage` |
|
||||
|
||||
---
|
||||
|
||||
## Configuracao AWS CLI
|
||||
|
||||
```bash
|
||||
# Para Civo
|
||||
aws configure --profile civo
|
||||
# Access Key: <ver arquivo>
|
||||
# Secret Key: <ver arquivo>
|
||||
# Region: NYC1
|
||||
# Output: json
|
||||
|
||||
# Para Euronodes
|
||||
aws configure --profile euronodes
|
||||
# Access Key: <ver arquivo>
|
||||
# Secret Key: <ver arquivo>
|
||||
# Region: eu-west-1
|
||||
# Output: json
|
||||
```
|
||||
|
||||
## Comandos
|
||||
|
||||
```bash
|
||||
# Listar buckets - Civo
|
||||
aws s3 ls --endpoint-url https://objectstore.nyc1.civo.com --profile civo
|
||||
|
||||
# Listar buckets - Euronodes
|
||||
aws s3 ls --endpoint-url https://eu-west-1.euronodes.com --profile euronodes
|
||||
|
||||
# Upload backup SSH - Civo
|
||||
aws s3 sync ~/.ssh/ s3://rede5/vault/ssh/ --endpoint-url https://objectstore.nyc1.civo.com --profile civo
|
||||
|
||||
# Upload backup SSH - Euronodes
|
||||
aws s3 sync ~/.ssh/ s3://vault/ssh/ --endpoint-url https://eu-west-1.euronodes.com --profile euronodes
|
||||
|
||||
# Download backup
|
||||
aws s3 sync s3://rede5/vault/ssh/ ~/.ssh/ --endpoint-url https://objectstore.nyc1.civo.com --profile civo
|
||||
```
|
||||
|
||||
## Vault Local
|
||||
|
||||
Backup local em: `~/.ssh/vault/`
|
||||
|
||||
---
|
||||
|
||||
*Atualizado em: 2026-02-21*
|
||||
Loading…
Reference in a new issue