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

Commit 016f014

Browse files
committed
Added ddosify #4190
1 parent 6fe8dfe commit 016f014

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -870,6 +870,17 @@
870870
"datasourceTemplate": "github-releases",
871871
"extractVersionTemplate": "^v(?<version>.+?)$"
872872
},
873+
{
874+
"fileMatch": [
875+
"^tools/ddosify/manifest.yaml$"
876+
],
877+
"matchStrings": [
878+
"version: \"?(?<currentValue>.*?)\"?\\n"
879+
],
880+
"depNameTemplate": "ddosify/ddosify",
881+
"datasourceTemplate": "github-releases",
882+
"extractVersionTemplate": "^v(?<version>.+?)$"
883+
},
873884
{
874885
"fileMatch": [
875886
"^tools/dependency-check/manifest.yaml$"

tools/ddosify/Dockerfile.template

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#syntax=docker/dockerfile:1.4.3
2+
3+
ARG ref=main
4+
5+
FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6+
ARG name
7+
ARG version
8+
RUN <<EOF
9+
curl --silent --location --fail "https://github.com/ddosify/ddosify/releases/download/v${version}/ddosify_${version}_linux_${alt_arch}.tar.gz" \
10+
| tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11+
ddosify
12+
EOF

tools/ddosify/manifest.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: ddosify
2+
version: "0.10.0"
3+
check: ${binary} --version | head -1 | tr -s ' ' | cut -d' ' -f2
4+
tags:
5+
- category/security
6+
- type/cli
7+
- lang/go
8+
homepage: https://github.com/ddosify/ddosify
9+
description: High-performance load testing tool, written in Golang. For distributed and Geo-targeted load testing Ddosify Cloud - https//ddosify.com 🚀
10+
renovate:
11+
datasource: github-releases
12+
package: ddosify/ddosify
13+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)