Skip to content
This repository was archived by the owner on Jun 2, 2021. It is now read-only.

Commit 5416900

Browse files
committed
config.package_image_uploader => registry_buddy
[#175104686] Authored-by: Matt Royal <mroyal@pivotal.io>
1 parent 48088cc commit 5416900

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

config/cloud_controller.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ buildpacks:
196196
provider: "Local"
197197
fog_aws_storage_options: {}
198198

199-
package_image_uploader:
199+
registry_buddy:
200200
host: "127.0.0.1"
201201
port: 8080
202202

lib/cloud_controller/config_schemas/api_schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class ApiSchema < VCAP::Config
178178
fog_aws_storage_options: Hash,
179179
},
180180

181-
optional(:package_image_uploader) => {
181+
optional(:registry_buddy) => {
182182
host: String,
183183
port: Integer
184184
},

lib/cloud_controller/config_schemas/worker_schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class WorkerSchema < VCAP::Config
101101
fog_aws_storage_options: Hash
102102
},
103103

104-
optional(:package_image_uploader) => {
104+
optional(:registry_buddy) => {
105105
host: String,
106106
port: Integer
107107
},

lib/cloud_controller/dependency_locator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ def packer
368368

369369
def registry_buddy_client
370370
RegistryBuddy::Client.new(
371-
VCAP::CloudController::Config.config.get(:package_image_uploader, :host),
372-
VCAP::CloudController::Config.config.get(:package_image_uploader, :port),
371+
VCAP::CloudController::Config.config.get(:registry_buddy, :host),
372+
VCAP::CloudController::Config.config.get(:registry_buddy, :port),
373373
)
374374
end
375375

0 commit comments

Comments
 (0)