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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3acf742f15a2ac53054784e80bd9e7d2e281a2ee
4
- data.tar.gz: c793a0e544599ae7bd734bd2036e4af55d9496e8
3
+ metadata.gz: f0dac688d6eb0963960c817696dfbd9b8f75da98
4
+ data.tar.gz: 8a5be4b58833b3f9e8d84c2bb8721e53ec2db180
5
5
  SHA512:
6
- metadata.gz: 5fa15ac1a973910a1ba705d38ef703db022ad99fc37a1a50ab9236c49a22c0505c3eec635b02df6d602c7504dcac7cc3f9ed81cec332827442055bf1808de242
7
- data.tar.gz: 3c972f1c2a61d7ae39b1d4afde76bc86e72b884fab763d94339d3ea6a343a6f1ffebd7418c8abed432b3f0e539a68d2381e53a54fad8737a9ab828270ed7f861
6
+ metadata.gz: 5d63b1408a1788f5327377abf95d4312b086858030b18388ffd550420a05a237eb2551f579018aa573617782249cda5de2df8a6645d2806e7b86002de9507e1e
7
+ data.tar.gz: 08803875c6d0d1ecb7b4e18dcf066801a325725855579d6b89ff4249638c5aa98485ed6e42012eae5fdda8d1039e96e34cb74811ef745ef2af3ade5cb5abc776
data/.travis.yml CHANGED
@@ -3,5 +3,6 @@ rvm:
3
3
  - "2.0"
4
4
  - "2.1"
5
5
  - "2.2"
6
+ - "2.3.0"
6
7
  sudo: false
7
8
  cache: bundler
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 14 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.
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
@@ -28,5 +28,5 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency 'rest-client'
29
29
  spec.add_dependency 'activesupport'
30
30
  spec.add_dependency 'json'
31
- spec.add_dependency 'recursive-open-struct', '= 0.6.1'
31
+ spec.add_dependency 'recursive-open-struct', '= 1.0.0'
32
32
  end
@@ -1,4 +1,4 @@
1
1
  # Kubernetes REST-API Client
2
2
  module Kubeclient
3
- VERSION = '0.9.0'
3
+ VERSION = '1.0.0'
4
4
  end
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.9.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: 2015-10-27 00:00:00.000000000 Z
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.6.1
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.6.1
152
+ version: 1.0.0
153
153
  description: A client for Kubernetes REST api
154
154
  email:
155
155
  - abonas@redhat.com