k8sflow 0.11.5 → 0.11.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a812507520dc90b78ee1a86f3f2d52ac128d5ab
4
- data.tar.gz: 3f1e41fde43efd9e5393f1fe136880f9d59cc99b
3
+ metadata.gz: 803692a9034d0988fadc1b2795f97964e05444b7
4
+ data.tar.gz: 730159681b72796c75f237eddd55c02d58e4cfaa
5
5
  SHA512:
6
- metadata.gz: d4a1d663e0fb372d393721db83d72b31c3f1fca4ce62f754a0315d74d927c5696e9b5bd24030e08280ca0a1c5523ba9ab192e422782ae925f13369448a2961d1
7
- data.tar.gz: d7147dc6da47c19ca92b34c4d81253aca1af42616a5416b8f0482ed5b64c8610abe9424c5ab2a86c464f6c314d2c0c3dad81c0323e3ac2703db64a0146603a6c
6
+ metadata.gz: fd7dfcd7c53fbba6e2ebf7738b1e677db8db690a5d826461155805b145d0822cc6e5472d4b5dc128ccf88f2dec1a45a61e08098728bcc37028b997139242b18a
7
+ data.tar.gz: 6498e931b1b926ae0639a779acbe0615e906d0712bde8882caa910300160dfb3a2a822bdd54f15d6924bbb108b8c989c4328a278ff7574869cdbf2d45aebeef9
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  module K8sflow
3
- VERSION = '0.11.5'
3
+ VERSION = '0.11.6'
4
4
  VERSION_NAMES = {1 => 'France II',
5
5
  2 => 'R.C. Rickmers',
6
6
  3 => 'Thomas W. Lawson',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k8sflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.5
4
+ version: 0.11.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antoine Legrand
@@ -82,7 +82,6 @@ files:
82
82
  - lib/k8sflow/cli.rb
83
83
  - lib/k8sflow/command.rb
84
84
  - lib/k8sflow/command/image.rb
85
- - lib/k8sflow/command/k8s/topic.rb
86
85
  - lib/k8sflow/command/maintenance.rb
87
86
  - lib/k8sflow/command/pg/backup.rb
88
87
  - lib/k8sflow/command/pg/copy.rb
@@ -1,15 +0,0 @@
1
- module K8sflow
2
- module K8s
3
- class K8sTopic < Clitopic::Topic::Base
4
- register name: 'pg',
5
- description: 'Manage postgres actions'
6
-
7
- option :database, '-d', '--database DATABASE', '[REQUIRED] Database uri or alias', required: true
8
- option :ssl, "--ssl", "enable sslmode"
9
-
10
- option :databases, "--databases alias1=postgresql_URI,alias2=postgresql_URI2", Array, "Create database aliases"
11
-
12
-
13
- end
14
- end
15
- end