mirror of
https://github.com/plcnk/charts.git
synced 2026-04-06 01:34:23 +00:00
Compare commits
6 Commits
gh-pages
...
it-tools-1
| Author | SHA1 | Date | |
|---|---|---|---|
| be39c8c240 | |||
| 5e11c94795 | |||
| 1a462f655d | |||
| 13e72521ae | |||
| 290272100f | |||
| d519464ace |
36
.github/renovate.json5
vendored
Normal file
36
.github/renovate.json5
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"github>plcnk/.github:default.json5",
|
||||||
|
":semanticCommitTypeAll(chore)"
|
||||||
|
],
|
||||||
|
"regexManagers": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["\\.yaml$"],
|
||||||
|
"matchStrings": [
|
||||||
|
"# ?renovate datasource=(?<datasource>.+?) depName=(?<depName>.+)\\n.+: [\"']?(?<currentValue>.+?)[\"']?\\n"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchDatasources": ["helm"],
|
||||||
|
"commitMessageTopic": "{{depName}} Helm release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"matchPackageNames": ["ghcr.io/dgtlmoon/changedetection.io"],
|
||||||
|
"versioning": "loose"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"matchPackageNames": ["ghcr.io/juanfont/headscale"],
|
||||||
|
"allowedVersions": "!/^0.23.0$/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"matchPackageNames": ["eqalpha/keydb"],
|
||||||
|
"versioning": "regex:^(?<compatability>.+?)_v(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
30
.github/workflows/release.yaml
vendored
Normal file
30
.github/workflows/release.yaml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: Release Charts
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
paths:
|
||||||
|
- charts/**
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Configure Git
|
||||||
|
run: |
|
||||||
|
git config user.name "$GITHUB_ACTOR"
|
||||||
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
|
- name: Run chart-releaser
|
||||||
|
uses: helm/chart-releaser-action@v1.6.0
|
||||||
|
env:
|
||||||
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
12
README.md
12
README.md
@ -8,10 +8,6 @@
|
|||||||
<a href="https://github.com/plcnk/charts/actions/workflows/release.yaml"><img src="https://github.com/plcnk/charts/actions/workflows/release.yaml/badge.svg" /></a>
|
<a href="https://github.com/plcnk/charts/actions/workflows/release.yaml"><img src="https://github.com/plcnk/charts/actions/workflows/release.yaml/badge.svg" /></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<img src="https://img.shields.io/github/v/release/plcnk/charts?filter=it-tools-*" />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
# plcnk's Helm Charts
|
# plcnk's Helm Charts
|
||||||
|
|
||||||
Charts for deploying applications on [Kubernetes](https://kubernetes.io/) using [Helm](https://helm.sh/).
|
Charts for deploying applications on [Kubernetes](https://kubernetes.io/) using [Helm](https://helm.sh/).
|
||||||
@ -34,10 +30,10 @@ You can then run `helm search repo plcnk` to see the charts.
|
|||||||
|
|
||||||
## Available charts
|
## Available charts
|
||||||
|
|
||||||
| Chart | Chart Version | App Version | Description |
|
| Chart | Description |
|
||||||
| --------------------------------------------------------------------- | ------------- | ----------------- | --------------------------------------------------------------- |
|
| ----- | ----------- |
|
||||||
| [it-tools](https://github.com/plcnk/charts/tree/main/charts/it-tools) | 0.1.0 | 2024.5.13-a0bc346 | Collection of handy online tools for developers, with great UX. |
|
| [IT-Tools <img src='https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg' alt='it-tools icon' width='18px' align='right' loading='lazy'>](charts/it-tools/) | Collection of handy online tools for developers, with great UX. |
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
[MIT License](https://github.com/plcnk/charts/blob/master/LICENSE).
|
This project is licensed under the [MIT License](https://github.com/plcnk/charts/blob/master/LICENSE).
|
||||||
|
|||||||
@ -1,30 +1,25 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: it-tools
|
name: it-tools
|
||||||
description: Collection of handy online tools for developers, with great UX.
|
description: Collection of handy online tools for developers, with great UX.
|
||||||
icon: https://raw.githubusercontent.com/CorentinTh/it-tools/main/public/mstile-310x310.png
|
home: https://github.com/plcnk/charts/tree/master/charts/it-tools
|
||||||
|
icon: https://raw.githubusercontent.com/plcnk/charts/master/charts/it-tools/icon.svg
|
||||||
|
type: application
|
||||||
|
version: 1.0.2
|
||||||
|
# renovate datasource=docker depName=ghcr.io/corentinth/it-tools
|
||||||
|
appVersion: "2024.5.13-a0bc346"
|
||||||
|
kubeVersion: ">=1.22.0-0"
|
||||||
|
keywords:
|
||||||
|
- it-tools
|
||||||
|
- it
|
||||||
|
- tools
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/CorentinTh/it-tools
|
- https://github.com/CorentinTh/it-tools
|
||||||
maintainers:
|
annotations:
|
||||||
- name: Romain Pluciennik
|
artifacthub.io/changes: |
|
||||||
email: romain.pluciennik@gmail.com
|
- kind: changed
|
||||||
|
description: Changed chart metadata
|
||||||
# A chart can be either an 'application' or a 'library' chart.
|
artifacthub.io/links: |-
|
||||||
#
|
- name: App Source
|
||||||
# Application charts are a collection of templates that can be packaged into versioned archives
|
url: https://github.com/CorentinTh/it-tools
|
||||||
# to be deployed.
|
- name: Chart Source
|
||||||
#
|
url: https://github.com/plcnk/charts/tree/master/charts/it-tools
|
||||||
# Library charts provide useful utilities or functions for the chart developer. They're included as
|
|
||||||
# a dependency of application charts to inject those utilities and functions into the rendering
|
|
||||||
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
|
|
||||||
type: application
|
|
||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
|
||||||
# to the chart and its templates, including the app version.
|
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
|
||||||
version: 0.1.0
|
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
|
||||||
# It is recommended to use it with quotes.
|
|
||||||
appVersion: "2024.5.13-a0bc346"
|
|
||||||
|
|||||||
6
charts/it-tools/icon.svg
Normal file
6
charts/it-tools/icon.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 9.7 KiB |
Reference in New Issue
Block a user