Compare commits
53 Commits
adminer-2.
...
adminer-2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c34ce2d06 | ||
|
|
6dfc42c6be | ||
|
|
96d7745f22 | ||
|
|
c965cdc995 | ||
|
|
ef199b08a4 | ||
|
|
ae1e653127 | ||
|
|
881c939dc0 | ||
|
|
e5deeaf4fd | ||
|
|
b5dc8afb57 | ||
|
|
ef8917bf66 | ||
|
|
616a0c5fff | ||
|
|
025fc12492 | ||
|
|
86c3ca7a7b | ||
|
|
bac1e6e5e3 | ||
|
|
030614c1e8 | ||
|
|
f7ddd8f555 | ||
|
|
dcc7fe5ed3 | ||
|
|
37ea4a1920 | ||
|
|
56905362f9 | ||
|
|
64764bafc3 | ||
|
|
318fde858e | ||
|
|
bde6567b79 | ||
|
|
9c774c720f | ||
|
|
279e71d6fd | ||
|
|
9f38ddbf60 | ||
|
|
ba1f1494f3 | ||
|
|
bf2710da61 | ||
|
|
ebe4b5668a | ||
|
|
c719b7edc9 | ||
|
|
b70b77a984 | ||
|
|
d90b8bc12a | ||
|
|
5ef9763bed | ||
|
|
47a81df78e | ||
|
|
07c6d1ab7e | ||
|
|
a32bcf03f9 | ||
|
|
a304278d50 | ||
|
|
8c25487408 | ||
|
|
27548259e2 | ||
|
|
acb92de675 | ||
|
|
4d335f300d | ||
|
|
23f847aaee | ||
|
|
18c87f71b8 | ||
|
|
c78573b9a5 | ||
|
|
1c944567c7 | ||
|
|
747e35fbfd | ||
|
|
874ed747f0 | ||
|
|
a355a6142e | ||
|
|
40772a03c6 | ||
|
|
38f647a9de | ||
|
|
a7abd8ac98 | ||
|
|
f84e369b90 | ||
|
|
7703586ba7 | ||
|
|
e66a3362f9 |
2
.github/scripts/build-catalog.sh
vendored
2
.github/scripts/build-catalog.sh
vendored
@@ -105,13 +105,13 @@ copy_apps() {
|
||||
}
|
||||
export -f copy_apps
|
||||
|
||||
|
||||
if [[ -d "charts/${1}" ]]; then
|
||||
echo "Start processing charts/${1} ..."
|
||||
chartversion=$(cat charts/${1}/Chart.yaml | grep "^version: " | awk -F" " '{ print $2 }')
|
||||
chartname=$(basename charts/${1})
|
||||
train=$(basename $(dirname "charts/${1}"))
|
||||
SCALESUPPORT=$(cat charts/${1}/Chart.yaml | yq '.annotations."truecharts.org/SCALE-support"' -r)
|
||||
helm dependency build "charts/${1}" --skip-refresh || (sleep 10 && helm dependency build "charts/${1}" --skip-refresh) || (sleep 10 && helm dependency build "charts/${1}" --skip-refresh)
|
||||
if [[ "${SCALESUPPORT}" == "true" ]]; then
|
||||
clean_apps "charts/${1}" "${chartname}" "$train" "${chartversion}"
|
||||
copy_apps "charts/${1}" "${chartname}" "$train" "${chartversion}"
|
||||
|
||||
128
.github/scripts/fetch_helm_deps.sh
vendored
Executable file
128
.github/scripts/fetch_helm_deps.sh
vendored
Executable file
@@ -0,0 +1,128 @@
|
||||
#!/bin/bash
|
||||
|
||||
# require go-yq
|
||||
command -v go-yq >/dev/null 2>&1 || {
|
||||
printf >&2 "%s\n" "❌ go-yq (https://github.com/mikefarah/yq) is not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
|
||||
# define defaults
|
||||
cache_path=${cache_path:-./tgz_cache}
|
||||
charts_path=${charts_path:-./charts}
|
||||
# Do NOT persist this directory, in order to always have the latest index for this run.
|
||||
index_cache=${index_cache:-./index_cache}
|
||||
|
||||
mkdir -p "$cache_path"
|
||||
|
||||
trains=(
|
||||
"enterprise"
|
||||
"stable"
|
||||
"incubator"
|
||||
"dependency"
|
||||
)
|
||||
|
||||
download_deps() {
|
||||
local train_chart="$1"
|
||||
|
||||
# Extract dependencies for the Chart
|
||||
deps=$(go-yq '.dependencies' "$charts_path/$train_chart/Chart.yaml")
|
||||
# Find how many deps exist, so we can loop through them
|
||||
length=$(echo "$deps" | go-yq '. | length')
|
||||
|
||||
echo "🤖🔨 Processing <$charts_path/$train_chart>... Dependencies: $length"
|
||||
echo ""
|
||||
|
||||
for idx in $(eval echo "{0..$length}"); do
|
||||
# Retrieve info for the dep in the current index..
|
||||
curr_dep=$(echo "$deps" | pos="$idx" go-yq '.[env(pos)]')
|
||||
|
||||
if [ ! "$curr_dep" == null ]; then
|
||||
name=$(echo "$curr_dep" | go-yq '.name')
|
||||
version=$(echo "$curr_dep" | go-yq '.version')
|
||||
repo=$(echo "$curr_dep" | go-yq '.repository')
|
||||
|
||||
# Remove http:// or https:// from url to create a dir name
|
||||
repo_dir="${repo#http://}"
|
||||
repo_dir="${repo#https://}"
|
||||
|
||||
echo "**********"
|
||||
echo "🔗 Dependency: $name"
|
||||
echo "🆚 Version: $version"
|
||||
echo "🏠 Repository: $repo"
|
||||
echo ""
|
||||
|
||||
if [ -f "$cache_path/$repo_dir/$name-$version.tgz" ]; then
|
||||
echo "✅ Dependency exists in cache..."
|
||||
else
|
||||
echo "🤷♂️ Dependency does not exists in cache..."
|
||||
|
||||
repo_url="$repo/index.yaml"
|
||||
if [ -f "$index_cache/$repo_dir/index.yaml" ]; then
|
||||
echo "✅ Index for <$repo> exists!"
|
||||
else
|
||||
echo "⏬ Index for <$repo> is missing. Downloading from <$repo_url>..."
|
||||
|
||||
mkdir -p $index_cache/$repo_dir
|
||||
wget --quiet "$repo_url" -O "$index_cache/$repo_dir/index.yaml"
|
||||
if [ ! $? ]; then
|
||||
echo "❌ wget encountered an error..."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "$index_cache/$repo_dir/index.yaml" ]; then
|
||||
echo "✅ Downloaded index for <$repo>!"
|
||||
else
|
||||
echo "❌ Failed to download index for <$repo> from <$repo_url>"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# At the time of writing this, only 1 url existed (.urls[0]) pointing to the actual tgz.
|
||||
# Extract url from repo_url. It's under .entries.DEP_NAME.urls. We filter the specific version first (.version)
|
||||
dep_url=$(v="$version" n="$name" go-yq '.entries.[env(n)].[] | select (.version == env(v)) | .urls.[0]' "$index_cache/$repo_dir/index.yaml")
|
||||
|
||||
echo ""
|
||||
echo "⏬ Downloading dependency $name-$version from $dep_url..."
|
||||
mkdir -p "$cache_path/$repo_dir"
|
||||
wget --quiet "$dep_url" -P "$cache_path/$repo_dir"
|
||||
if [ ! $? ]; then
|
||||
echo "❌ wget encountered an error..."
|
||||
helm dependency build "$charts_path/$train_chart/Chart.yaml" || helm dependency update "$charts_path/$train_chart/Chart.yaml" || exit 1
|
||||
fi
|
||||
|
||||
if [ -f "$cache_path/$repo_dir/$name-$version.tgz" ]; then
|
||||
echo "✅ Dependency Downloaded!"
|
||||
else
|
||||
echo "❌ Failed to download dependency"
|
||||
# Try helm dependency build/update or otherwise fail fast if a dep fails to download...
|
||||
helm dependency build "$charts_path/$train_chart/Chart.yaml" || helm dependency update "$charts_path/$train_chart/Chart.yaml" || exit 1
|
||||
fi
|
||||
fi
|
||||
echo ""
|
||||
|
||||
mkdir -p "$charts_path/$train_chart/charts"
|
||||
echo "📝 Copying dependency <$name-$version.tgz> to <$charts_path/$train_chart/charts>..."
|
||||
cp "$cache_path/$repo_dir/$name-$version.tgz" "$charts_path/$train_chart/charts"
|
||||
|
||||
if [ -f "$charts_path/$train_chart/charts/$name-$version.tgz" ]; then
|
||||
echo "✅ Dependency copied!"
|
||||
echo ""
|
||||
else
|
||||
echo "❌ Failed to copy dependency"
|
||||
# Try helm dependency build/update or otherwise fail fast if a dep fails to copy...
|
||||
helm dependency build "$charts_path/$train_chart/Chart.yaml" || helm dependency update "$charts_path/$train_chart/Chart.yaml" || exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
}
|
||||
export -f download_deps
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
for train in "${trains[@]}"; do
|
||||
for chart in $(ls "$charts_path/$train"); do
|
||||
download_deps "${train}/${chart}"
|
||||
done
|
||||
done
|
||||
else
|
||||
download_deps "$1"
|
||||
fi
|
||||
12
.github/workflows/charts-release.yaml
vendored
12
.github/workflows/charts-release.yaml
vendored
@@ -140,8 +140,12 @@ jobs:
|
||||
if: |
|
||||
steps.collect-changes.outputs.changesDetectedAfterTag == 'true'
|
||||
run: |
|
||||
pip install yq
|
||||
CHARTS=(${{ steps.collect-changes.outputs.modifiedChartsAfterTag }})
|
||||
charts_path="charts"
|
||||
for changed in ${CHARTS[@]}; do
|
||||
.github/scripts/fetch_helm_deps.sh "${changed}"
|
||||
done
|
||||
pip install yq
|
||||
parthreads=$(($(nproc) * 2))
|
||||
parallel -j ${parthreads} .github/scripts/build-catalog.sh '2>&1' ::: ${CHARTS[@]}
|
||||
|
||||
@@ -157,7 +161,7 @@ jobs:
|
||||
git push
|
||||
cd -
|
||||
rm -rf catalog
|
||||
|
||||
|
||||
- name: set git author
|
||||
if: |
|
||||
steps.collect-changes.outputs.changesDetectedAfterTag == 'true'
|
||||
@@ -165,7 +169,7 @@ jobs:
|
||||
run: |
|
||||
git config user.name "TrueCharts-Bot"
|
||||
git config user.email "bot@truecharts.org"
|
||||
|
||||
|
||||
- name: Run chart-releaser for dependency apps
|
||||
uses: helm/chart-releaser-action@98bccfd32b0f76149d188912ac8e45ddd3f8695f # tag=v1.4.1
|
||||
if: |
|
||||
@@ -176,7 +180,7 @@ jobs:
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.BOT_TOKEN }}"
|
||||
CR_SKIP_EXISTING: "true"
|
||||
|
||||
|
||||
- name: Tag App Releases
|
||||
if: |
|
||||
steps.collect-changes.outputs.changesDetectedAfterTag == 'true'
|
||||
|
||||
2
.github/workflows/pr-metadata.yaml
vendored
2
.github/workflows/pr-metadata.yaml
vendored
@@ -29,7 +29,7 @@ jobs:
|
||||
steps:
|
||||
- name: Get branch name
|
||||
id: branch-name
|
||||
uses: tj-actions/branch-names@b90df97be1c548ac9c8bd9186bfea6747153bf5e # tag=v6.2
|
||||
uses: tj-actions/branch-names@a594c1e96eab7790611fdaf5bc8f76ea55cedabd # v6.3
|
||||
|
||||
- name: Save PR data to file
|
||||
env:
|
||||
|
||||
2
.github/workflows/renovate-bump.yaml
vendored
2
.github/workflows/renovate-bump.yaml
vendored
@@ -83,7 +83,7 @@ jobs:
|
||||
tcsource="https://github.com/truecharts/charts/tree/master/charts/$train/$chartname" go-yq -i '.sources += env(tcsource)' "${chart}/Chart.yaml"
|
||||
# Add the rest of the sources
|
||||
while IFS= read -r line; do
|
||||
src="$line" go-yq -i '.sources += env(src)' "${chart}/Chart.yaml"
|
||||
src="$line" go-yq -i '.sources += env(src)' "${chart}/Chart.yaml" || echo "src set error"
|
||||
done <<< "$curr_sources"
|
||||
echo "Sources of ${chartname} updated!"
|
||||
}
|
||||
|
||||
2
.github/workflows/renovate.yml
vendored
2
.github/workflows/renovate.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
with:
|
||||
token: ${{ secrets.BOT_TOKEN }}
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@85f3150268ff10d06bc5731dbd3c6a2eec76374c # v34.22.1
|
||||
uses: renovatebot/github-action@e72c881863e8edd62b0d7d053fb9ccab0e2c4368 # v34.23.1
|
||||
with:
|
||||
configurationFile: .github/renovate-config.js
|
||||
token: ${{ secrets.BOT_TOKEN }}
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -54,3 +54,5 @@ chartsrepo/
|
||||
.cr-index/
|
||||
website/
|
||||
pub/
|
||||
tgz_cache/
|
||||
index_cache/
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "22.10.2.11"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: ClickHouse is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
|
||||
home: https://truecharts.org/docs/charts/dependency/clickhouse
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://clickhouse.com/
|
||||
- https://hub.docker.com/r/yandex/clickhouse-server
|
||||
type: application
|
||||
version: 2.0.3
|
||||
version: 2.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "22.05.8.2"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "An awesome Online Office suite."
|
||||
home: https://truecharts.org/docs/charts/dependency/collabora-online
|
||||
@@ -22,7 +22,7 @@ sources:
|
||||
- https://sdk.collaboraonline.com/contents.html
|
||||
- https://github.com/CollaboraOnline/online/tree/master/kubernetes/helm
|
||||
type: application
|
||||
version: 13.0.3
|
||||
version: 13.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- office
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "10.9.4"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Fast, reliable, scalable, and easy to use open-source relational database system.
|
||||
home: https://truecharts.org/docs/charts/dependency/mariadb
|
||||
@@ -25,7 +25,7 @@ sources:
|
||||
- https://github.com/prometheus/mysqld_exporter
|
||||
- https://mariadb.org
|
||||
type: application
|
||||
version: 4.0.3
|
||||
version: 4.0.6
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/mariadb
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 10.9.4@sha256:a868d6df7e09f69243c6326e292f7e40207e96c923c02186d2ed1d6cc9b3b34d
|
||||
tag: 10.9.4@sha256:8b950867422cd09b87662a5c8f1f4c93268b043cca5c4f579e019f285a99467e
|
||||
|
||||
controller:
|
||||
# -- Set the controller type.
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "1.6.17"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Memcached is a memory-backed database caching solution
|
||||
home: https://truecharts.org/docs/charts/dependency/memcached
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-memcached
|
||||
- http://memcached.org/
|
||||
type: application
|
||||
version: 4.0.3
|
||||
version: 4.0.6
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/memcached
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 1.6.17@sha256:34aa5fda5f10e9f1e26a22f2accc79b531eac986897d8374bffc31fe7a39319b
|
||||
tag: 1.6.17@sha256:3d3492c920ff411be39d90670ea07cf47c262c1e41eed4c2adf0dc03d938e6f9
|
||||
|
||||
service:
|
||||
main:
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "6.0.2"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Fast, reliable, scalable, and easy to use open-source no-sql database system.
|
||||
home: https://truecharts.org/docs/charts/dependency/mongodb
|
||||
@@ -24,7 +24,7 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-mongodb
|
||||
- https://www.mongodb.com
|
||||
type: application
|
||||
version: 3.0.3
|
||||
version: 3.0.6
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/mongodb
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 6.0.2@sha256:2920190c42505b72919476eb977016ed1dab16d5a971bc3c339de27ab38dd12a
|
||||
tag: 6.0.2@sha256:e69455b958b83c25ea7743d315bc2a9ee573015f928171e9b0b3b2cbb3833c70
|
||||
|
||||
controller:
|
||||
# -- Set the controller type.
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "14.5.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: PostgresSQL
|
||||
home: https://truecharts.org/docs/charts/dependency/postgresql
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/dependency/postgresql
|
||||
- https://www.postgresql.org/
|
||||
type: application
|
||||
version: 9.0.3
|
||||
version: 9.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
apiVersion: v2
|
||||
appVersion: "2.6.1"
|
||||
appVersion: "2.7.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Promtail is an agent which ships the contents of local logs to a Loki instance
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/promtail.png
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://grafana.com/oss/loki/
|
||||
- https://grafana.com/docs/loki/latest/
|
||||
type: application
|
||||
version: 4.0.3
|
||||
version: 4.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- metrics
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
image:
|
||||
repository: ghcr.io/truecharts/promtail
|
||||
tag: v2.6.1@sha256:e40671972c3ebdf7dc562b86c2f489418a03998daf44a72818e8243f9636f972
|
||||
tag: 2.7.0@sha256:fe9225ace310ae8b965604138a82d41a7bd6123221d8a811646e56dd9499705b
|
||||
|
||||
# controller:
|
||||
# # -- Set the controller type.
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "7.0.5"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Open source, advanced key-value store.
|
||||
home: https://truecharts.org/docs/charts/dependency/redis
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-redis
|
||||
- http://redis.io/
|
||||
type: application
|
||||
version: 4.0.3
|
||||
version: 4.0.6
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/redis
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 7.0.5@sha256:1353fa2b7051d1fd0e87b2ac2be929d4cd9f0b5b18f555b87388da0380c3c734
|
||||
tag: 7.0.5@sha256:c8ff3955d78a9a95deebd861823f845cf062f246798b139b92dd5432503ff81d
|
||||
|
||||
controller:
|
||||
# -- Set the controller type.
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "9.0.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Apache Solr
|
||||
home: https://truecharts.org/docs/charts/dependency/solr
|
||||
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/apache/solr
|
||||
- https://hub.docker.com/r/bitnami/solr/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.6
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- search
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/solr
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v9.0.0@sha256:bcc9e1a9905172eeb82686e1d007152bb21d38e084c180bd598e5260814d14e3
|
||||
tag: v9.0.0@sha256:fc787a6f23474d674bdbf14abbda88b36169ceffcb627ed19bdc2581ed43b836
|
||||
|
||||
controller:
|
||||
# -- Set the controller type.
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "jammy"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.5
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: This is only used as a subchart.
|
||||
home: https://truecharts.org/docs/charts/dependency/subchart
|
||||
@@ -19,7 +19,7 @@ name: subchart
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/dependency/subchart
|
||||
type: application
|
||||
version: 2.0.3
|
||||
version: 2.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- subchart
|
||||
|
||||
@@ -3,11 +3,11 @@ appVersion: "0.19"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
- condition: redis.enabled
|
||||
name: redis
|
||||
repository: https://charts.truecharts.org
|
||||
version: 3.0.121
|
||||
version: 4.0.5
|
||||
description: Blocky is a DNS proxy, DNS enhancer and ad-blocker for the local network written in Go
|
||||
home: https://truecharts.org/docs/charts/enterprise/blocky
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/blocky.png
|
||||
@@ -26,7 +26,7 @@ sources:
|
||||
- https://github.com/0xERR0R/blocky
|
||||
- https://github.com/Mozart409/blocky-frontend
|
||||
- https://hub.docker.com/r/spx01/blocky
|
||||
version: 2.0.3
|
||||
version: 3.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- network
|
||||
|
||||
@@ -29,7 +29,6 @@ volumeSpec:
|
||||
path: Corefile
|
||||
{{- end -}}
|
||||
|
||||
|
||||
{{- $_ := set .Values.persistence "tc-config" (include "blocky.configmap.mount" . | fromYaml) -}}
|
||||
|
||||
{{- $_ := set .Values.podAnnotations "prometheus.io/scrape" "true" -}}
|
||||
@@ -73,8 +72,6 @@ service:
|
||||
{{/* inject api paths in ingress */}}
|
||||
{{- include "blocky.apiinjector" . }}
|
||||
|
||||
|
||||
|
||||
{{/* Define path for DoH */}}
|
||||
{{- define "blocky.doh" -}}
|
||||
{{- $fullname := include "tc.common.names.fullname" . -}}
|
||||
@@ -102,6 +99,7 @@ service:
|
||||
{{/* inject api paths in ingress */}}
|
||||
{{- include "blocky.dohinjector" . }}
|
||||
|
||||
{{- include "blocky.servicemonitor" . -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{{- define "blocky.servicemonitor" -}}
|
||||
{{- if .Values.metrics.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
@@ -22,3 +23,4 @@ spec:
|
||||
{{- end }}
|
||||
path: /metrics
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
@@ -350,7 +350,7 @@ k8sgateway:
|
||||
metrics:
|
||||
# -- Enable and configure a Prometheus serviceMonitor for the chart under this key.
|
||||
# @default -- See values.yaml
|
||||
enabled: false
|
||||
enabled: true
|
||||
serviceMonitor:
|
||||
interval: 1m
|
||||
scrapeTimeout: 30s
|
||||
|
||||
@@ -10,7 +10,7 @@ keywords:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
@@ -22,7 +22,7 @@ sources:
|
||||
- https://github.com/metallb/metallb
|
||||
- https://metallb.universe.tf
|
||||
type: application
|
||||
version: 6.0.4
|
||||
version: 6.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- core
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Acestream-engine"
|
||||
home: https://truecharts.org/docs/charts/incubator/acestream
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/vstavrinov/acestream-service
|
||||
- https://hub.docker.com/r/vstavrinov/acestream-service
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Adguardhome-sync(https://github.com/bakito/adguardhome-sync/) is a tool to synchronize AdGuardHome config to replica instances.
|
||||
home: https://truecharts.org/docs/charts/incubator/adguardhome-sync
|
||||
@@ -27,4 +27,4 @@ sources:
|
||||
- https://github.com/orgs/linuxserver/packages/container/package/adguardhome-sync
|
||||
- https://github.com/linuxserver/docker-adguardhome-sync#readme
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -4,7 +4,7 @@ env:
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/adguardhome-sync
|
||||
tag: latest@sha256:989407fe0407980bd0751847c9eb9c21779db4903ca93e1e7fa77804ce4f5eeb
|
||||
tag: latest@sha256:6adae6415a9fad246524dff599909d03d18a84570337c15123f0c7951c0f0130
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Alien Swarm: Reactive Drop and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/alienswarm-reactivedrop
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Alien Swarm and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/alienswarm
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install Altitude and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/altitude
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/altitude/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install America's Army: Proving Grounds and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/americasarmy-pg
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.americasarmy.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Automated Movie Trailer Downloader :: AMTD is a Radarr Companion script to automatically download movie trailers for use in media applications\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/amtd
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/RandomNinjaAtk/docker-amtd
|
||||
- https://hub.docker.com/r/randomninjaatk/amtd
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "aMule is an eMule-like client for the eDonkey and Kademlia networks."
|
||||
home: https://truecharts.org/docs/charts/incubator/amule
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://github.com/t-chab/dockerfiles
|
||||
- https://hub.docker.com/r/tchabaud/amule
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Automated Music Video Downloader :: AMVD is a Lidarr Companion script to automatically download and tag Music Videos for use in various media applications"
|
||||
home: https://truecharts.org/docs/charts/incubator/amvd
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/RandomNinjaAtk/docker-amvd
|
||||
- https://hub.docker.com/r/randomninjaatk/amvd
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Android in Chart solution with noVNC supported and video recording. Work way better with Intel CPUs because AMD doesn't an cpu graphics card. So with amd cpus can be unusable.
|
||||
home: https://truecharts.org/docs/charts/incubator/android-8-0
|
||||
@@ -25,4 +25,4 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/android-8-0
|
||||
- https://registry.hub.docker.com/r/ulisses1478/docker-android
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Control AndroidTV/FireTV devices through ADB from the Home Assistant Core Chart."
|
||||
home: https://truecharts.org/docs/charts/incubator/androiddebugbridge
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://hub.docker.com/r/barnybbb/adb-hass-androidtv
|
||||
- https://hub.docker.com/r/barnybbb/adb-hass-androidtv/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "20220516"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
description: A cross-platform Anki sync server.
|
||||
home: https://truecharts.org/docs/charts/incubator/anki-sync-server
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/anki-sync-server.png
|
||||
@@ -18,7 +18,7 @@ name: anki-sync-server
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server
|
||||
- https://github.com/ankicommunity/anki-devops-services
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Anope is a set of IRC Services designed for flexibility and ease of use."
|
||||
home: https://truecharts.org/docs/charts/incubator/anope
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://thelounge.chat/
|
||||
- https://hub.docker.com/r/ich777/anope
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Very simple WebDAV server based on Apache. You need a WebDAV client to transfer files. It does not include a WebUI to upload files through your browser."
|
||||
home: https://truecharts.org/docs/charts/incubator/apache-webdav
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://httpd.apache.org/docs/2.4/mod/mod_dav.html
|
||||
- https://github.com/mgutt/docker-apachewebdav
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Apprise-api(https://github.com/caronc/apprise-api) Takes advantage of Apprise(https://github.com/caronc/apprise) through your network with a user-friendly API.\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/apprise-api
|
||||
@@ -27,4 +27,4 @@ sources:
|
||||
- https://github.com/orgs/linuxserver/packages/container/package/apprise-api
|
||||
- https://github.com/linuxserver/docker-apprise-api#readme
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,11 +3,11 @@ appVersion: "1.8.8"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
- condition: redis.enabled
|
||||
name: redis
|
||||
repository: https://charts.truecharts.org
|
||||
version: 3.0.121
|
||||
version: 4.0.5
|
||||
# - condition: mongodb.enabled
|
||||
# name: mongodb
|
||||
# repository: https://charts.truecharts.org
|
||||
@@ -26,7 +26,7 @@ name: appsmith
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/appsmith
|
||||
- https://github.com/appsmithorg/appsmith
|
||||
version: 3.0.3
|
||||
version: 4.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- productivity
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "The Archive Team Warrior is a virtual archiving appliance. You can run it to help with the Archive Team archiving efforts. It will download sites and upload them to our archive—and it’s really easy to do!"
|
||||
home: https://truecharts.org/docs/charts/incubator/archiveteam-warrior
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://wiki.archiveteam.org/index.php/ArchiveTeam_Warrior
|
||||
- https://hub.docker.com/r/archiveteam/warrior-dockerfile/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install ARK:SurvivalEvolved and run it (Normal server startup of ARK can take a long time!)."
|
||||
home: https://truecharts.org/docs/charts/incubator/arksurvivalevolved
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://survivetheark.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install ArmA III and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/arma3
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://arma3.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install ArmA III including ExileMod and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/arma3exilemod
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- http://www.exilemod.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "7.46.11"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "JFrog’s Artifactory open source project was created to speed up development cycles using binary repositories. It’s the world’s most advanced repository manager, creating a single place for teams to manage all their binary artifacts efficiently."
|
||||
home: https://truecharts.org/docs/charts/incubator/artifactory-oss
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://jfrog.com/
|
||||
- https://registry.hub.docker.com/r/docker.bintray.io/jfrog/artifactory-oss
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install AssettoCorsa and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/assettocorsa
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.assettocorsa.net/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Aurora Files is an open-source file storage platform for small teams and personal users. Afterlogic Aurora Files image for Chart using Nginx, PHP-FPM 8.1, MySQL on Alpine Linux. Loosely based on khromov/alpine-nginx-php8 package."
|
||||
home: https://truecharts.org/docs/charts/incubator/aurora-files
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://github.com/afterlogic/docker-aurora-files
|
||||
- https://hub.docker.com/r/afterlogic/docker-aurora-files
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: auto-yt-dl is used to automatically download new Videos of specific YouTube Channels. It features a Web Gui to add and remove Channels from your watch list.
|
||||
home: https://truecharts.org/docs/charts/incubator/auto-yt-dl
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/xXGuhuXx/auto-yt-dl
|
||||
- https://hub.docker.com/repository/docker/guhu007/auto-yt-dl
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Avorion and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/avorion
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -2,7 +2,7 @@ apiVersion: v2
|
||||
appVersion: "2022"
|
||||
description: Awesome TTRSS aims to provide a powerful Chartized all-in-one solution for Tiny Tiny RSS
|
||||
name: awesome-ttrss
|
||||
version: 1.0.3
|
||||
version: 2.0.0
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- tt-rss
|
||||
@@ -15,11 +15,11 @@ sources:
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
- condition: postgresql.enabled
|
||||
name: postgresql
|
||||
repository: https://charts.truecharts.org/
|
||||
version: 8.0.122
|
||||
version: 9.0.5
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: BackupPC is a high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk.
|
||||
home: https://truecharts.org/docs/charts/incubator/backuppc
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://backuppc.github.io/backuppc/index.html
|
||||
- https://hub.docker.com/r/tiredofit/backuppc/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "0.9.2"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Baikal is a lightweight CalDAV+CardDAV server"
|
||||
home: https://truecharts.org/docs/charts/incubator/baikal
|
||||
@@ -21,7 +21,7 @@ sources:
|
||||
- https://github.com/ckulka/baikal-docker
|
||||
- https://hub.docker.com/r/ckulka/baikal/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/catagories: |
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "<b>Barcode Buddy is a Grocy companion app/plugin, which allows you to install the Barcode Buddy app and scan products directly to your Grocy library.</b>"
|
||||
home: https://truecharts.org/docs/charts/incubator/barcodebuddy
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/Forceu/barcodebuddy
|
||||
- https://hub.docker.com/r/f0rc3/barcodebuddy-docker
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Barotrauma and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/barotrauma
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
description: BatNoter is a web application that allows users to store notes in their git repository.
|
||||
home: https://truecharts.org/docs/charts/incubator/batnoter
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/batnoter.png
|
||||
@@ -18,7 +18,7 @@ name: batnoter
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/batnoter
|
||||
- https://github.com/batnoter/batnoter
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- notes
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "1.0.3"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
description: A link dashboard that can be managed without any code.
|
||||
home: https://truecharts.org/docs/charts/incubator/bender
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/bender.png
|
||||
@@ -19,7 +19,7 @@ name: bender
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/bender
|
||||
- https://github.com/jez500/bender
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- dashboard
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Chart that runs the Bitcoin bitcoind node in a Chart for easy deployment."
|
||||
home: https://truecharts.org/docs/charts/incubator/bitcoin-node
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/kylemanna/docker-bitcoind
|
||||
- https://hub.docker.com/r/kylemanna/bitcoind
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Support the Bitcoin network by hosting your own node! This template provides a full Bitcoin Core node, built in a verifiably trustless way.\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/bitcoind
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://bitcoin.org/
|
||||
- https://hub.docker.com/r/ofawx/bitcoind/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "The Bitcoin Unlimited project seeks to provide a voice to all stakeholders in the Bitcoin ecosystem."
|
||||
home: https://truecharts.org/docs/charts/incubator/bitcoinunlimited
|
||||
@@ -25,4 +25,4 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/bitcoinunlimited
|
||||
- https://hub.docker.com/r/amacneil/bitcoinunlimited/~/dockerfile/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Bitcoin wallet with GUI over VNC and NoVNC.
\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/bitcoinwalletgui
|
||||
@@ -25,4 +25,4 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/bitcoinwalletgui
|
||||
- https://hub.docker.com/r/ulisses1478/bitcoinwallet-gui
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -10,7 +10,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Headless Ubuntu/Xfce Charts with VNC/noVNC for diagramming, image editing and 2D/3D drawing"
|
||||
home: https://truecharts.org/docs/charts/incubator/blender-desktop-g3
|
||||
@@ -32,4 +32,4 @@ sources:
|
||||
- https://github.com/accetto/headless-drawing-g3/
|
||||
- https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-blender-g3
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Blender(https://www.blender.org/) is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. **This image does not support GPU rendering out of the box only accelerated workspace experience**
|
||||
home: https://truecharts.org/docs/charts/incubator/blender
|
||||
@@ -27,4 +27,4 @@ sources:
|
||||
- https://github.com/orgs/linuxserver/packages/container/package/blender
|
||||
- https://github.com/linuxserver/docker-blender#readme
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -5,7 +5,7 @@ env:
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/blender
|
||||
tag: latest@sha256:65d471f5db800b2cd31047239d437f50daeb4b633b2a2a6e17e6a02ad3a8f33f
|
||||
tag: latest@sha256:0cc6f29e45d125b550aaf513b5a5de7625c823d52714720905792a33578323bd
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
|
||||
@@ -11,7 +11,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "A script to enable customers of lazy ISPs to perform measurement campaigns of the connection speed as described here in an automated way."
|
||||
home: https://truecharts.org/docs/charts/incubator/breitbandmessung-de
|
||||
@@ -34,4 +34,4 @@ sources:
|
||||
- https://github.com/shneezin/breitbandmessung-node
|
||||
- https://hub.docker.com/r/shneezin/breitbandmessung-node
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: This is a Docker Chart for BTDEX based on jlesage/Chart-baseimage-gui Chart.
|
||||
home: https://truecharts.org/docs/charts/incubator/btdex
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://btdex.trade/
|
||||
- https://hub.docker.com/r/furritos/docker-btdex:latest
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "bWAPP, or a buggy web application, is a free and open source deliberately insecure web application."
|
||||
home: https://truecharts.org/docs/charts/incubator/bwapp
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://sourceforge.net/projects/bwapp/
|
||||
- https://hub.docker.com/r/raesene/bwapp/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -11,7 +11,7 @@ appVersion: "3.4.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "CadQuery is an intuitive, easy-to-use Python module for building parametric 3D CAD models. Using CadQuery, you can write short, simple scripts that produce high quality CAD models. It is easy to make many different objects using a single script that can be customized."
|
||||
home: https://truecharts.org/docs/charts/incubator/cadquery-jupyter
|
||||
@@ -34,4 +34,4 @@ sources:
|
||||
- https://github.com/bernhard-42/jupyter-cadquery
|
||||
- https://hub.docker.com/r/cadquery/cadquery-server
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -10,7 +10,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "CadQuery is an intuitive, easy-to-use Python module for building parametric 3D CAD models. Using CadQuery, you can write short, simple scripts that produce high quality CAD models. It is easy to make many different objects using a single script that can be customized."
|
||||
home: https://truecharts.org/docs/charts/incubator/cadquery-server
|
||||
@@ -32,4 +32,4 @@ sources:
|
||||
- https://github.com/roipoussiere/cadquery
|
||||
- https://hub.docker.com/r/cadquery/cadquery-server
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "0.0.6"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
description: An open source self-hosted bookmark service
|
||||
home: https://truecharts.org/docs/charts/incubator/cherry
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cherry.png
|
||||
@@ -19,7 +19,7 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/cherry
|
||||
- https://cherry.haishan.me/
|
||||
- https://github.com/haishanh/cherry
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- bookmark
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Chivalry: Medieval Warfare and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/chivalry-medievalwarfare
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Simple recipes in Markdown format.
|
||||
home: https://truecharts.org/docs/charts/incubator/chowdown
|
||||
@@ -25,4 +25,4 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/chowdown
|
||||
- https://hub.docker.com/r/gregyankovoy/chowdown/Dockerfile/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Headless Ubuntu/Xfce Charts with VNC/noVNC for diagramming, image editing and 2D/3D drawing"
|
||||
home: https://truecharts.org/docs/charts/incubator/chromium-desktop-g3
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/accetto/headless-drawing-g3/
|
||||
- https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-chromium-g3
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -4,7 +4,7 @@ env:
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/chromium-desktop-g3
|
||||
tag: latest@sha256:ed59776ae58a60cf14dc42d6eabbfc6590ea1aa6d5c5efc2c71b228ddcdb978f
|
||||
tag: latest@sha256:6f0e5400bdf185bb1f958648e12cd8ed2e3c4a354f6585556160f5bf6fcea8ad
|
||||
persistence:
|
||||
internalshare:
|
||||
enabled: true
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Chromium is a free and open-source software project developed by the Google-sponsored Chromium project.
|
||||
home: https://truecharts.org/docs/charts/incubator/chromium
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://www.google.com/chrome/
|
||||
- https://hub.docker.com/r/ich777/chrome/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -6,7 +6,7 @@ env:
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/chromium
|
||||
tag: latest@sha256:a398761e2b6f731161fe3e3cbefeaafb80c76a308a26189179c4fc6f4e7d28c0
|
||||
tag: latest@sha256:683a8e344476f9036f6a8bfca20d9ba29b7051bdaa0bda83c2a8aa62b143bb3b
|
||||
persistence:
|
||||
datadir:
|
||||
enabled: true
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Chronograf is InfluxData’s open source web application. Use Chronograf with the other components of the TICK stack to visualize your monitoring data and easily create alerting and automation rules."
|
||||
home: https://truecharts.org/docs/charts/incubator/chronograf
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.influxdata.com/time-series-platform/chronograf/
|
||||
- https://hub.docker.com/_/chronograf/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "ciao checks HTTP(S) URL endpoints for a HTTP status code (or errors on the lower TCP stack) and sends a notification on status change via E-Mail or Webhooks."
|
||||
home: https://truecharts.org/docs/charts/incubator/ciao
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://brotandgames.com/ciao/
|
||||
- https://hub.docker.com/r/brotandgames/ciao
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Citadel - Forged with Fire and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/citadel-forgedwithfire
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
apiVersion: v2
|
||||
appVersion: "2.1.3"
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: A simple UI to help find and delete duplicate and sample files from your Plex server.
|
||||
home: https://truecharts.org/docs/charts/incubator/cleanarr
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Cloud Database Manager (Official Chart)"
|
||||
home: https://truecharts.org/docs/charts/incubator/cloudbeaver
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/dbeaver/cloudbeaver
|
||||
- https://hub.docker.com/r/dbeaver/cloudbeaver/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "[b]CloudCommander[/b] is a simple web file browser with a built in text editor and archive compress/extract abilities.[br/]\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/cloudcommander
|
||||
@@ -25,4 +25,4 @@ sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/cloudcommander
|
||||
- https://hub.docker.com/r/coderaiser/cloudcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Self-hosted file management and sharing system, supports multiple storage providers"
|
||||
home: https://truecharts.org/docs/charts/incubator/cloudreve
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/cloudreve/Cloudreve
|
||||
- https://hub.docker.com/r/xavierniu/cloudreve
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Colony Survival and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/colonysurvival
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Conan Exiles and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/conanexiles
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Conreq, a Content Requesting platform.
|
||||
home: https://truecharts.org/docs/charts/incubator/conreq
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://hotio.dev/containers/conreq
|
||||
- https://hub.docker.com/r/hotio/conreq
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "stable"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Convos is the simplest way to use IRC and it is always online
|
||||
home: https://truecharts.org/docs/charts/incubator/convos
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://convos.chat/
|
||||
- https://hub.docker.com/r/convos/convos/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -9,7 +9,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Cops(http://blog.slucas.fr/en/oss/calibre-opds-php-server) by Sébastien Lucas, stands for Calibre OPDS (and HTML) Php Server.\n"
|
||||
home: https://truecharts.org/docs/charts/incubator/cops
|
||||
@@ -31,4 +31,4 @@ sources:
|
||||
- https://github.com/orgs/linuxserver/packages/container/package/cops
|
||||
- https://github.com/linuxserver/docker-cops#readme
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Chart file for the new Core Keeper dedicated server running from SteamCMD. (No account etc needed)"
|
||||
home: https://truecharts.org/docs/charts/incubator/core-keeper-dedicated-server
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/escapingnetwork/core-keeper-dedicated/
|
||||
- https://hub.docker.com/r/escaping/core-keeper-dedicated
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install CoreKeeper and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/corekeeper
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install CounterStrike 2D."
|
||||
home: https://truecharts.org/docs/charts/incubator/counterstrike2d
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/cs2dserver/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,11 +3,11 @@ appVersion: "1.2.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
- condition: postgresql.enabled
|
||||
name: postgresql
|
||||
repository: https://charts.truecharts.org/
|
||||
version: 8.0.122
|
||||
version: 9.0.5
|
||||
description: A home for all your coupons and loyalty cards.
|
||||
home: https://truecharts.org/docs/charts/incubator/coupon-store
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/coupon-store.png
|
||||
@@ -22,7 +22,7 @@ name: coupon-store
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/coupon-store
|
||||
- https://github.com/linuxserver/docker-airsonic
|
||||
version: 1.0.3
|
||||
version: 2.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "cowyo is a self-contained wiki server that makes jotting notes easy and fast. The most important feature here is simplicity. Other features include versioning, page locking, self-destructing messages, encryption, and listifying."
|
||||
home: https://truecharts.org/docs/charts/incubator/cowyo
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/schollz/cowyo
|
||||
- https://hub.docker.com/r/schollz/cowyo
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -7,7 +7,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "This Chart will download and install SteamCMD. It will also install Craftopia and run it."
|
||||
home: https://truecharts.org/docs/charts/incubator/craftopia
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://www.steampowered.com/
|
||||
- https://hub.docker.com/r/ich777/steamcmd/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: "4.0.16"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: Crafty 4 is the next iteration of our Minecraft Server Wrapper / Controller / Launcher.
|
||||
home: https://truecharts.org/docs/charts/incubator/crafty-4
|
||||
@@ -28,4 +28,4 @@ annotations:
|
||||
truecharts.org/catagories: |
|
||||
- GameServers
|
||||
- minecraft
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
@@ -8,7 +8,7 @@ appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.9.4
|
||||
version: 10.9.7
|
||||
deprecated: false
|
||||
description: "Your gateway to the world of crypto"
|
||||
home: https://truecharts.org/docs/charts/incubator/crypto-exchanges-gateway
|
||||
@@ -28,4 +28,4 @@ sources:
|
||||
- https://github.com/aloysius-pgast/crypto-exchanges-gateway
|
||||
- https://hub.docker.com/r/apendergast/crypto-exchanges-gateway/
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user