mkit 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/lib/mkit/version.rb +1 -1
  4. data/mkit.gemspec +1 -0
  5. metadata +22 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca554f25f295a7403d5f0d654663d466430a361c8aa2629961f1710579e62506
4
- data.tar.gz: d670fcc4523810439d73244276766a8e5ff70f2b8a052b292941014a11e7ca3b
3
+ metadata.gz: 0dab845891b079ffbf0f696676c1c3b6e25e583c02a09570582571976f8ce40d
4
+ data.tar.gz: 59e3174e0e09347c2e40a7f7096cfd3c9f9575a588d210c0d7dd71ccfcadf206
5
5
  SHA512:
6
- metadata.gz: 825f5736fe72ce3bec3aab11f5edfa75b286a6e08ff4e6dc44be37c6d11a034e84a0910fca6ce78cb05ead4483ec228c368a749a301793396ddfc55043fc5bf9
7
- data.tar.gz: 5b0c25f145e1c5ec19d8242d8e613c6746fc3ea25f4f1df0f39dc434ee43e56d480b399075230154d547abad466555f884077f1a1fff08590005645a762b3279
6
+ metadata.gz: a447023289277ea09120233ec72cb3b5a2de96077ee012b30fd369e21c338b487a898217d367dba7b8a86499a940944dee60ecdecbced737c00b70358e3141f4
7
+ data.tar.gz: b33b3276ad887b3939d2898b2d09c0a8a807a62856b761969f50e675c2e01fcd2f48abc1a49259dea60e4d12df563b0b73d4d4852880bb0e4abf2e539714074f
data/README.md CHANGED
@@ -4,7 +4,7 @@ This is micro kubernetes(tm) on Ruby(tm), a simple tool to deploy containers to
4
4
 
5
5
  It's also a frontend for `docker`, providing an easier way for your services to be locally available, without the need to care about local `ports` availability.
6
6
 
7
- It contains an internal DNS and uses HAProxy for routing/balancing/fail-over for Pods access.
7
+ It contains an internal DNS and uses HAProxy as ingress for Pod access.
8
8
  The database is a simple sqlite3 db and the server is a Sinatra based application.
9
9
 
10
10
  A client is also included to access the API, e.g. `mkitc ps`.
@@ -18,7 +18,7 @@ The daemon is responsible for HAProxy pods routing configuration. It also provid
18
18
  * Docker
19
19
  * Linux (iproute2 package)
20
20
 
21
- **Note:** in order to have **ssl support**, you must install `openssl-dev` package (e.g. `libssl-dev` on Ubuntu) prior to install MKIt gem.
21
+ **Note:** in order to have **ssl support**, you must install `openssl-dev` package (e.g. `libssl-dev` on Ubuntu) prior to install MKIt gem, due to `eventmachine` gem native extensions.
22
22
 
23
23
  ## Install
24
24
 
data/lib/mkit/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module MKIt
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
4
4
 
data/mkit.gemspec CHANGED
@@ -35,4 +35,5 @@ Gem::Specification.new do |s|
35
35
  s.add_runtime_dependency 'sqlite3', '~> 1.5', '>= 1.5.4'
36
36
  s.add_runtime_dependency 'standalone_migrations', '~> 7.1', '>= 7.1.0'
37
37
  s.add_runtime_dependency 'thin', '~> 1.8', '>= 1.8.1'
38
+ s.add_runtime_dependency 'text-table', '~> 1.2', '>= 1.2.4'
38
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasco Santos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-24 00:00:00.000000000 Z
11
+ date: 2024-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-dns
@@ -290,6 +290,26 @@ dependencies:
290
290
  - - ">="
291
291
  - !ruby/object:Gem::Version
292
292
  version: 1.8.1
293
+ - !ruby/object:Gem::Dependency
294
+ name: text-table
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - "~>"
298
+ - !ruby/object:Gem::Version
299
+ version: '1.2'
300
+ - - ">="
301
+ - !ruby/object:Gem::Version
302
+ version: 1.2.4
303
+ type: :runtime
304
+ prerelease: false
305
+ version_requirements: !ruby/object:Gem::Requirement
306
+ requirements:
307
+ - - "~>"
308
+ - !ruby/object:Gem::Version
309
+ version: '1.2'
310
+ - - ">="
311
+ - !ruby/object:Gem::Version
312
+ version: 1.2.4
293
313
  description: Micro k8s on Ruby - a simple tool to deploy containers to mimic a (very)
294
314
  minimalistic k8 cluster with a nice REST API
295
315
  email: