helm_upgrade_logs 0.3.6 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +75 -74
- data/.gitignore +13 -13
- data/.gitlab-ci.yml +9 -9
- data/.idea/helm_upgrade_logs.iml +32 -32
- data/.idea/misc.xml +6 -6
- data/.idea/modules.xml +7 -7
- data/.idea/vcs.xml +5 -5
- data/.rspec +3 -3
- data/.rubocop.yml +13 -13
- data/CHANGELOG.md +79 -71
- data/CODE_OF_CONDUCT.md +84 -84
- data/Gemfile +12 -12
- data/LICENSE.txt +21 -21
- data/README.md +77 -77
- data/Rakefile +12 -12
- data/bin/console +15 -15
- data/bin/helm_upgrade_logs.sh +230 -230
- data/bin/setup +8 -8
- data/bin/start_kind.sh +75 -75
- data/exe/helm_test_logs +17 -17
- data/exe/helm_upgrade_logs +97 -97
- data/helm_upgrade_logs.gemspec +35 -35
- data/lib/helm_upgrade_logs/version.rb +6 -6
- data/lib/helm_upgrade_logs.rb +106 -81
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5c8b4b1ea48503ac3cd3a5b2225a547cca4d9de3d2a6f498ab3275c048f4b2c
|
4
|
+
data.tar.gz: 50fa108a1ffc101bebf06f4a3ab561b0be87eebcb0a8f86f5ba9f1cf4e934049
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d75d44836364ea6365cfd970b217927aa4c0e0c3268cfaabebf6ada95827a3bdcce402e1160ae469e536589bc10f0bb867a1c44ce91e4fad924e11aff4b25fd9
|
7
|
+
data.tar.gz: 488607e1fcee239ae77b11949c083dbe21e1ed7af0d0a13c95191b060bd8091e7580c49463f796e5ff2e330bde3c05b6b0ef9f8b8ac0b721257ff6d9685b822c
|
data/.github/workflows/test.yml
CHANGED
@@ -1,74 +1,75 @@
|
|
1
|
-
# This workflow uses actions that are not certified by GitHub.
|
2
|
-
# They are provided by a third-party and are governed by
|
3
|
-
# separate terms of service, privacy policy, and support
|
4
|
-
# documentation.
|
5
|
-
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
-
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
-
|
8
|
-
name: HelmUpgradeLogs
|
9
|
-
|
10
|
-
on:
|
11
|
-
push:
|
12
|
-
branches: [ main ]
|
13
|
-
pull_request:
|
14
|
-
branches: [ main ]
|
15
|
-
|
16
|
-
permissions:
|
17
|
-
contents: read
|
18
|
-
|
19
|
-
jobs:
|
20
|
-
demo_install_run_gem:
|
21
|
-
runs-on: ubuntu-latest
|
22
|
-
strategy:
|
23
|
-
matrix:
|
24
|
-
ruby-version: ['3.0']
|
25
|
-
steps:
|
26
|
-
- uses: actions/checkout@v3
|
27
|
-
- name: Set up Ruby
|
28
|
-
uses: ruby/setup-ruby@v1
|
29
|
-
with:
|
30
|
-
ruby-version: ${{ matrix.ruby-version }}
|
31
|
-
- name: Start KIND cluster
|
32
|
-
run: bash -f bin/start_kind.sh
|
33
|
-
- name: Install gem
|
34
|
-
run: gem install helm_upgrade_logs
|
35
|
-
- name: Add bitnami repo
|
36
|
-
run: helm repo add bitnami https://charts.bitnami.com/bitnami
|
37
|
-
- name: Helm install debugging logs
|
38
|
-
run: helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP
|
39
|
-
|
40
|
-
unit_test:
|
41
|
-
runs-on: ubuntu-latest
|
42
|
-
strategy:
|
43
|
-
matrix:
|
44
|
-
ruby-version: ['3.0']
|
45
|
-
steps:
|
46
|
-
- uses: actions/checkout@v3
|
47
|
-
- name: Set up Ruby
|
48
|
-
uses: ruby/setup-ruby@v1
|
49
|
-
with:
|
50
|
-
ruby-version: ${{ matrix.ruby-version }}
|
51
|
-
bundler-cache: true
|
52
|
-
- name: Run tests
|
53
|
-
run: bundle exec rake
|
54
|
-
|
55
|
-
test_exe:
|
56
|
-
runs-on: ubuntu-latest
|
57
|
-
strategy:
|
58
|
-
matrix:
|
59
|
-
ruby-version: ['3.0']
|
60
|
-
|
61
|
-
steps:
|
62
|
-
- uses: actions/checkout@v3
|
63
|
-
- name: Use Debug
|
64
|
-
run: export helm_upgrade_logs_debug=true
|
65
|
-
- name: Start KIND cluster
|
66
|
-
run: bash -f bin/start_kind.sh
|
67
|
-
- name: Add bitnami repo
|
68
|
-
run: helm repo add bitnami https://charts.bitnami.com/bitnami
|
69
|
-
- name: Install bitnami
|
70
|
-
run: ./exe/helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP --set replicaCount=2
|
71
|
-
- name: Test bitnami
|
72
|
-
run: ./exe/helm_test_logs nginx
|
73
|
-
|
74
|
-
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: HelmUpgradeLogs
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [ main ]
|
13
|
+
pull_request:
|
14
|
+
branches: [ main ]
|
15
|
+
|
16
|
+
permissions:
|
17
|
+
contents: read
|
18
|
+
|
19
|
+
jobs:
|
20
|
+
demo_install_run_gem:
|
21
|
+
runs-on: ubuntu-latest
|
22
|
+
strategy:
|
23
|
+
matrix:
|
24
|
+
ruby-version: ['3.0']
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v3
|
27
|
+
- name: Set up Ruby
|
28
|
+
uses: ruby/setup-ruby@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby-version }}
|
31
|
+
- name: Start KIND cluster
|
32
|
+
run: bash -f bin/start_kind.sh
|
33
|
+
- name: Install gem
|
34
|
+
run: gem install helm_upgrade_logs
|
35
|
+
- name: Add bitnami repo
|
36
|
+
run: helm repo add bitnami https://charts.bitnami.com/bitnami
|
37
|
+
- name: Helm install debugging logs
|
38
|
+
run: helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP
|
39
|
+
|
40
|
+
unit_test:
|
41
|
+
runs-on: ubuntu-latest
|
42
|
+
strategy:
|
43
|
+
matrix:
|
44
|
+
ruby-version: ['3.0']
|
45
|
+
steps:
|
46
|
+
- uses: actions/checkout@v3
|
47
|
+
- name: Set up Ruby
|
48
|
+
uses: ruby/setup-ruby@v1
|
49
|
+
with:
|
50
|
+
ruby-version: ${{ matrix.ruby-version }}
|
51
|
+
bundler-cache: true
|
52
|
+
- name: Run tests
|
53
|
+
run: bundle exec rake
|
54
|
+
|
55
|
+
test_exe:
|
56
|
+
runs-on: ubuntu-latest
|
57
|
+
strategy:
|
58
|
+
matrix:
|
59
|
+
ruby-version: ['3.0']
|
60
|
+
|
61
|
+
steps:
|
62
|
+
- uses: actions/checkout@v3
|
63
|
+
- name: Use Debug
|
64
|
+
run: export helm_upgrade_logs_debug=true
|
65
|
+
- name: Start KIND cluster
|
66
|
+
run: bash -f bin/start_kind.sh
|
67
|
+
- name: Add bitnami repo
|
68
|
+
run: helm repo add bitnami https://charts.bitnami.com/bitnami
|
69
|
+
- name: Install bitnami
|
70
|
+
run: ./exe/helm_upgrade_logs --install nginx bitnami/nginx --wait --debug --set service.type=ClusterIP --set replicaCount=2
|
71
|
+
- name: Test bitnami
|
72
|
+
run: ./exe/helm_test_logs nginx
|
73
|
+
# Older version of redis chart - need to update to work with new syntax
|
74
|
+
# - name: Install Redis
|
75
|
+
# run: ./exe/helm_upgrade_logs --install redis bitnami/redis --set auth.enabled=false --version 15.7.2 --set replica.replicaCount=1 --wait
|
data/.gitignore
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
/.bundle/
|
2
|
-
/.yardoc
|
3
|
-
/_yardoc/
|
4
|
-
/coverage/
|
5
|
-
/doc/
|
6
|
-
/pkg/
|
7
|
-
/spec/reports/
|
8
|
-
/tmp/
|
9
|
-
|
10
|
-
# rspec failure tracking
|
11
|
-
.rspec_status
|
12
|
-
Gemfile.lock
|
13
|
-
/.idea/
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
|
10
|
+
# rspec failure tracking
|
11
|
+
.rspec_status
|
12
|
+
Gemfile.lock
|
13
|
+
/.idea/
|
data/.gitlab-ci.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
image: ruby:3.0.0
|
2
|
-
|
3
|
-
before_script:
|
4
|
-
- gem install bundler -v 2.2.11
|
5
|
-
- bundle install
|
6
|
-
|
7
|
-
example_job:
|
8
|
-
script:
|
9
|
-
- bundle exec rake
|
1
|
+
image: ruby:3.0.0
|
2
|
+
|
3
|
+
before_script:
|
4
|
+
- gem install bundler -v 2.2.11
|
5
|
+
- bundle install
|
6
|
+
|
7
|
+
example_job:
|
8
|
+
script:
|
9
|
+
- bundle exec rake
|
data/.idea/helm_upgrade_logs.iml
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$">
|
8
|
-
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
-
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
-
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
-
</content>
|
12
|
-
<orderEntry type="jdk" jdkName="RVM: ruby-3.0.0" jdkType="RUBY_SDK" />
|
13
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.11, RVM: ruby-3.0.0) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.21.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="parser (v3.1.0.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.2.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-3.0.0) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.10.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.10.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.10.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.10.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.10.3, RVM: ruby-3.0.0) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop (v1.24.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.15.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.1.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
32
|
-
</component>
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<shared />
|
5
|
+
</component>
|
6
|
+
<component name="NewModuleRootManager">
|
7
|
+
<content url="file://$MODULE_DIR$">
|
8
|
+
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
+
</content>
|
12
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-3.0.0" jdkType="RUBY_SDK" />
|
13
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.11, RVM: ruby-3.0.0) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.21.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v3.1.0.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.2.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, RVM: ruby-3.0.0) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.10.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.10.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.10.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.10.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.10.3, RVM: ruby-3.0.0) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v1.24.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.15.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.1.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
32
|
+
</component>
|
33
33
|
</module>
|
data/.idea/misc.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="JavaScriptSettings">
|
4
|
-
<option name="languageLevel" value="ES6" />
|
5
|
-
</component>
|
6
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.6.3" project-jdk-type="RUBY_SDK" />
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JavaScriptSettings">
|
4
|
+
<option name="languageLevel" value="ES6" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.6.3" project-jdk-type="RUBY_SDK" />
|
7
7
|
</project>
|
data/.idea/modules.xml
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/helm_upgrade_logs.iml" filepath="$PROJECT_DIR$/.idea/helm_upgrade_logs.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/helm_upgrade_logs.iml" filepath="$PROJECT_DIR$/.idea/helm_upgrade_logs.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
8
|
</project>
|
data/.idea/vcs.xml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="VcsDirectoryMappings">
|
4
|
-
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
5
|
-
</component>
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="VcsDirectoryMappings">
|
4
|
+
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
5
|
+
</component>
|
6
6
|
</project>
|
data/.rspec
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
--format documentation
|
2
|
-
--color
|
3
|
-
--require spec_helper
|
1
|
+
--format documentation
|
2
|
+
--color
|
3
|
+
--require spec_helper
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
AllCops:
|
2
|
-
TargetRubyVersion: 3.0
|
3
|
-
|
4
|
-
Style/StringLiterals:
|
5
|
-
Enabled: true
|
6
|
-
EnforcedStyle: double_quotes
|
7
|
-
|
8
|
-
Style/StringLiteralsInInterpolation:
|
9
|
-
Enabled: true
|
10
|
-
EnforcedStyle: double_quotes
|
11
|
-
|
12
|
-
Layout/LineLength:
|
13
|
-
Max: 120
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 3.0
|
3
|
+
|
4
|
+
Style/StringLiterals:
|
5
|
+
Enabled: true
|
6
|
+
EnforcedStyle: double_quotes
|
7
|
+
|
8
|
+
Style/StringLiteralsInInterpolation:
|
9
|
+
Enabled: true
|
10
|
+
EnforcedStyle: double_quotes
|
11
|
+
|
12
|
+
Layout/LineLength:
|
13
|
+
Max: 120
|
data/CHANGELOG.md
CHANGED
@@ -1,71 +1,79 @@
|
|
1
|
-
## [0.
|
2
|
-
|
3
|
-
-
|
4
|
-
|
5
|
-
## [0.
|
6
|
-
|
7
|
-
-
|
8
|
-
|
9
|
-
## [0.3.
|
10
|
-
|
11
|
-
-
|
12
|
-
|
13
|
-
## [0.3.
|
14
|
-
|
15
|
-
-
|
16
|
-
|
17
|
-
## [0.3.
|
18
|
-
|
19
|
-
-
|
20
|
-
|
21
|
-
## [0.3.
|
22
|
-
|
23
|
-
-
|
24
|
-
|
25
|
-
## [0.3.
|
26
|
-
|
27
|
-
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
## [0.2.
|
40
|
-
|
41
|
-
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
-
|
51
|
-
|
52
|
-
## [0.2.
|
53
|
-
|
54
|
-
-
|
55
|
-
|
56
|
-
## [0.
|
57
|
-
|
58
|
-
-
|
59
|
-
|
60
|
-
## [0.
|
61
|
-
|
62
|
-
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
-
|
1
|
+
## [0.4.1]
|
2
|
+
|
3
|
+
- Ignore error if new environment variable `helm_upgrade_logs_ignore_child_error` is passed
|
4
|
+
|
5
|
+
## [0.4.0]
|
6
|
+
|
7
|
+
- Change to handle params before release name fixing #1
|
8
|
+
|
9
|
+
## [0.3.6]
|
10
|
+
|
11
|
+
- Handle parsing multiple error messages in `helm_upgrade_logs_error_msg` that are comma separated
|
12
|
+
|
13
|
+
## [0.3.5]
|
14
|
+
|
15
|
+
- Fix error where multiple processes being spawned to log the same pod
|
16
|
+
|
17
|
+
## [0.3.4]
|
18
|
+
|
19
|
+
- Only log to folder if `helm_upgrade_logs_error_msg` env variable set
|
20
|
+
|
21
|
+
## [0.3.3]
|
22
|
+
|
23
|
+
- Run force kill on processes to ensure they stop
|
24
|
+
|
25
|
+
## [0.3.2]
|
26
|
+
|
27
|
+
- ADO error and normal error don't need to both be displayed
|
28
|
+
|
29
|
+
## [0.3.1]
|
30
|
+
|
31
|
+
- Fix LOG folder parsed to check error message
|
32
|
+
|
33
|
+
## [0.3.0]
|
34
|
+
|
35
|
+
- Log output to a file in a folder `helm_upgrade_logs` as well as STDOUT
|
36
|
+
- If `helm_upgrade_logs_error_msg` is set then rethrow error after install finished. For AzureDevOps, setting
|
37
|
+
`helm_upgrade_logs_ado_error` to `true` will raise an error in the build
|
38
|
+
|
39
|
+
## [0.2.6]
|
40
|
+
|
41
|
+
- Don't log pods existing before an upgrade
|
42
|
+
|
43
|
+
## [0.2.5] 2022-04-21
|
44
|
+
|
45
|
+
- Return helm status code as script's status code
|
46
|
+
|
47
|
+
## [0.2.4] 2022-04-21
|
48
|
+
|
49
|
+
- Handle `n`, `--namespace` from helm command
|
50
|
+
- Exit if there is failure on helm command while trying to get logs
|
51
|
+
|
52
|
+
## [0.2.3] - 2022-04-20
|
53
|
+
|
54
|
+
- Configuration on initial wait for pods logs and subsequent wait limits
|
55
|
+
|
56
|
+
## [0.2.2] - 2022-04-20
|
57
|
+
|
58
|
+
- Wait for logs on each pod having a process for logging each pod
|
59
|
+
|
60
|
+
## [0.2.0] - 2022-04-20
|
61
|
+
|
62
|
+
- Monitoring pods don't filter managed by helm as some pods don't have that with selectorLabels
|
63
|
+
|
64
|
+
## [0.1.7] - 2022-04-20
|
65
|
+
|
66
|
+
- Monitor helm upgrade command and periodically reload getting logs when new pods appear
|
67
|
+
|
68
|
+
## [0.1.6] - 2022-04-17
|
69
|
+
|
70
|
+
- Add `helm_test_logs` exe to check logs during `helm test`
|
71
|
+
- Add `pod-running-timeout` of 300s to try and pick up logs that might take a while to appear
|
72
|
+
|
73
|
+
## [0.1.5] - 2022-04-16
|
74
|
+
|
75
|
+
- Only look at logs for release name
|
76
|
+
|
77
|
+
## [0.1.4] - 2022-04-16
|
78
|
+
|
79
|
+
- Wait for pods with logs to start before watching
|