civo_cli 0.4.2 → 0.4.3
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/civo_cli/version.rb +1 -1
- data/lib/kubernetes.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8518720faa11f1ac00a6eed0d46357f73a0ef61545eeacd2fad0ee9834f04bd
|
|
4
|
+
data.tar.gz: 2dc7916caff6781d7b37755636dbb4506c673d87ebe837274e832e6c9cc619d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72438033c042caaf6c77bbac5eba7b1a0b79e9721b545d136452e8f792318ef51e6f5ec1a8ff7c2958dc68d346c581b438468e78fc5046a580b370aef1f3f262
|
|
7
|
+
data.tar.gz: '08e041ccfadd20580bd97804e54db6a679a6723a8aa8ef6d789da149198e5d1c338039e8e086e88a34393fdd3416a03fa2e1ec739cf8196de800b07fed76c830'
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@ All notable changes to the Civo CLI will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [0.4.3] - 2019-09-26
|
|
7
|
+
### Fixed
|
|
8
|
+
- Didn't actually add version option, just the documentation. It's there now.
|
|
9
|
+
|
|
6
10
|
## [0.4.2] - 2019-09-26
|
|
7
11
|
### Changed
|
|
8
12
|
- Add ability to specify a version when creating a cluster (default to our current version).
|
data/Gemfile.lock
CHANGED
data/lib/civo_cli/version.rb
CHANGED
data/lib/kubernetes.rb
CHANGED
|
@@ -105,6 +105,7 @@ module CivoCLI
|
|
|
105
105
|
desc "create [NAME] [...]", "create a new kubernetes cluster with the specified name and provided options"
|
|
106
106
|
option :size, default: 'g2.medium', banner: 'size'
|
|
107
107
|
option :nodes, default: '3', banner: 'node_count'
|
|
108
|
+
option :version, default: nil, banner: 'version'
|
|
108
109
|
option :wait, type: :boolean, banner: 'wait until cluster is running'
|
|
109
110
|
option :save, type: :boolean
|
|
110
111
|
option :switch, type: :boolean
|