kubeclient 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of kubeclient might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/README.md +3 -3
- data/kubeclient.gemspec +1 -1
- data/lib/kubeclient/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0dac688d6eb0963960c817696dfbd9b8f75da98
|
4
|
+
data.tar.gz: 8a5be4b58833b3f9e8d84c2bb8721e53ec2db180
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d63b1408a1788f5327377abf95d4312b086858030b18388ffd550420a05a237eb2551f579018aa573617782249cda5de2df8a6645d2806e7b86002de9507e1e
|
7
|
+
data.tar.gz: 08803875c6d0d1ecb7b4e18dcf066801a325725855579d6b89ff4249638c5aa98485ed6e42012eae5fdda8d1039e96e34cb74811ef745ef2af3ade5cb5abc776
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -32,7 +32,7 @@ Initialize the client:
|
|
32
32
|
client = Kubeclient::Client.new 'http://localhost:8080/api/' , "v1"
|
33
33
|
```
|
34
34
|
|
35
|
-
Or without specifying version (it will be set by default to "v1"
|
35
|
+
Or without specifying version (it will be set by default to "v1")
|
36
36
|
|
37
37
|
```ruby
|
38
38
|
client = Kubeclient::Client.new 'http://localhost:8080/api/'
|
@@ -216,7 +216,7 @@ client.update_service service1
|
|
216
216
|
```
|
217
217
|
|
218
218
|
#### Get all entities of all types : all_entities
|
219
|
-
Returns a hash with
|
219
|
+
Returns a hash with the following keys (node, secret, service, pod, replication_controller, namespace, resource_quota, limit_range, endpoint, event, persistent_volume, persistent_volume_claim, component_status and service_account). Each key points to an EntityList of same type.
|
220
220
|
This method is a convenience method instead of calling each entity's get method separately.
|
221
221
|
|
222
222
|
```ruby
|
@@ -310,7 +310,7 @@ end
|
|
310
310
|
|
311
311
|
## Tests
|
312
312
|
|
313
|
-
This client is tested with Minitest.
|
313
|
+
This client is tested with Minitest and also uses VCR recordings in some tests.
|
314
314
|
Please run all tests before submitting a Pull Request, and add new tests for new functionality.
|
315
315
|
|
316
316
|
Running tests:
|
data/kubeclient.gemspec
CHANGED
data/lib/kubeclient/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kubeclient
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alissa Bonas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -142,14 +142,14 @@ dependencies:
|
|
142
142
|
requirements:
|
143
143
|
- - '='
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 0.
|
145
|
+
version: 1.0.0
|
146
146
|
type: :runtime
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - '='
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.
|
152
|
+
version: 1.0.0
|
153
153
|
description: A client for Kubernetes REST api
|
154
154
|
email:
|
155
155
|
- abonas@redhat.com
|