Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit d287cf4

Browse files
committed
Added cfssl #3529
1 parent fc04142 commit d287cf4

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,17 @@
372372
"datasourceTemplate": "github-releases",
373373
"extractVersionTemplate": "^v(?<version>.+?)$"
374374
},
375+
{
376+
"fileMatch": [
377+
"^tools/cfssl/manifest.yaml$"
378+
],
379+
"matchStrings": [
380+
"version: \"?(?<currentValue>.*?)\"?\\n"
381+
],
382+
"depNameTemplate": "cloudflare/cfssl",
383+
"datasourceTemplate": "github-releases",
384+
"extractVersionTemplate": "^v(?<version>.+?)$"
385+
},
375386
{
376387
"fileMatch": [
377388
"^tools/chekr/manifest.yaml$"

tools/cfssl/Dockerfile.template

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#syntax=docker/dockerfile:1.4.3
2+
3+
ARG ref=main
4+
FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5+
6+
ARG name
7+
ARG version
8+
9+
ARG BINARIES="cfssl-bundle cfssl-certinfo cfssl-newkey cfssl-scan cfssljson cfssl mkbundle multirootca"
10+
RUN <<EOF
11+
for BINARY in ${BINARIES}; do
12+
curl --silent --location --output "${prefix}${target}/bin/${BINARY}" \
13+
"https://github.com/cloudflare/cfssl/releases/download/v${version}/${BINARY}_${version}_linux_amd64"
14+
chmod +x "${prefix}${target}/bin/${BINARY}"
15+
done
16+
EOF

tools/cfssl/manifest.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: cfssl
2+
version: 1.6.3
3+
check: ""
4+
tags:
5+
- type/cli
6+
- category/security
7+
homepage: https://github.com/cloudflare/cfssl
8+
description: Cloudflare's PKI and TLS toolkit
9+
renovate:
10+
datasource: github-releases
11+
package: cloudflare/cfssl
12+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)