feat(apps): Add more Apps using postgresql (#1136)

* feat(apps): Add more Apps using postgresql

Squashed commit:

move apps - dev to incubator (+29 squashed commit)

[e306948ef] bump postgresql

[d22c2cc62] bump common

[cc5412370] remove ix_values.yaml

[ca02334e6] Sync last env's and secrets

[34b9d2af1] update gui on ff-syncserver

[8dc32c07c] Add description on persistence

[3ee0e4dac] Update secrets labels

[4192e3af5] Update default-ports

[d88de9fbc] fixedEnv on top...

[61363ea19] tt-rss

[8a124605e] traccar

[6de23ed28] teedy

[402e3916d] statping

[f8da66a8c] shiori

[c58d98c29] recipes

[2390929fc] openkm

[ca4cfcf75] odoo

[34a8e0e96] fixedEnv on top

[ec3c53f7b] miniflux

[b47aab805] librespeed

[f7252eeed] whoops

[d4e312ff6] kanboard

[c9e32f3eb] joplin-server

[4a216a442] wikijs

[8a529ba57] gotify

[1130943a7] ff-sync

[f1b43a783] etherpad

[7365fe5da] dsmr-reader

[ea7a6751e] babybuddy (+1 squashed commits)

* enable varrun on librespeed

* librespeed no readonly root

* run librespeed as root
This commit is contained in:
Kjeld Schouten-Lebbing
2021-10-19 14:20:06 +02:00
committed by GitHub
parent 4778d18340
commit a1c12c64e3
294 changed files with 19331 additions and 13 deletions
+3 -13
View File
@@ -2,7 +2,7 @@
set -eu
# This script will do some basic processing from k8s-at-home to TrueCharts
nodeport=3700
nodeport=36150
for chart in input/*; do
if [ -d "${chart}" ]; then
nodeport=$((nodeport+1))
@@ -24,17 +24,7 @@ for chart in input/*; do
port=$(cat ${chart}/values.yaml | grep -m 1 port: ) && port=${port/ port: /}
sed -i "s|PLACEHOLDERPORT|${port}|g" output/${basename}/SCALE/questions.yaml
sed -i "s|PLACEHOLDERNODEPORT|${nodeport}|g" output/${basename}/SCALE/questions.yaml
sed -i "/^version:/c\version: 1.0.0" output/${basename}/Chart.yaml
sed -i "/^appVersion:/c\appVersion: 'auto'" output/${basename}/Chart.yaml
sed -i "s|library-charts.k8s-at-home.com|truecharts.org|g" output/${basename}/Chart.yaml
sed -i "/name: commonc\- name2: common" output/${basename}/Chart.yaml
sed -i "/- name:/c\- name: truecharts" output/${basename}/Chart.yaml
sed -i "/name2: commonc\- name: common" output/${basename}/Chart.yaml
sed -i "/email:/c\ email: info@truecharts.org
url: https://truecharts.org" output/${basename}/Chart.yaml
sed -i "/ version:/c\ version: 6.4.6" output/${basename}/Chart.yaml
sed -i "s|github.com/k8s-at-home/charts|github.com/truechartsapps|g" output/${basename}/Chart.yaml
sed -i "s|charts/stable|charts/incubator|g" output/${basename}/Chart.yaml
sed -i "s|http:|main:|g" output/${basename}/values.yaml
fi
done