Skip to content

Commit

Permalink
fix: fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikRevich committed Dec 9, 2024
1 parent c182bdd commit 0bda592
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,33 @@ service:
# Represents credentials used for the selected provider.
credentials:
# Represents session identificator, used to distinguish different workspaces and thus separate content inside.
id: "1"
id: "3"

# Represents a path to the credentials CSV file, which contains both access
# and secret keys.
file: "~/.aws/credentials"
# and secret keys. Make sure you don't use "~" symbol.
file: "/Users/objectstorage/.aws/credentials/rootkey.csv"

# Represents a select region where the deployment of infrastructure will be performed.
# Remember that it may influence the availability of the ObjectStorage deployed infrastructure.
#
# This option can be applied to "s3" provider only.
region: "us-west-2"

- provider: "gcs"

# Represents credentials used for the selected provider.
credentials:
# Represents session identificator, used to distinguish different workspaces and thus separate content inside.
id: "1"

# Represents a path to the credentials CSV file, which contains both access
# and secret keys. Make sure you don't use "~" symbol.
file: "/Users/objectstorage/.config/gcloud/application_default_credentials.json"

# Represents section used for ObjectStorage API Server configuration.
api-server:
# Represents address for the host of ObjectStorage API Server.
host: "http://localhost:8085"
host: "http://localhost:8086"
```
For **ObjectStorage API Server** there was used the following configuration file located at **~/.objectstorage/config** directory as **api-server.yaml**:
Expand Down
Binary file added docs/examples/cli.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0bda592

Please sign in to comment.