kube_deploy_tools 3.0.5 → 3.0.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 +4 -4
- data/README.md +8 -14
- data/lib/kube_deploy_tools/deploy_config_file/util.rb +1 -0
- data/lib/kube_deploy_tools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 951f645cc2967fa016686b1a11ab40aec106cf9a9cba2a6475c0e8f37d58ac54
|
|
4
|
+
data.tar.gz: 171662be453f92496cea6b0188362a1568b991dea8d84178bcc8760c4cccd33d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c4f5436773b8bc0599cb6aadc02dc80aac0e0fb39186d7a921f0cc2b2cec285f5b1c453aa4e9a52b5f1cfa4787fe19f1fb1c579a5c7caa1180a6579f48f49e7
|
|
7
|
+
data.tar.gz: 93f963fcc8fb5175af921a1d1fd73e728a5804b09ab5949b2843ab9d04a9ebde9555b4c4c0aa59ade0d5f40e745a24ff2cc4897d8be1abaa14745784bcfe6917
|
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/kube_deploy_tools)
|
|
2
|
+
|
|
1
3
|
# kube_deploy_tools (kdt)
|
|
2
4
|
|
|
3
5
|
`kube_deploy_tools` (kdt) is a tool to simplify kubernetes manifest generation
|
|
@@ -28,6 +30,7 @@ a complete production lifecycle, they are also designed to be used
|
|
|
28
30
|
individually.
|
|
29
31
|
|
|
30
32
|
[Helm]: https://helm.sh
|
|
33
|
+
[ERB]: https://ruby-doc.org/stdlib-2.7.1/libdoc/erb/rdoc/ERB.html
|
|
31
34
|
|
|
32
35
|
# Getting Started
|
|
33
36
|
|
|
@@ -103,7 +106,7 @@ To explore further,
|
|
|
103
106
|
* Run `kdt deploy -f build/kubernetes/prod_default --context my-kube-context` to send your generated
|
|
104
107
|
manifests to a Kubernetes API server.
|
|
105
108
|
|
|
106
|
-
[complete description]:
|
|
109
|
+
[complete description]: schemas/v2.schema.json
|
|
107
110
|
|
|
108
111
|
# FAQ
|
|
109
112
|
|
|
@@ -118,19 +121,6 @@ For breaking changes, new features, and new fixes, see
|
|
|
118
121
|
|
|
119
122
|
# Contribute
|
|
120
123
|
|
|
121
|
-
```bash
|
|
122
|
-
# Install ruby w/ Homebrew
|
|
123
|
-
brew install ruby
|
|
124
|
-
|
|
125
|
-
# Or install ruby w/ rbenv
|
|
126
|
-
brew install rbenv ruby-build
|
|
127
|
-
rbenv install 2.3.0
|
|
128
|
-
rbenv global 2.3.0
|
|
129
|
-
|
|
130
|
-
# Install gem
|
|
131
|
-
gem install bundler
|
|
132
|
-
```
|
|
133
|
-
|
|
134
124
|
```bash
|
|
135
125
|
bundle install --with development
|
|
136
126
|
|
|
@@ -140,3 +130,7 @@ bundle exec rake test
|
|
|
140
130
|
# Exec a binary in bin/
|
|
141
131
|
bundle exec kdt generate
|
|
142
132
|
```
|
|
133
|
+
|
|
134
|
+
We accept [pull requests]. They will be reviewed by a member of the LiveRamp development team as soon as possible.
|
|
135
|
+
|
|
136
|
+
[pull requests]: https://github.com/LiveRamp/kube_deploy_tools/pulls
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kube_deploy_tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fabien Goncalves
|
|
@@ -16,7 +16,7 @@ authors:
|
|
|
16
16
|
autorequire:
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
|
-
date: 2020-
|
|
19
|
+
date: 2020-06-04 00:00:00.000000000 Z
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
name: colorize
|