kdeploy 0.5.0 → 0.6.0
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 +14 -0
- data/lib/kdeploy/initializer.rb +14 -0
- data/lib/kdeploy/version.rb +1 -1
- 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: e4f616b19f975f2dd2c092c929917abef3ffb8692868a94e11eb817c10ff9047
|
4
|
+
data.tar.gz: 16177a298947b32df45fde284312d693dde19403d53356058c7297aa1b99c693
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdfd65082400f89565ff0387cce6cf22d8a69d16138bd8e3b3b6e70bdc7d2597735edc6f06575287c163d942f6bdb29d5a9df69db6746408b95225c14db0b6e9
|
7
|
+
data.tar.gz: 562dcdcff3008e15d637fbecb1fde2459c0275b37396989f74cb582f62e40168e9309691b4b9c2c75af21fc8ce4c23438236e7f61268a81f1d0b4d367fc5318b
|
data/README.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
1
|
# Kdeploy
|
2
|
+
```
|
3
|
+
_ _
|
4
|
+
/\ /\__| | ___ _ __ | | ___ _ _
|
5
|
+
/ //_/ _` |/ _ \ '_ \| |/ _ \| | | |
|
6
|
+
/ __ \ (_| | __/ |_) | | (_) | |_| |
|
7
|
+
\/ \/\__,_|\___| .__/|_|\___/ \__, |
|
8
|
+
|_| |___/
|
9
|
+
|
10
|
+
|
11
|
+
⚡ Lightweight Agentless Deployment Tool
|
12
|
+
🚀 Deploy with confidence, scale with ease
|
13
|
+
|
14
|
+
=====================================================================================================
|
15
|
+
```
|
2
16
|
|
3
17
|
A lightweight agentless deployment automation tool written in Ruby.
|
4
18
|
|
data/lib/kdeploy/initializer.rb
CHANGED
@@ -156,6 +156,20 @@ module Kdeploy
|
|
156
156
|
def create_readme
|
157
157
|
File.write(File.join(@target_dir, 'README.md'), <<~MD)
|
158
158
|
# Deployment Project
|
159
|
+
```
|
160
|
+
_ _
|
161
|
+
/\ /\__| | ___ _ __ | | ___ _ _
|
162
|
+
/ //_/ _` |/ _ \ '_ \| |/ _ \| | | |
|
163
|
+
/ __ \ (_| | __/ |_) | | (_) | |_| |
|
164
|
+
\/ \/\__,_|\___| .__/|_|\___/ \__, |
|
165
|
+
|_| |___/
|
166
|
+
|
167
|
+
|
168
|
+
⚡ Lightweight Agentless Deployment Tool
|
169
|
+
🚀 Deploy with confidence, scale with ease
|
170
|
+
|
171
|
+
=====================================================================================================
|
172
|
+
```
|
159
173
|
|
160
174
|
This is a deployment project created with Kdeploy.
|
161
175
|
|
data/lib/kdeploy/version.rb
CHANGED