-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Condense information on storage types for remote onboarding (#4051)
- Loading branch information
1 parent
3b1eaa6
commit 95bed87
Showing
7 changed files
with
25 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,30 @@ | ||
import React from 'react' | ||
import styles from './styles.module.scss' | ||
import { InfoText } from './InfoText' | ||
import { CloudVersioning } from './CloudVersioning' | ||
import { CustomAuth } from './CustomAuth' | ||
import { ShowExtension } from './ShowExtension' | ||
|
||
export const AmazonS3 = () => ( | ||
<div className={styles.storageDetails}> | ||
<ShowExtension | ||
id="AmazonWebServices.aws-toolkit-vscode" | ||
name="AWS Toolkit" | ||
capabilities="manage AWS profiles and S3 buckets" | ||
/> | ||
<p> | ||
When needed, DVC will try to authenticate using your{' '} | ||
<a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html"> | ||
AWS CLI config | ||
</a> | ||
. This reads the default AWS credentials file (if available) or env vars. | ||
For custom authentication see the{' '} | ||
<a href="https://dvc.org/doc/user-guide/data-management/remote-storage/amazon-s3#custom-authentication"> | ||
docs | ||
</a> | ||
. | ||
</p> | ||
<ShowExtension | ||
id="AmazonWebServices.aws-toolkit-vscode" | ||
name="AWS Toolkit" | ||
capabilities="manage AWS profiles and S3 buckets" | ||
/> | ||
<InfoText> | ||
The AWS user needs the following permissions: s3:ListBucket, s3:GetObject, | ||
s3:PutObject, s3:DeleteObject. | ||
</InfoText> | ||
<CloudVersioning> | ||
<a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Versioning.html"> | ||
S3 versioning | ||
</a>{' '} | ||
enabled on the bucket. | ||
</CloudVersioning> | ||
<CustomAuth href="https://dvc.org/doc/user-guide/data-management/remote-storage/amazon-s3#custom-authentication" /> | ||
</div> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
import React from 'react' | ||
import styles from './styles.module.scss' | ||
import { CloudVersioning } from './CloudVersioning' | ||
import { ShowExtension } from './ShowExtension' | ||
|
||
export const AzureBlobStorage = () => ( | ||
<div className={styles.storageDetails}> | ||
<ShowExtension | ||
capabilities="create storage accounts and manage blob containers" | ||
id="ms-azuretools.vscode-azurestorage" | ||
name="Azure Storage" | ||
/> | ||
<p> | ||
See the{' '} | ||
<a href="https://dvc.org/doc/user-guide/data-management/remote-storage/azure-blob-storage#authentication"> | ||
docs | ||
</a>{' '} | ||
for details on how to authenticate. | ||
</p> | ||
<ShowExtension | ||
capabilities="create storage accounts and manage blob containers" | ||
id="ms-azuretools.vscode-azurestorage" | ||
name="Azure Storage" | ||
/> | ||
<CloudVersioning> | ||
<a href="https://learn.microsoft.com/en-us/azure/storage/blobs/versioning-overview"> | ||
Blob versioning | ||
</a>{' '} | ||
enabled on the storage account and container. | ||
</CloudVersioning> | ||
</div> | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters