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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -9
- data/Dockerfile +2 -2
- data/Jenkinsfile +31 -165
- data/README.md +1 -1
- data/VERSION +1 -1
- data/distrib/secrets.yml +0 -2
- data/features/package.feature +7 -7
- data/image-tags +1 -4
- data/lib/conjur/debify/action/publish.rb +34 -53
- data/lib/conjur/debify.rb +315 -328
- data/push-image.sh +2 -8
- data/tag-image.sh +6 -0
- metadata +4 -5
- data/kics.config +0 -10
- data/push-manifest.sh +0 -14
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
|
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
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.
|
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:
|
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.
|
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
|