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

Commit ad6dc7e

Browse files
committed
Added ketch #3479
1 parent 50333fc commit ad6dc7e

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
@@ -1819,6 +1819,17 @@
18191819
"datasourceTemplate": "github-releases",
18201820
"extractVersionTemplate": "^v(?<version>.+?)$"
18211821
},
1822+
{
1823+
"fileMatch": [
1824+
"^tools/ketch/manifest.yaml$"
1825+
],
1826+
"matchStrings": [
1827+
"version: \"?(?<currentValue>.*?)\"?\\n"
1828+
],
1829+
"depNameTemplate": "theketchio/ketch",
1830+
"datasourceTemplate": "github-releases",
1831+
"extractVersionTemplate": "^v(?<version>.+?)$"
1832+
},
18221833
{
18231834
"fileMatch": [
18241835
"^tools/kind/manifest.yaml$"

tools/ketch/Dockerfile.template

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
RUN <<EOF
10+
curl --silent --location --output "${prefix}${target}/bin/ketch" \
11+
"https://github.com/theketchio/ketch/releases/download/v${version}/ketch-linux-amd64"
12+
chmod +x "${prefix}${target}/bin/ketch"
13+
EOF

tools/ketch/manifest.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: ketch
2+
version: 0.7.0
3+
check: ""
4+
tags:
5+
- type/cli
6+
- cicd
7+
homepage: https://github.com/theketchio/ketch
8+
description: Application delivery framework that facilitates the deployment and management of applications on Kubernetes using a simple command line interface
9+
renovate:
10+
datasource: github-releases
11+
package: theketchio/ketch
12+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)