helm-wrapper 1.6.0 → 1.6.1
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/lib/helm-wrapper.rb +2 -2
- data/lib/helm-wrapper/version.rb +1 -1
- 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: 426d691601f0abf81de0fed973b780d045f280ae57667f1d6568421073949e80
|
|
4
|
+
data.tar.gz: 29ca573755007d4f3060f468ff81874fb27a59bc62a530a969683c4b1ecec71d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 856ac83c194d9950099ce41db009788068c5bfc3e9a9982b88ec78aeac9ff199f6b435d443fb9f62975affb8703e0d3a803d76aa662c7a123b870865700c5765
|
|
7
|
+
data.tar.gz: 9f44e3844f86f852042a13ab7da3146d83348083db9ae49f3b772f7c0f8b26accedc939f469beb61e9035837ca874ea4eed30ea8b8601e2c5fa3d95e02f21897
|
data/lib/helm-wrapper.rb
CHANGED
|
@@ -60,7 +60,7 @@ module HelmWrapper
|
|
|
60
60
|
|
|
61
61
|
###############################################################################
|
|
62
62
|
|
|
63
|
-
def self.development_tasks(chart:, path:, options: Hash.new)
|
|
63
|
+
def self.development_tasks(chart:, path:, oci: false, options: Hash.new)
|
|
64
64
|
@logger.info("Building development tasks for path: #{path}...")
|
|
65
65
|
|
|
66
66
|
@logger.fatal("Options must be specified as a hash!") unless options.kind_of?(Hash)
|
|
@@ -80,7 +80,7 @@ module HelmWrapper
|
|
|
80
80
|
|
|
81
81
|
tasks = Array.new
|
|
82
82
|
tasks << HelmWrapper::Tasks::Binary.new(binary: binary)
|
|
83
|
-
tasks << HelmWrapper::Tasks::Push.new(binary: binary, chart: chart)
|
|
83
|
+
tasks << HelmWrapper::Tasks::Push.new(binary: binary, chart: chart) if oci
|
|
84
84
|
tasks << HelmWrapper::Tasks::Validate.new(binary: binary, chart: chart)
|
|
85
85
|
return tasks
|
|
86
86
|
end
|
data/lib/helm-wrapper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: helm-wrapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Lees
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
rubygems_version: 3.2.
|
|
86
|
+
rubygems_version: 3.2.15
|
|
87
87
|
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: A ruby wrapper for managing Helm binaries and chart deployment.
|