helm_upgrade_logs 0.1.4 → 0.1.5
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/.github/workflows/test.yml +3 -1
- data/CHANGELOG.md +7 -1
- data/README.md +18 -4
- data/exe/helm_test_logs +14 -0
- data/exe/helm_upgrade_logs +3 -22
- data/lib/helm_upgrade_logs/version.rb +1 -1
- data/lib/helm_upgrade_logs.rb +22 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a29eb6e997adbed6f0efe098cbb272dfad2d134975caf54870e347de9346dae
|
4
|
+
data.tar.gz: 0bedaf088081958db6cfe90271d6e0138ab217f4392fbadc4252edbb9ed6771a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0db53c0194211e9b8dde1c1fc817d3f23d462549fd45e7c55adff91beab54e394ae623e36229065d40041fa6b2fa2fe29f8a9818f37ae62d55b96b4ec4dca1fd
|
7
|
+
data.tar.gz: 332be004b62aac72c654948cab38ad0174a180614cdefa74afcc927d10b46172df947ed62dbc8179ef72ea088dbd075acfbf7cfc2122752e1c5247563ad4f6e1
|
data/.github/workflows/test.yml
CHANGED
@@ -53,5 +53,7 @@ jobs:
|
|
53
53
|
# run: sleep 70
|
54
54
|
- name: Add bitnami repo
|
55
55
|
run: helm repo add bitnami https://charts.bitnami.com/bitnami
|
56
|
-
- name: Install
|
56
|
+
- name: Install bitnami
|
57
57
|
run: ./exe/helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP --set replicaCount=2
|
58
|
+
- name: Install Redis
|
59
|
+
run: ./exe/helm_upgrade_logs --install redis bitnami/redis --set auth.enabled=false --version 14.0.2 --wait
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -20,10 +20,24 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
This gem is purely about an `exe` to wrap around `helm` commands and to log helpful commands.
|
24
|
+
Once installed, install/upgrade a helm chart with
|
24
25
|
|
26
|
+
```bash
|
27
|
+
helm_upgrade_logs --install redis bitnami/redis --set auth.enabled=false --version 14.0.2 --wait
|
25
28
|
```
|
26
|
-
|
29
|
+
|
30
|
+
After the `helm_upgrade_logs` command put any options that would normally add after `helm upgrade`.
|
31
|
+
|
32
|
+
To test a chart showing it logs, in a similar way run
|
33
|
+
```bash
|
34
|
+
helm_test_logs redis
|
35
|
+
```
|
36
|
+
|
37
|
+
This also has a bash script which can be used directly. E.g., to install `nginx` from the chart `bitnami/nginx`.
|
38
|
+
|
39
|
+
```
|
40
|
+
curl -s https://raw.githubusercontent.com/SamuelGarrattIqa/helm_upgrade_logs/main/bin/helm_upgrade_logs.sh | bash -s -- --install nginx bitnami/nginx
|
27
41
|
```
|
28
42
|
|
29
43
|
## Development
|
@@ -34,7 +48,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
34
48
|
|
35
49
|
## Contributing
|
36
50
|
|
37
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/SamuelGarrattIqa/helm_upgrade_logs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/SamuelGarrattIqa/helm_upgrade_logs/blob/main/CODE_OF_CONDUCT.md).
|
38
52
|
|
39
53
|
## License
|
40
54
|
|
@@ -42,4 +56,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
42
56
|
|
43
57
|
## Code of Conduct
|
44
58
|
|
45
|
-
Everyone interacting in the HelmUpgradeLogs project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://
|
59
|
+
Everyone interacting in the HelmUpgradeLogs project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/SamuelGarrattIqa/helm_upgrade_logs/blob/main/CODE_OF_CONDUCT.md).
|
data/exe/helm_test_logs
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "lib")
|
5
|
+
require 'helm_upgrade_logs'
|
6
|
+
|
7
|
+
$release_name = ARGV.find { |arg| !arg.start_with?('-') }
|
8
|
+
|
9
|
+
helm_pid = Process.spawn "helm test #{ARGV.join(' ')}"
|
10
|
+
|
11
|
+
log_pid = Process.spawn "kubectl logs -lapp.kubernetes.io/managed-by=Helm,app.kubernetes.io/instance=#{$release_name} -f --all-containers --prefix --ignore-errors=true --max-log-requests=20 --timestamps=true"
|
12
|
+
|
13
|
+
Process.wait helm_pid
|
14
|
+
puts `kill #{log_pid}`
|
data/exe/helm_upgrade_logs
CHANGED
@@ -5,34 +5,15 @@ require 'open3'
|
|
5
5
|
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), "..", "lib")
|
6
6
|
require 'helm_upgrade_logs'
|
7
7
|
|
8
|
-
|
9
|
-
def wait_for_container_ready
|
10
|
-
wait_pid = Process.spawn 'kubectl wait --for=condition=ContainersReady pod --selector "app.kubernetes.io/managed-by=Helm" --timeout=30s'
|
11
|
-
Process.wait wait_pid
|
12
|
-
end
|
13
|
-
|
14
|
-
# Wait for pods with logs to be present
|
15
|
-
# Not ideal due to https://github.com/kubernetes/kubernetes/issues/28746
|
16
|
-
def wait_for_pod
|
17
|
-
90.times {
|
18
|
-
sleep 1
|
19
|
-
stdout, stderr, _ = Open3.capture3 "kubectl logs -lapp.kubernetes.io/managed-by=Helm"
|
20
|
-
if stderr.empty? && !stdout.strip.empty?
|
21
|
-
puts 'Pods with logs found'
|
22
|
-
break
|
23
|
-
else
|
24
|
-
puts "Waiting for pod logs: #{stderr}"
|
25
|
-
end
|
26
|
-
}
|
27
|
-
end
|
8
|
+
$release_name = ARGV.find { |arg| !arg.start_with?('-') }
|
28
9
|
|
29
10
|
helm_pid = Process.spawn "helm upgrade #{ARGV.join(' ')}"
|
30
11
|
|
31
12
|
event_pid = Process.spawn 'kubectl get events --watch-only=true'
|
32
13
|
service_pid = Process.spawn 'kubectl get services --watch-only=true'
|
33
14
|
|
34
|
-
|
35
|
-
log_pid = Process.spawn
|
15
|
+
wait_for_pod_to_log
|
16
|
+
log_pid = Process.spawn "kubectl logs -lapp.kubernetes.io/managed-by=Helm,app.kubernetes.io/instance=#{$release_name} -f --all-containers --prefix --ignore-errors=true --max-log-requests=20 --timestamps=true"
|
36
17
|
|
37
18
|
Process.wait helm_pid
|
38
19
|
puts `kill #{log_pid}`
|
data/lib/helm_upgrade_logs.rb
CHANGED
@@ -1,7 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'open3'
|
3
4
|
require_relative "helm_upgrade_logs/version"
|
4
5
|
|
6
|
+
# Approach not ideal as it will for all containers to be ready and want to stream logs before that
|
7
|
+
def wait_for_container_ready
|
8
|
+
wait_pid = Process.spawn 'kubectl wait --for=condition=ContainersReady pod --selector "app.kubernetes.io/managed-by=Helm" --timeout=30s'
|
9
|
+
Process.wait wait_pid
|
10
|
+
end
|
11
|
+
|
12
|
+
# Wait for pods with logs to be present
|
13
|
+
# Not ideal due to https://github.com/kubernetes/kubernetes/issues/28746
|
14
|
+
def wait_for_pod_to_log
|
15
|
+
90.times {
|
16
|
+
sleep 1
|
17
|
+
stdout, stderr, _ = Open3.capture3 "kubectl logs -lapp.kubernetes.io/managed-by=Helm,app.kubernetes.io/instance=#{$release_name}"
|
18
|
+
if stderr.empty? && !stdout.strip.empty?
|
19
|
+
puts 'Pods with logs found'
|
20
|
+
break
|
21
|
+
else
|
22
|
+
puts "Waiting for pod logs: #{stderr}"
|
23
|
+
end
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
5
27
|
module HelmUpgradeLogs
|
6
28
|
class Error < StandardError; end
|
7
29
|
# Your code goes here...
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helm_upgrade_logs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Garratt
|
@@ -15,6 +15,7 @@ description: Basic wrapper around helm and kubectl to allow easy debugging of a
|
|
15
15
|
email:
|
16
16
|
- samuel.garratt@sentify.co
|
17
17
|
executables:
|
18
|
+
- helm_test_logs
|
18
19
|
- helm_upgrade_logs
|
19
20
|
extensions: []
|
20
21
|
extra_rdoc_files: []
|
@@ -38,6 +39,7 @@ files:
|
|
38
39
|
- bin/helm_upgrade_logs.sh
|
39
40
|
- bin/setup
|
40
41
|
- bin/start_kind.sh
|
42
|
+
- exe/helm_test_logs
|
41
43
|
- exe/helm_upgrade_logs
|
42
44
|
- helm_upgrade_logs.gemspec
|
43
45
|
- lib/helm_upgrade_logs.rb
|