smart_proxy_pulp 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ed75491dd5597b9032d38132676920c2d1ddfc5e52b9462bec134a8188719f4
|
4
|
+
data.tar.gz: a7994ef607521731efa8e2c815825fb3b68227bb0439cd755bf0119d5f59e4bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90a817e0ee2c6b583e907c048ea6f1178777532463a6df2fc4ef3a8fc050e3f119f8711cd23e0a69672f274d811a896d6791556dcd6fdfc53a9a2b1383b9af6b
|
7
|
+
data.tar.gz: 3781082d3bf8644f9cb32c777bcf88d1642a4d77d3acb4ec3fa137cc6ec4a7493c66b2be758c4b19b8e7afefe94af21f0b8b50887796fa0f970f8b6e69ac6178
|
@@ -6,7 +6,8 @@ module PulpProxy
|
|
6
6
|
default_settings :pulp_url => 'https://localhost',
|
7
7
|
:content_app_url => 'https://localhost:24816/',
|
8
8
|
:mirror => false,
|
9
|
-
:client_authentication => ['password', 'client_certificate']
|
9
|
+
:client_authentication => ['password', 'client_certificate'],
|
10
|
+
:rhsm_url => 'https://localhost/rhsm'
|
10
11
|
|
11
12
|
AUTH_TYPES = ['password', 'client_certificate', 'client_certificate_admin_only'].freeze
|
12
13
|
|
@@ -14,6 +15,7 @@ module PulpProxy
|
|
14
15
|
validate :pulp_url, :url => true
|
15
16
|
validate :content_app_url, :url => true
|
16
17
|
validate :client_authentication, :include => AUTH_TYPES
|
18
|
+
validate :rhsm_url, :url => true
|
17
19
|
|
18
20
|
expose_setting :pulp_url
|
19
21
|
expose_setting :mirror
|
@@ -21,6 +23,7 @@ module PulpProxy
|
|
21
23
|
expose_setting :username
|
22
24
|
expose_setting :password
|
23
25
|
expose_setting :client_authentication
|
26
|
+
expose_setting :rhsm_url
|
24
27
|
|
25
28
|
capability -> { PulpcoreClient.capabilities }
|
26
29
|
rackup_path File.expand_path('pulpcore_http_config.ru', __dir__)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smart_proxy_pulp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitri Dolguikh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-unit
|