From f6a54b0d29f88631d16c541ce2c80ded15eb3aa8 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Thu, 7 Oct 2021 15:45:57 +0800 Subject: [PATCH] Update most links to use https by default Reference: - #11640 - 430bf25958663fcefa897a361f684a6c05934caa Signed-off-by: Peter Dave Hello --- docs/notifications.md | 2 +- docs/storage-drivers/index.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/notifications.md b/docs/notifications.md index 2bdaa9716..a17ba776e 100644 --- a/docs/notifications.md +++ b/docs/notifications.md @@ -346,5 +346,5 @@ which can be wired up to achieve interesting behavior. If this system doesn't provide acceptable guarantees, adding a transactional `Sink` to the registry is a possibility, although it may have an effect on request service time. See the -[godoc](http://godoc.org/github.com/docker/distribution/notifications#Sink) +[godoc](https://godoc.org/github.com/docker/distribution/notifications#Sink) for more information. diff --git a/docs/storage-drivers/index.md b/docs/storage-drivers/index.md index 5d72253c4..750791bb1 100644 --- a/docs/storage-drivers/index.md +++ b/docs/storage-drivers/index.md @@ -19,7 +19,7 @@ This storage driver package comes bundled with several drivers: - [s3](s3.md): A driver storing objects in an Amazon Simple Storage Service (S3) bucket. - [azure](azure.md): A driver storing objects in [Microsoft Azure Blob Storage](https://azure.microsoft.com/en-us/services/storage/). - [swift](swift.md): A driver storing objects in [Openstack Swift](https://docs.openstack.org/swift/latest/). -- [oss](oss.md): A driver storing objects in [Aliyun OSS](http://www.aliyun.com/product/oss). +- [oss](oss.md): A driver storing objects in [Aliyun OSS](https://www.aliyun.com/product/oss). - [gcs](gcs.md): A driver storing objects in a [Google Cloud Storage](https://cloud.google.com/storage/) bucket. ## Storage driver API @@ -33,7 +33,7 @@ validation of the `storagedriver.StorageDriver` interface. ## Driver selection and configuration -The preferred method of selecting a storage driver is using the `StorageDriverFactory` interface in the `storagedriver/factory` package. These factories provide a common interface for constructing storage drivers with a parameters map. The factory model is based on the [Register](http://golang.org/pkg/database/sql/#Register) and [Open](http://golang.org/pkg/database/sql/#Open) methods in the builtin [database/sql](http://golang.org/pkg/database/sql) package. +The preferred method of selecting a storage driver is using the `StorageDriverFactory` interface in the `storagedriver/factory` package. These factories provide a common interface for constructing storage drivers with a parameters map. The factory model is based on the [Register](https://golang.org/pkg/database/sql/#Register) and [Open](https://golang.org/pkg/database/sql/#Open) methods in the builtin [database/sql](https://golang.org/pkg/database/sql) package. Storage driver factories may be registered by name using the `factory.Register` method, and then later invoked by calling `factory.Create`