conjur-debify 3.0.3.pre.248 → 3.0.3.pre.1914

Sign up to get free protection for your applications and to get access to all the features.
data/push-image.sh CHANGED
@@ -1,12 +1,6 @@
1
1
  #!/bin/bash -ex
2
2
 
3
- TAG=$(< VERSION)
4
- ARCH="$1"
5
- if [ -z "$ARCH" ]; then
6
- ARCH="amd64"
7
- fi
8
-
9
3
  for t in $(./image-tags); do
10
- docker tag "debify:$TAG" "registry.tld/conjurinc/debify:$t-$ARCH"
11
- docker push "registry.tld/conjurinc/debify:$t-$ARCH"
4
+ docker push registry.tld/conjurinc/debify:$t
12
5
  done
6
+
data/tag-image.sh ADDED
@@ -0,0 +1,6 @@
1
+ #!/bin/bash -ex
2
+
3
+ TAG=$(< VERSION)
4
+ for t in $(./image-tags); do
5
+ docker tag debify:$TAG registry.tld/conjurinc/debify:$t
6
+ done
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-debify
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3.pre.248
4
+ version: 3.0.3.pre.1914
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberArk Software, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2023-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli
@@ -212,7 +212,6 @@ files:
212
212
  - features/support/world.rb
213
213
  - features/test.feature
214
214
  - image-tags
215
- - kics.config
216
215
  - lib/conjur/debify.rb
217
216
  - lib/conjur/debify/Dockerfile.fpm
218
217
  - lib/conjur/debify/action/publish.rb
@@ -224,7 +223,6 @@ files:
224
223
  - lib/conjur/publish/Dockerfile
225
224
  - publish-rubygem.sh
226
225
  - push-image.sh
227
- - push-manifest.sh
228
226
  - secrets.yml
229
227
  - spec/action/publish_spec.rb
230
228
  - spec/data/Makefile
@@ -232,6 +230,7 @@ files:
232
230
  - spec/debify_utils_spec.rb
233
231
  - spec/spec_helper.rb
234
232
  - spec/utils_spec.rb
233
+ - tag-image.sh
235
234
  - test.sh
236
235
  homepage: https://github.com/conjurinc/debify
237
236
  licenses:
@@ -252,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
252
251
  - !ruby/object:Gem::Version
253
252
  version: 1.3.1
254
253
  requirements: []
255
- rubygems_version: 3.4.19
254
+ rubygems_version: 3.4.10
256
255
  signing_key:
257
256
  specification_version: 4
258
257
  summary: Utility commands to build and package Conjur services as Debian packages
data/kics.config DELETED
@@ -1,10 +0,0 @@
1
- exclude-queries:
2
- - b03a748a-542d-44f4-bb86-9199ab4fd2d5 # Healthcheck Instruction Missing - it is just a tool, not a container that needs to be healthy
3
- - 698ed579-b239-4f8f-a388-baa4bcb13ef8 # Healthcheck Not Set - it is just a tool, not a container that needs to be healthy
4
- - fd54f200-402c-4333-a5a4-36ef6709af2f # Missing User Instruction
5
- - f45ea400-6bbe-4501-9fc7-1c3d75c32067 # Image Version Using 'latest'
6
- - 965a08d7-ef86-4f14-8792-4a3b2098937e # Apt Get Install Pin Version Not Defined
7
- # The following files are used in CI or present as an example only.
8
- exclude-paths:
9
- - "debify/example/docker-compose.yml"
10
- - "debify/lib/conjur/publish/Dockerfile" # Only used for publishing the image in pipeline
data/push-manifest.sh DELETED
@@ -1,14 +0,0 @@
1
- #!/bin/bash -ex
2
-
3
- for t in $(./image-tags); do
4
- docker pull "registry.tld/conjurinc/debify:$t-amd64"
5
- docker pull "registry.tld/conjurinc/debify:$t-arm64"
6
-
7
- docker manifest create \
8
- --insecure \
9
- "registry.tld/conjurinc/debify:$t" \
10
- --amend "registry.tld/conjurinc/debify:$t-amd64" \
11
- --amend "registry.tld/conjurinc/debify:$t-arm64"
12
-
13
- docker manifest push --insecure "registry.tld/conjurinc/debify:$t"
14
- done