Update URLs in documents according to document migration
Change-Id: I1b8e63b37be6599a4263afdf12d8f617163fde20
This commit is contained in:
parent
759f10331a
commit
86f435a2a5
10
README.md
10
README.md
@ -114,7 +114,7 @@ The shared salt used when hashing ring mappings.
|
||||
### Define: swift::storage::policy
|
||||
|
||||
A defined type that is used to configure swift storage policies as defined by swift:
|
||||
http://docs.openstack.org/developer/swift/overview_policies.html
|
||||
https://docs.openstack.org/swift/latest/overview_policies.html
|
||||
It is important for the operator to have a solid understanding of storage policies so they understand which parts of this module are needed for the result they seek.
|
||||
|
||||
swift::storage::policy is a wrapper to a new swift type/provider called "swift_storage_policy".
|
||||
@ -138,7 +138,7 @@ default = false
|
||||
|
||||
The swift_storage_policy provider will manage one or more storage policy sections that can be created in swift.conf.
|
||||
This provider will also enforce the following rules for swift storage policies as defined by the swift project:
|
||||
http://docs.openstack.org/developer/swift/overview_policies.html#configuring-policies
|
||||
https://docs.openstack.org/swift/latest/overview_policies.html#configuring-policies
|
||||
- No duplicate names or aliases used across all policies.
|
||||
- There is at least one policy that is marked as the default policy.
|
||||
- Policy name/alias case/content.
|
||||
@ -266,7 +266,7 @@ The port for which the proxy service will bind to when it starts.
|
||||
|
||||
### Class swift::proxy::dlo
|
||||
|
||||
Configures [DLO middleware](http://docs.openstack.org/developer/swift/middleware.html#module-swift.common.middleware.dlo) for swift proxy.
|
||||
Configures [DLO middleware](https://docs.openstack.org/swift/latest/middleware.html#module-swift.common.middleware.dlo) for swift proxy.
|
||||
|
||||
```puppet
|
||||
class { '::swift::proxy::dlo':
|
||||
@ -416,7 +416,7 @@ It is assumed that the object expirer service will be installed on a proxy node.
|
||||
The 'swiftinit' provider is a custom provider of the service type.
|
||||
|
||||
"Swift services are generally managed with swift-init. the general usage is swift-init <service> <command>, where service is the swift service to manage (for example object, container, account, proxy)"
|
||||
From http://docs.openstack.org/developer/swift/admin_guide.html#managing-services
|
||||
From https://docs.openstack.org/swift/latest/admin_guide.html#managing-services
|
||||
|
||||
This new provider is intended to improve puppet-swift deployments in the following ways:
|
||||
|
||||
@ -592,7 +592,7 @@ Development
|
||||
|
||||
Developer documentation for the entire puppet-openstack project.
|
||||
|
||||
* http://docs.openstack.org/developer/puppet-openstack-guide/
|
||||
* https://docs.openstack.org/puppet-openstack-guide/latest/
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
#
|
||||
# This is a script that uses
|
||||
# instructions here: http://docs.openstack.org/developer/swift/howto_installmultinode.html
|
||||
# instructions here: https://docs.openstack.org/swift/latest/howto_installmultinode.html
|
||||
# Even though I expect this script will work with a wide range
|
||||
# of swift versions, it is currently only tested with: 1.4.6
|
||||
require 'open3'
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
#
|
||||
# This is a script that uses
|
||||
# instructions here: http://docs.openstack.org/developer/swift/howto_installmultinode.html
|
||||
# instructions here: https://docs.openstack.org/swift/latest/howto_installmultinode.html
|
||||
# Even though I expect this script will work with a wide range
|
||||
# of swift versions, it is currently only tested with: 1.4.6
|
||||
require 'open3'
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
#
|
||||
# This is a script that uses
|
||||
# instructions here: http://docs.openstack.org/developer/swift/howto_installmultinode.html
|
||||
# instructions here: https://docs.openstack.org/swift/latest/howto_installmultinode.html
|
||||
# Even though I expect this script will work with a wide range
|
||||
# of swift versions, it is currently only tested with: 1.4.6
|
||||
require 'open3'
|
||||
|
@ -7,7 +7,7 @@
|
||||
# on the swift proxy node.
|
||||
#
|
||||
# For more details, see :
|
||||
# http://docs.openstack.org/developer/swift/admin_guide.html#cluster-health
|
||||
# https://docs.openstack.org/swift/latest/admin_guide.html#cluster-health
|
||||
#
|
||||
# === Parameters
|
||||
#
|
||||
|
@ -8,7 +8,7 @@
|
||||
# == Parameters
|
||||
#
|
||||
# [*cross_domain_policy*]
|
||||
# cross_domain_policy value according to http://docs.openstack.org/developer/swift/crossdomain.html
|
||||
# cross_domain_policy value according to https://docs.openstack.org/swift/latest/crossdomain.html
|
||||
# default: <allow-access-from domain="*" secure="false" />
|
||||
#
|
||||
class swift::proxy::crossdomain (
|
||||
|
@ -1,6 +1,6 @@
|
||||
# This Puppet resource is based on the following
|
||||
# instructions for creating a disk device:
|
||||
# http://docs.openstack.org/developer/swift/development_saio.html
|
||||
# https://docs.openstack.org/swift/latest/development_saio.html
|
||||
#
|
||||
# ==Add a raw disk to a swift storage node==
|
||||
#
|
||||
|
@ -1,5 +1,5 @@
|
||||
# follow the instructions for creating a loopback device
|
||||
# for storage from: http://docs.openstack.org/developer/swift/development_saio.html
|
||||
# for storage from: https://docs.openstack.org/swift/latest/development_saio.html
|
||||
#
|
||||
# this define needs to be sent a refresh signal to do anything
|
||||
#
|
||||
|
@ -1,5 +1,5 @@
|
||||
# follow the instructions for creating a loopback device
|
||||
# for storage from: http://docs.openstack.org/developer/swift/development_saio.html
|
||||
# for storage from: https://docs.openstack.org/swift/latest/development_saio.html
|
||||
#
|
||||
#
|
||||
# creates a managed loopback interface
|
||||
|
@ -57,7 +57,7 @@
|
||||
# it will try to default to the number of effective cpu cores and fallback to
|
||||
# one. Increasing the number of workers may reduce the possibility of slow file
|
||||
# system operations in one request from negatively impacting other requests.
|
||||
# See http://docs.openstack.org/developer/swift/deployment_guide.html#general-service-tuning
|
||||
# See https://docs.openstack.org/swift/latest/deployment_guide.html#general-service-tuning
|
||||
# Defaults to $::os_workers.
|
||||
#
|
||||
# [*allow_versions*]
|
||||
|
@ -5,7 +5,7 @@ description-file =
|
||||
README.md
|
||||
author = OpenStack
|
||||
author-email = openstack-dev@lists.openstack.org
|
||||
home-page = http://docs.openstack.org/developer/puppet-openstack-guide
|
||||
home-page = https://docs.openstack.org/puppet-openstack-guide/latest
|
||||
classifier =
|
||||
Intended Audience :: Developers
|
||||
Intended Audience :: System Administrators
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env ruby
|
||||
#
|
||||
# This is a script that uses
|
||||
# instructions here: http://docs.openstack.org/developer/swift/howto_installmultinode.html
|
||||
# instructions here: https://docs.openstack.org/swift/latest/howto_installmultinode.html
|
||||
# Even though I expect this script will work with a wide range
|
||||
# of swift versions, it is currently only tested with: 1.4.6
|
||||
require 'open3'
|
||||
|
Loading…
x
Reference in New Issue
Block a user