pfab 0.58.21 → 0.58.22
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/pfab/cli.rb +2 -1
- data/lib/pfab/version.rb +1 -1
- data/pfab.gemspec +3 -3
- 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: b95489ea1ec8b92010346e1f047bac0cea32f43e36231e2bb045a945ad1ab34a
|
4
|
+
data.tar.gz: 8dbe7de91271fdadf90576e238e622b41784b6dc337a28ef53362597d71bfc09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cd9f03a768870ee348a34eadb8d6d369aef8f1971657d6bd9d82a4e60b9773060c1d25ea471d8bcda7acf0253600487f13db77173fb3b35b32785519d5545fc
|
7
|
+
data.tar.gz: 9dabbe1f5a0364af6ec89dc82764a1e0cd6bf72ae2a26c105ac55d1ab0e3e3ee1b7117b49b167ccd7bf03107d5adec19fca8f3b6f6752eee6e64a77068451bff
|
data/lib/pfab/cli.rb
CHANGED
@@ -359,7 +359,8 @@ module Pfab
|
|
359
359
|
if docker_container_driver_available?
|
360
360
|
say "Using docker-container driver - building and pushing directly to avoid local tagging issues"
|
361
361
|
# When using docker-container driver, build and push directly since image won't be in local docker
|
362
|
-
|
362
|
+
# Use --output to directly specify registry destination without tags
|
363
|
+
build_cmd = "docker buildx build --output type=registry,name=#{full_image_name} --platform linux/amd64 #{build_args} #{cache_args} ."
|
363
364
|
puts build_cmd
|
364
365
|
result = system(build_cmd)
|
365
366
|
|
data/lib/pfab/version.rb
CHANGED
data/pfab.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: pfab 0.58.
|
5
|
+
# stub: pfab 0.58.22 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "pfab".freeze
|
9
|
-
s.version = "0.58.
|
9
|
+
s.version = "0.58.22".freeze
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
13
|
s.authors = ["Jeff Dwyer".freeze]
|
14
|
-
s.date = "2025-08-
|
14
|
+
s.date = "2025-08-27"
|
15
15
|
s.description = "k8s helper".freeze
|
16
16
|
s.email = "jdwyer@prefab.cloud".freeze
|
17
17
|
s.executables = ["pfab".freeze]
|