gleis 0.9.0 → 1.0.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/CHANGELOG.md +11 -0
- data/exe/gleis +1 -1
- data/lib/gleis/application.rb +22 -0
- data/lib/gleis/cli/app.rb +5 -0
- data/lib/gleis/main.rb +4 -0
- data/lib/gleis/utils.rb +9 -0
- data/lib/gleis/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8832f19d9aa54a36a1a1d1e7682b1ce6017294c22115bf83755d6eeb7331a2e3
|
4
|
+
data.tar.gz: 15f7458349747ce180483878bb02761473324130ac254d0754a388d7fb6535ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca53e5e9fae14cd827ce6b476a911a3add034fec36fc70858b157cc898c3325a4c446a37aeb2efc6d320589a250831cbdb91ddd698a90bbcf4d2bd3905e03a92
|
7
|
+
data.tar.gz: 685270a20f7c4076aac97dc46784974abfbca9607567e2ef3a061210fcce5028c639631425c077934e51d4eff7720ad870e4e60d461fcae4b8a9431c2e6033ca
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,17 @@ All notable changes to the Gleis CLI will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## 1.0.0 - 2020-08-21
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
- New command called healthcheck in order to show and change the health check path of an app
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
|
16
|
+
- References to old gleis.cloud domain by new domain name gleis.io
|
17
|
+
- Version dependency of thor
|
18
|
+
|
8
19
|
## 0.9.0 - 2020-06-26
|
9
20
|
|
10
21
|
### Added
|
data/exe/gleis
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'gleis/main'
|
4
4
|
|
5
|
-
puts "\n### Gleis CLI Copyright (c) 2018-#{Time.new.year} towards GmbH - v#{Gleis::VERSION} - https://gleis.
|
5
|
+
puts "\n### Gleis CLI Copyright (c) 2018-#{Time.new.year} towards GmbH - v#{Gleis::VERSION} - https://gleis.io ###\n\n" \
|
6
6
|
unless ARGF.argv.include?('-q')
|
7
7
|
|
8
8
|
trap 'SIGINT' do
|
data/lib/gleis/application.rb
CHANGED
@@ -110,6 +110,28 @@ module Gleis
|
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
+
def self.healthcheck(app_name, path)
|
114
|
+
token = Token.check
|
115
|
+
if path.empty?
|
116
|
+
body = API.request('get', "healthcheck/#{app_name}", token)
|
117
|
+
if body['success'] == 1
|
118
|
+
puts "The path for the health check of the #{app_name} app is: #{body['data']}"
|
119
|
+
else
|
120
|
+
puts 'Failed to fetch health check path for app.'
|
121
|
+
end
|
122
|
+
elsif Utils.uri_path_valid?(path)
|
123
|
+
body = API.request('post', 'healthcheck', token, 'name': app_name, 'path': path)
|
124
|
+
if body['success'] == 1
|
125
|
+
puts "Successfully changed app health check path to: #{path}\n\n"
|
126
|
+
puts "Don't forget to restart your app to make your change effective"
|
127
|
+
else
|
128
|
+
puts "Failed to change app health chech path: #{body['message']}"
|
129
|
+
end
|
130
|
+
else
|
131
|
+
puts 'Invalid health check path'
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
113
135
|
def self.logs(app_name, follow, process)
|
114
136
|
token = Token.check
|
115
137
|
action = "logs/#{app_name}/#{process}?follow=#{follow}"
|
data/lib/gleis/cli/app.rb
CHANGED
@@ -35,6 +35,11 @@ module Gleis
|
|
35
35
|
Application.git(options[:app], options[:quiet])
|
36
36
|
end
|
37
37
|
|
38
|
+
desc 'healthcheck [PATH]', 'Show or change the path for the health check'
|
39
|
+
def healthcheck(path = '')
|
40
|
+
Application.healthcheck(options[:app], path)
|
41
|
+
end
|
42
|
+
|
38
43
|
desc 'logs', 'View last log entries of a process'
|
39
44
|
option :follow, aliases: :'-f', type: :boolean, default: false,
|
40
45
|
desc: 'Follow live log data'
|
data/lib/gleis/main.rb
CHANGED
@@ -3,6 +3,10 @@ require 'gleis'
|
|
3
3
|
module Gleis
|
4
4
|
# This class defines all the main command-line interface commands for gleis
|
5
5
|
class Main < Thor
|
6
|
+
def self.exit_on_failure?
|
7
|
+
true
|
8
|
+
end
|
9
|
+
|
6
10
|
desc 'login USERNAME', 'Login into Gleis'
|
7
11
|
def login(username)
|
8
12
|
Authentication.login(username)
|
data/lib/gleis/utils.rb
CHANGED
data/lib/gleis/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gleis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- towards GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -114,16 +114,16 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: '1.0'
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
125
|
-
description: " Command-line interface to deploy and manage your
|
126
|
-
|
124
|
+
version: '1.0'
|
125
|
+
description: " Command-line interface to deploy and manage your apps on the https://gleis.io
|
126
|
+
Swiss Platform as a Service supporting Ruby, Node.js, Python and .NET Core.\n"
|
127
127
|
email:
|
128
128
|
- gleis@towards.ch
|
129
129
|
executables:
|
@@ -165,7 +165,7 @@ files:
|
|
165
165
|
- lib/gleis/token.rb
|
166
166
|
- lib/gleis/utils.rb
|
167
167
|
- lib/gleis/version.rb
|
168
|
-
homepage: https://gleis.
|
168
|
+
homepage: https://gleis.io
|
169
169
|
licenses:
|
170
170
|
- GPL-3.0
|
171
171
|
metadata:
|
@@ -188,5 +188,5 @@ requirements: []
|
|
188
188
|
rubygems_version: 3.0.3
|
189
189
|
signing_key:
|
190
190
|
specification_version: 4
|
191
|
-
summary: Gleis CLI to deploy and manage
|
191
|
+
summary: Gleis CLI to deploy and manage apps on the Gleis PaaS
|
192
192
|
test_files: []
|