Commit Graph

17905 Commits

Author SHA1 Message Date
Jon S. Stumpf 6895cfde2a
chore(categories): Fix typo in categories and make them singular (#13693)
**Description**
While researching how to create a chart for [graylog
open](https://graylog.org/products/source-available/), I noticed that
there was a typo in the annotation: **truecharts.org/categories**. I
fixed all instances of this typo in the repo. In addition, I addressed
all other instances of the word category and categories (case
insensitive) for all code (shell scripts), comments, markdowns, and
filenames.

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
I have tested that the syntax is correct in the following files:
- .github/scripts/build-catalog.sh
- tools/gen-cat.sh
- tools/build-release.sh

**📃 Notes:**
n/a

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [ ] #️ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made corresponding changes to the documentation
- [x] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-10-28 15:07:52 +03:00
TrueCharts Bot 4a0ad75345
chore(deps): update container image tccr.io/truecharts/ispy-agent-dvr to v5.0.8.0 (#14050) 2023-10-28 13:38:32 +02:00
sdimovv 9173c46335
feat(kubernetes-reflector): Add kubernetes-reflector (#13756)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->

Although Kubernetes-reflector can be used to mirror both generic
Configmaps and Secrets across k8s namespaces, with this PR I
specifically intend to lay the groundwork for supporting wildcard
certificates in Truecharts.

To keep things small this PR only adds the app needed to support secrets
mirroring across namespaces. The rest of the functionality will be added
through separate PRs.

A high-level overview of how I picture this to work:
- A user will gain the ability to create "cluster-wide" certificates in
the `clusterIssuer` app config. This will generate the certificates and
store them in the app's namespace
- The created/updated certificates will be mirrored automatically to all
namespaces matching the regex `ix-.+` (or configurable for helm users)
with the help of the `kubernetes-reflector` app
- The user will gain the ability to use a "cluster-wide" certificate
when setting up an ingress for an app. Similar to how they can currently
use a custom secret for an ingress cert.

To achieve this in next PRs  I will be:
- Submitting small patches to the common lib. So far I think the only
change needed is to allow setting annotations to `Certificate` CRDs,
which is needed to allow `kubernetes-reflector` to replicate them (see
[cert-manager
docs](https://cert-manager.io/docs/devops-tips/syncing-secrets-across-namespaces/#using-reflector))
- Submitting small patches to the clusterIssuer app and the
`Ingress{*}.yaml` files

Relevant issue: #8634

I have not yet added the image to the TC repo. Will do that after the
review process, before merging.
  
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->
I have tested this by deploying the `kubernetes-reflector` app and then
applying the following yaml:
```yaml

apiVersion: v1
kind: Namespace
metadata:
  name: origin
---
apiVersion: v1
kind: Namespace
metadata:
  name: destination1
---
apiVersion: v1
kind: Namespace
metadata:
  name: destination2
---
apiVersion: v1
kind: Namespace
metadata:
  name: another-destination1
---
apiVersion: v1
kind: Namespace
metadata:
  name: another-destination2
---
apiVersion: v1
kind: Secret
metadata:
  annotations:
    # Allow reflection from source namespaces
    reflector.v1.k8s.emberstack.com/reflection-allowed: "true"
    # Namespaces from/to which reflection is allowed
    reflector.v1.k8s.emberstack.com/reflection-allowed-namespaces: "origin,(another-)?destination\\d+"
    # Auto reflect secrets/configmaps to destination namespaces
    reflector.v1.k8s.emberstack.com/reflection-auto-enabled: "true"
    # Destination namespaces
    reflector.v1.k8s.emberstack.com/reflection-auto-namespaces: "(another-)?destination\\d+"
  name: my-secret
  namespace: origin
type: Opaque
data:
  mydata: c2VjcmV0Cg==
  # mydata: c3VwZXJzdXBlcnNlY3JldAo=
```
Exact commands and output:
```bash
$ kubectl create ns ix-kubernetes-reflector
$ helm install -n ix-kubernetes-reflector kubernetes-reflector .
$ kubectl get secrets --all-namespaces
NAMESPACE                 NAME                                         TYPE                 DATA   AGE
kube-system               pop-os.node-password.k3s                     Opaque               1      144d
kube-system               k3s-serving                                  kubernetes.io/tls    2      144d
ix-kubernetes-reflector   sh.helm.release.v1.kubernetes-reflector.v1   helm.sh/release.v1   1      8s
$ kubectl apply -f test-reflect.yaml 
namespace/origin created
namespace/destination1 created
namespace/destination2 created
namespace/another-destination1 created
namespace/another-destination2 created
secret/my-secret created
$ kubectl get secrets --all-namespaces
NAMESPACE                 NAME                                         TYPE                 DATA   AGE
kube-system               pop-os.node-password.k3s                     Opaque               1      144d
kube-system               k3s-serving                                  kubernetes.io/tls    2      144d
ix-kubernetes-reflector   sh.helm.release.v1.kubernetes-reflector.v1   helm.sh/release.v1   1      29s
origin                    my-secret                                    Opaque               1      5s
destination1              my-secret                                    Opaque               1      5s
destination2              my-secret                                    Opaque               1      5s
another-destination1      my-secret                                    Opaque               1      5s
another-destination2      my-secret                                    Opaque               1      5s
$ kubectl describe secret -n destination1 my-secret | tail -1
mydata:  7 bytes
$ # Change the secret value (uncomment the other key and comment the first one)
$ kubectl apply -f test-reflect.yaml 
$ kubectl describe secret -n destination1 my-secret | tail -1
mydata:  17 bytes
$ kubectl delete secret -n origin my-secret
secret "my-secret" deleted
$ kubectl get secrets --all-namespaces
NAMESPACE                 NAME                                         TYPE                 DATA   AGE
kube-system               pop-os.node-password.k3s                     Opaque               1      144d
kube-system               k3s-serving                                  kubernetes.io/tls    2      144d
ix-kubernetes-reflector   sh.helm.release.v1.kubernetes-reflector.v1   helm.sh/release.v1   1      3m24s
```

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 I have performed a self-review of my own code
- [X] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [X] ⚠️ My changes generate no new warnings
- [X] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [X] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [X] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: sdimovv <36302090+sdimovv@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-10-28 12:28:41 +02:00
TrueCharts Bot 6f184b87fd
chore(deps): update container image tccr.io/truecharts/gamevault-backend to v9.0.3 (#14048) 2023-10-28 10:41:20 +02:00
TrueCharts Bot dce33c8dbe
chore(deps): update container image tccr.io/truecharts/mysql-workbench to v8.0.34 (#14046) 2023-10-28 09:41:11 +02:00
TrueCharts Bot 1c22e2b3e9
chore(deps): update container image tccr.io/truecharts/openvscode-server to v1.83.0 (#14047) 2023-10-28 09:40:56 +02:00
TrueCharts Bot ffcb35d342
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14044) 2023-10-28 08:40:56 +02:00
TrueCharts Bot 280d69a87d
chore(deps): update container image tccr.io/truecharts/xenorchestra to v5.125.0 (#14045) 2023-10-28 08:40:48 +02:00
TrueCharts Bot 6f472911e1
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14042) 2023-10-28 04:45:24 +02:00
TrueCharts Bot a7e9031fc8
chore(deps): update container image tccr.io/truecharts/wyoming-piper to v1.4.0 (#14043) 2023-10-28 04:43:26 +02:00
TrueCharts Bot 178ed23fa7
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1085 (#14040) 2023-10-28 03:56:27 +02:00
TrueCharts Bot c97ffa490c
chore(deps): update container image tccr.io/truecharts/mattermost to v9.2.0 (#14037) 2023-10-28 02:57:12 +02:00
TrueCharts Bot 8d50ee924d
chore(deps): update container image tccr.io/truecharts/flexget to v3.9.16 (#14038) 2023-10-28 02:56:19 +02:00
TrueCharts Bot 8dbae3a057
chore(deps): update container image tccr.io/truecharts/linkding to v1.22.2 (#14035) 2023-10-28 00:41:53 +02:00
TrueCharts Bot 389f0aa303
chore(deps): update container image tccr.io/truecharts/autobrr to v1.32.0 (#14036) 2023-10-28 00:40:52 +02:00
Stavros Kois 2a37d142f5
fix(outline): fetch from the correct secret 2023-10-28 01:18:30 +03:00
TrueCharts Bot 8e87719dac
chore(deps): update container image tccr.io/truecharts/qbitmanage to v4.0.6 (#14034) 2023-10-27 23:39:14 +02:00
TrueCharts Bot 22080bb62a
chore(deps): update webtop (#14033) 2023-10-27 23:34:53 +02:00
TrueCharts Bot 4c91e1758a
chore(deps): update rdesktop (#14032) 2023-10-27 22:37:14 +02:00
TrueCharts Bot 7b2efa0fa7
chore(deps): update container image tccr.io/truecharts/heimdall to v2.5.7 (#14031) 2023-10-27 22:36:08 +02:00
TrueCharts Bot fae3e09ad5
chore(deps): update container image tccr.io/truecharts/beets to v1.6.0 (#14029) 2023-10-27 21:36:59 +02:00
TrueCharts Bot 41815e6847
chore(deps): update container image tccr.io/truecharts/embystat to v0.2.0 (#13964) 2023-10-27 21:17:32 +02:00
Stavros Kois ac34fd5bd2
fix(clusterissuer): fix malformed yaml output (#14028)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  #13421

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-10-27 22:02:34 +03:00
Stavros Kois aeaeb22e5d
fix(traefik): fix buffering middlewrae (#14027)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  #13686

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-10-27 21:56:39 +03:00
TrueCharts Bot ed6522d6e7
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.1.2 (#14026) 2023-10-27 20:45:19 +02:00
TrueCharts Bot bdf8c56c98
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14025) 2023-10-27 20:40:52 +02:00
StevenMcElligott 66699afcd1
fix(watchyourlan): Fix networking + capabilities (#13979)
**Description**

Adds NET_RAW to enable ARP scanning and enables host-networking by
default since it needs to bind to the interface to scan, otherwise this
chart won't work like ever

⚒️ Fixes  #13972

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [X] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-10-27 21:37:35 +03:00
sdimovv 24d91509d6
feat(traefik): Add traefik-plugin-rewrite-headers (#13961)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

Adding a simple plugin that allows for editing/rewriting response
headers. It can be used to rewrite any response header. In the chart
values, I have given a (perhaps not very exciting) example with the
`Location` header.

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

Tested with native helm - deployed Traefik, added an ingress in front of
a simple custom-app that returns an HTTP301 on every request. With this
plugin, I was able to rewrite the Location (or any other) header in the
returned response.

**📃 Notes:**
<!-- Please enter any other relevant information here -->
Plugin:
https://plugins.traefik.io/plugins/628c9eb5108ecc83915d7758/rewrite-header
Corresponding container changes PR:
https://github.com/truecharts/containers/pull/33731

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 I have performed a self-review of my own code
- [X] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [X] ⚠️ My changes generate no new warnings
- [X] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [X] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [X] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: sdimovv <36302090+sdimovv@users.noreply.github.com>
2023-10-27 21:15:37 +03:00
TrueCharts Bot 6c79d7f557
chore(deps): update rdesktop (#14024) 2023-10-27 19:36:42 +02:00
TrueCharts Bot 7b2d5f304d
chore(deps): update container image tccr.io/truecharts/node-red to v3.1.0 (#14023) 2023-10-27 17:41:45 +02:00
TrueCharts Bot b34cf20d6c
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14022) 2023-10-27 15:38:56 +02:00
TrueCharts Bot 24198e7edc
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#14021) 2023-10-27 13:37:43 +02:00
TrueCharts Bot 420aa23839
chore(deps): update container image tccr.io/truecharts/ddns-go to v5.6.4 (#14020) 2023-10-27 12:40:35 +02:00
TrueCharts Bot 3ea65da13e
chore(deps): update container image tccr.io/truecharts/searxng to latest (#14019) 2023-10-27 11:37:36 +02:00
TrueCharts Bot 9433ab7479
chore(deps): update container image tccr.io/truecharts/searxng to latest (#14018) 2023-10-27 10:41:43 +02:00
TrueCharts Bot 3c85d660ed
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14017) 2023-10-27 09:42:30 +02:00
TrueCharts Bot 59d292631e
chore(deps): update container image tccr.io/truecharts/mylar3 to v0.7.5 (#14015) 2023-10-27 07:39:09 +02:00
TrueCharts Bot 3d5abc44f4
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#14014) 2023-10-27 06:40:49 +02:00
TrueCharts Bot 2bea6422b8
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1084 (#14013) 2023-10-27 03:58:59 +02:00
TrueCharts Bot 49dc88ba26
chore(deps): update container image tccr.io/truecharts/prusaslicer-novnc to latest (#14012) 2023-10-27 03:58:25 +02:00
TrueCharts Bot 64bb2ecad3
chore(deps): update container image tccr.io/truecharts/ghostfolio to v2.15.0 (#14010) 2023-10-27 02:54:33 +02:00
TrueCharts Bot c8d08398b4
chore(deps): update container image tccr.io/truecharts/zwavejs-ui to v9.3.0 (#14011) 2023-10-27 02:53:12 +02:00
TrueCharts Bot 803de68aa2
chore(deps): update authentik to v2023.10.1 (minor) (#14009) 2023-10-27 01:43:50 +02:00
TrueCharts Bot 0c55d18c34
chore(deps): update container image tccr.io/truecharts/tautulli to v2.13.2 (#14008) 2023-10-27 01:38:59 +02:00
TrueCharts Bot f51ac6bc86
chore(deps): update container image tccr.io/truecharts/synclounge to v5.2.22 (#14007) 2023-10-27 00:40:37 +02:00
TrueCharts Bot 37ccd73369
chore(deps): update container image tccr.io/truecharts/netdata to v1.43.1 (#14006) 2023-10-27 00:39:05 +02:00
TrueCharts Bot 4ad2a3bf29
chore(deps): update container image tccr.io/truecharts/n8n to v1.14.2 (#14005) 2023-10-26 23:42:42 +02:00
TrueCharts Bot a3b8ed47a4
chore(deps): update container image tccr.io/truecharts/metabase to v0.47.6 (#14001) 2023-10-26 22:40:08 +02:00
TrueCharts Bot 9e7bf07de4
chore(deps): update container image tccr.io/truecharts/komga to v1.6.4 (#14000) 2023-10-26 22:39:28 +02:00
TrueCharts Bot 611e4a99ef
chore(deps): update container image tccr.io/truecharts/gamevault-backend to v9.0.2 (#13999) 2023-10-26 21:41:02 +02:00
TrueCharts Bot 6c81f8f449
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13998) 2023-10-26 21:40:22 +02:00
TrueCharts Bot 5389db42dd
chore(deps): update container image tccr.io/truecharts/wordpress to v6.3.2 (#13997) 2023-10-26 20:43:42 +02:00
TrueCharts Bot c552800a1c
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13996) 2023-10-26 20:43:30 +02:00
TrueCharts Bot feeb24b0f7
chore(deps): update container image tccr.io/truecharts/baserow to v1.21.2 (#13995) 2023-10-26 19:39:55 +02:00
TrueCharts Bot 29ec8ca2a5
chore(deps): update container image tccr.io/truecharts/medusa to v1.0.17 (#13994) 2023-10-26 18:42:59 +02:00
TrueCharts Bot 62f4bcda55
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13993) 2023-10-26 16:42:57 +02:00
TrueCharts Bot 9b07779a62
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13992) 2023-10-26 12:38:18 +02:00
TrueCharts Bot 4c65109a77
chore(deps): update container image tccr.io/truecharts/emulatorjs to v1.7.2 (#13990) 2023-10-26 11:40:50 +02:00
TrueCharts Bot 6df0453951
chore(deps): update container image tccr.io/truecharts/webgrabplus to v5.1.3 (#13991) 2023-10-26 11:39:02 +02:00
TrueCharts Bot ed97d4f62b
chore(deps): update container image tccr.io/truecharts/omada-controller to v5.12.0 (#13989) 2023-10-26 10:42:09 +02:00
TrueCharts Bot c6dc316ae6
chore(deps): update container image tccr.io/truecharts/snapdrop to latest (#13988) 2023-10-26 09:41:32 +02:00
TrueCharts Bot eeb184bd6c
chore(deps): update container image tccr.io/truecharts/sickchill to v2023.6.27 (#13987) 2023-10-26 09:40:41 +02:00
TrueCharts Bot 75eb94dc6e
chore(deps): update container image tccr.io/truecharts/gamevault-backend to v9.0.0 (#13985) 2023-10-26 07:43:10 +02:00
TrueCharts Bot c1b2e54650
chore(deps): update container image tccr.io/truecharts/n8n to v1.14.0 (#13984) 2023-10-26 07:41:30 +02:00
TrueCharts Bot e7ecf4bd5f
chore(deps): update container image tccr.io/truecharts/jenkins to v2.429.0 (#13983) 2023-10-26 06:40:11 +02:00
TrueCharts Bot 3df553a0ba
chore(deps): update container image tccr.io/truecharts/baserow to v1.21.1 (#13981) 2023-10-26 05:42:42 +02:00
TrueCharts Bot e7db85cd1e
chore(deps): update container image tccr.io/truecharts/nginx to v1.25.3 (#13978) 2023-10-26 04:46:30 +02:00
TrueCharts Bot 5012445345
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13977) 2023-10-26 04:46:28 +02:00
TrueCharts Bot 1070bf9b9b
chore(deps): update container image tccr.io/truecharts/ddclient to v3.11.1 (#13975) 2023-10-26 04:00:35 +02:00
TrueCharts Bot 4cbfb5a7c9
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1078 (#13976) 2023-10-26 03:59:25 +02:00
TrueCharts Bot fc49ea6262
chore(deps): update container image tccr.io/truecharts/wordpress to v6.3.2 (#13974) 2023-10-26 02:57:22 +02:00
TrueCharts Bot 92c85f2a83
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13973) 2023-10-26 02:56:56 +02:00
TrueCharts Bot 30708c4669
chore(deps): update container image tccr.io/truecharts/invidious to latest (#13970) 2023-10-26 01:41:24 +02:00
TrueCharts Bot ca960de6cb
chore(deps): update container image tccr.io/truecharts/n8n to v1.12.2 (#13971) 2023-10-26 01:41:16 +02:00
TrueCharts Bot 27374ebf1f
chore(deps): update container image tccr.io/truecharts/littlelink-server to latest (#13968) 2023-10-26 00:39:40 +02:00
TrueCharts Bot 17db4be19d
chore(deps): update container image tccr.io/truecharts/traefik to v2.10.5 (#13969) 2023-10-26 00:38:04 +02:00
TrueCharts Bot 500b48a966
chore(deps): update container image tccr.io/truecharts/doublecommander to latest (#13966) 2023-10-25 23:37:42 +02:00
TrueCharts Bot d466c46c31
chore(deps): update container image tccr.io/truecharts/drawio to v22.0.8 (#13967) 2023-10-25 23:36:52 +02:00
TrueCharts Bot 5042badced
chore(deps): update container image tccr.io/truecharts/littlelink-server to latest (#13965) 2023-10-25 22:40:56 +02:00
TrueCharts Bot df04ccddf7
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13963) 2023-10-25 21:41:11 +02:00
TrueCharts Bot 7ed7ee17f7
chore(deps): update container image tccr.io/truecharts/minio to latest (#13962) 2023-10-25 21:39:49 +02:00
TrueCharts Bot bfd5ea41af
chore(deps): update container image tccr.io/truecharts/gamevault-backend to v8.0.3 (#13959) 2023-10-25 20:44:45 +02:00
TrueCharts Bot 324e421848
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13960) 2023-10-25 20:43:32 +02:00
TrueCharts Bot 82d9c0ab58
chore(deps): update container image tccr.io/truecharts/booksonic-air to v2201.1.0 (#13957) 2023-10-25 17:41:57 +02:00
TrueCharts Bot 9922d73f7b
chore(deps): update container image tccr.io/truecharts/wordpress to v6.3.2 (#13958) 2023-10-25 17:41:45 +02:00
TrueCharts Bot a05bc00d1c
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13955) 2023-10-25 16:44:46 +02:00
TrueCharts Bot 30579fe629
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13953) 2023-10-25 14:44:20 +02:00
TrueCharts Bot d9a9ec51c7
chore(deps): update container image tccr.io/truecharts/mattermost to v9.2.0 (#13954) 2023-10-25 14:44:05 +02:00
TrueCharts Bot 2db02aafdc
chore(deps): update container image tccr.io/truecharts/mstream to v5.11.4 (#13952) 2023-10-25 09:43:29 +02:00
TrueCharts Bot 447ce6169c
chore(deps): update container image tccr.io/truecharts/calibre to v6.29.0 (#13951) 2023-10-25 09:42:19 +02:00
TrueCharts Bot 019bda6f03
chore(deps): update container image tccr.io/truecharts/littlelink-server to latest (#13950) 2023-10-25 07:42:19 +02:00
TrueCharts Bot a4b96374c4
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1077 (#13949) 2023-10-25 03:59:23 +02:00
TrueCharts Bot 0a6330de8b
chore(deps): update container image tccr.io/truecharts/duckdns to latest (#13948) 2023-10-25 02:53:52 +02:00
TrueCharts-Bot a72a9096c9 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-10-25 00:23:07 +00:00
TrueCharts Bot a40ee7811e
chore(deps): update container image tccr.io/truecharts/esphome to v2023.10.3 (#13946) 2023-10-24 22:40:45 +02:00
StevenMcElligott 300e202f27
fix(website-shot): Set correct runAsUser (#13710)
**Description**

As discord and verified by @ZasX it seems to need root privs to run

⚒️ Fixes  #13759

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [X] 🪛 Bugfix
- [X] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-10-24 23:34:14 +03:00
TrueCharts Bot 36c9c40418
chore(deps): update container image tccr.io/truecharts/thanos to v0.32.5 (#13785)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/truecharts/thanos](https://togithub.com/truecharts/containers)
| patch | `v0.32.4` -> `v0.32.5` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNy4xIiwidXBkYXRlZEluVmVyIjoiMzcuMjcuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

---------

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-10-24 23:29:36 +03:00
TrueCharts Bot 009fdd5c81
chore(deps): update metallb to v0.13.12 (patch) (#13869)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/truecharts/metallb-controller](https://togithub.com/truecharts/containers)
| patch | `v0.13.11` -> `v0.13.12` |
|
[tccr.io/truecharts/metallb-speaker](https://togithub.com/truecharts/containers)
| patch | `v0.13.11` -> `v0.13.12` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS4xIiwidXBkYXRlZEluVmVyIjoiMzcuMzEuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

---------

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-10-24 23:23:38 +03:00
TrueCharts Bot 8767fd2438
chore(deps): update container image tccr.io/truecharts/clamav to v1.2.0 (#13667)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/truecharts/clamav](https://togithub.com/truecharts/containers)
| digest | `7f9ca04` -> `fd820db` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMC4yIiwidXBkYXRlZEluVmVyIjoiMzcuMjAuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

---------

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-10-24 23:22:32 +03:00
TrueCharts Bot 8f9a2c6dc8
chore(deps): update helm general non-major (#13931)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [clickhouse](https://truecharts.org/charts/dependency/clickhouse)
([source](https://togithub.com/truecharts/charts)) | patch | `7.0.9` ->
`7.0.13` |
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`14.0.9` -> `14.0.14` |
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`14.0.12` -> `14.0.14` |
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`14.0.10` -> `14.0.14` |
|
[kube-state-metrics](https://truecharts.org/charts/dependency/kube-state-metrics)
([source](https://togithub.com/truecharts/charts)) | patch | `3.0.23` ->
`3.0.28` |
| [mariadb](https://truecharts.org/charts/dependency/mariadb)
([source](https://togithub.com/truecharts/charts)) | patch | `9.0.27` ->
`9.0.31` |
| [mariadb](https://truecharts.org/charts/dependency/mariadb)
([source](https://togithub.com/truecharts/charts)) | patch | `9.0.26` ->
`9.0.31` |
|
[node-exporter](https://truecharts.org/charts/dependency/node-exporter)
([source](https://togithub.com/truecharts/charts)) | patch | `3.0.25` ->
`3.0.30` |
| [redis](https://truecharts.org/charts/dependency/redis)
([source](https://togithub.com/truecharts/charts)) | patch | `8.0.29` ->
`8.0.34` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>truecharts/charts (clickhouse)</summary>

###
[`v7.0.13`](https://togithub.com/truecharts/charts/releases/tag/clickhouse-7.0.13)

[Compare
Source](https://togithub.com/truecharts/charts/compare/clickhouse-7.0.12...clickhouse-7.0.13)

ClickHouse is a column-oriented database management system (DBMS) for
online analytical processing of queries (OLAP).

###
[`v7.0.12`](https://togithub.com/truecharts/charts/releases/tag/clickhouse-7.0.12)

[Compare
Source](https://togithub.com/truecharts/charts/compare/clickhouse-7.0.11...clickhouse-7.0.12)

ClickHouse is a column-oriented database management system (DBMS) for
online analytical processing of queries (OLAP).

###
[`v7.0.11`](https://togithub.com/truecharts/charts/releases/tag/clickhouse-7.0.11)

[Compare
Source](https://togithub.com/truecharts/charts/compare/clickhouse-7.0.10...clickhouse-7.0.11)

ClickHouse is a column-oriented database management system (DBMS) for
online analytical processing of queries (OLAP).

###
[`v7.0.10`](https://togithub.com/truecharts/charts/releases/tag/clickhouse-7.0.10)

[Compare
Source](https://togithub.com/truecharts/charts/compare/clickhouse-7.0.9...clickhouse-7.0.10)

ClickHouse is a column-oriented database management system (DBMS) for
online analytical processing of queries (OLAP).

</details>

<details>
<summary>truecharts/library-charts (common)</summary>

###
[`v14.0.14`](https://togithub.com/truecharts/library-charts/releases/tag/common-14.0.14)

[Compare
Source](https://togithub.com/truecharts/library-charts/compare/common-14.0.13...common-14.0.14)

Function library for TrueCharts

###
[`v14.0.13`](https://togithub.com/truecharts/library-charts/releases/tag/common-14.0.13)

[Compare
Source](https://togithub.com/truecharts/library-charts/compare/common-14.0.12...common-14.0.13)

Function library for TrueCharts

###
[`v14.0.12`](https://togithub.com/truecharts/library-charts/releases/tag/common-14.0.12)

[Compare
Source](https://togithub.com/truecharts/library-charts/compare/common-14.0.11...common-14.0.12)

Function library for TrueCharts

###
[`v14.0.11`](https://togithub.com/truecharts/library-charts/releases/tag/common-14.0.11)

[Compare
Source](https://togithub.com/truecharts/library-charts/compare/common-14.0.10...common-14.0.11)

Function library for TrueCharts

###
[`v14.0.10`](https://togithub.com/truecharts/library-charts/releases/tag/common-14.0.10)

[Compare
Source](https://togithub.com/truecharts/library-charts/compare/common-14.0.9...common-14.0.10)

Function library for TrueCharts

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on tuesday" in timezone
Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS40IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
2023-10-24 23:13:28 +03:00
TrueCharts Bot aac1bc166f
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13943) 2023-10-24 21:39:46 +02:00
TrueCharts Bot 19215b04ba
chore(deps): update container image tccr.io/truecharts/webtop-ubuntu-mate to latest (#13944) 2023-10-24 21:35:44 +02:00
TrueCharts Bot 8d3dda024d
chore(deps): update container image tccr.io/truecharts/minio to latest (#13942) 2023-10-24 20:39:14 +02:00
TrueCharts Bot 6608fb3339
chore(deps): update container image tccr.io/truecharts/arksurvivalevolved to latest (#13941) 2023-10-24 20:35:05 +02:00
TrueCharts Bot a3f9122843
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13939) 2023-10-24 17:44:06 +02:00
TrueCharts Bot 5f7e932741
chore(deps): update container image tccr.io/truecharts/synclounge to v5.2.19 (#13940) 2023-10-24 17:42:58 +02:00
TrueCharts Bot 41310f5ae5
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13938) 2023-10-24 15:45:38 +02:00
TrueCharts Bot 628cbffd9f
chore(deps): update container image tccr.io/truecharts/lancache-prefill to latest (#13937) 2023-10-24 15:44:44 +02:00
TrueCharts Bot e75a472beb
chore(deps): update container image tccr.io/truecharts/boinc to latest (#13935) 2023-10-24 14:43:46 +02:00
TrueCharts Bot c749bc3453
chore(deps): update webtop (#13936) 2023-10-24 14:39:03 +02:00
TrueCharts Bot 600514e7a6
chore(deps): update webtop (#13933) 2023-10-24 09:38:20 +02:00
TrueCharts Bot 0148e12415
chore(deps): update webtop (#13932) 2023-10-24 08:36:02 +02:00
TrueCharts Bot 4098657f74
chore(deps): update webtop (#13930) 2023-10-24 07:36:58 +02:00
TrueCharts Bot ffea3d9d78
chore(deps): update container image tccr.io/truecharts/foldingathome to v7.6.21 (#13928) 2023-10-24 06:42:39 +02:00
TrueCharts Bot 76cd5103ff
chore(deps): update container image tccr.io/truecharts/webtop-alpine-i3 to latest (#13929) 2023-10-24 06:40:11 +02:00
TrueCharts Bot 8d79ed040d
chore(deps): update helm general non-major (#13925) 2023-10-24 05:59:15 +02:00
TrueCharts Bot 917d4a5769
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13927) 2023-10-24 05:41:11 +02:00
TrueCharts Bot 01492bd6a9
chore(deps): update container image tccr.io/truecharts/freshrss to v1.22.0 (#13926) 2023-10-24 04:51:46 +02:00
TrueCharts Bot 628d18f41c
chore(deps): update helm general non-major (#13920) 2023-10-24 04:08:54 +02:00
TrueCharts Bot 5efe18f659
chore(deps): update container image tccr.io/truecharts/synclounge to v5.2.19 (#13924) 2023-10-24 04:00:40 +02:00
TrueCharts Bot 4d7c84a307
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1076 (#13923) 2023-10-24 04:00:00 +02:00
TrueCharts Bot 3c21ef7db1
chore(deps): update container image tccr.io/truecharts/esphome to v2023.10.2 (#13922) 2023-10-24 02:55:38 +02:00
TrueCharts Bot 10a61ac024
chore(deps): update container image tccr.io/truecharts/wordpress to v6.3.2 (#13921) 2023-10-24 02:54:31 +02:00
TrueCharts Bot 65f5b74632
chore(deps): update container image tccr.io/truecharts/projectsend to vlatest (#13919) 2023-10-24 00:38:38 +02:00
TrueCharts Bot 3d686132e5
chore(deps): update container image tccr.io/truecharts/mattermost to v9.2.0 (#13917) 2023-10-23 22:46:49 +02:00
TrueCharts Bot 9542f6205e
chore(deps): update container image tccr.io/truecharts/heimdall to v2.5.7 (#13918) 2023-10-23 22:37:52 +02:00
TrueCharts Bot cb892354d1
chore(deps): update container image tccr.io/truecharts/frigate-tensorrt to v0.12.1 (#13915) 2023-10-23 21:44:31 +02:00
TrueCharts Bot 7ea82887d1
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13916) 2023-10-23 21:40:55 +02:00
TrueCharts Bot 0f67c1b8f0
chore(deps): update container image tccr.io/truecharts/n8n to v1.12.1 (#13914) 2023-10-23 20:40:27 +02:00
TrueCharts Bot 0e6caff31d
chore(deps): update container image tccr.io/truecharts/mattermost to v9.2.0 (#13913) 2023-10-23 19:40:22 +02:00
TrueCharts Bot 29c40e1365
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13909) 2023-10-23 15:39:08 +02:00
TrueCharts Bot b751337320
chore(deps): update container image tccr.io/truecharts/qbitrr to v3.7.12 (#13910) 2023-10-23 15:38:28 +02:00
TrueCharts Bot 7d9b774949
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13908) 2023-10-23 14:41:22 +02:00
TrueCharts Bot 3798a99604
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13907) 2023-10-23 14:40:31 +02:00
TrueCharts Bot 249e1ef66a
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.2 (#13678) 2023-10-23 13:46:03 +02:00
TrueCharts Bot afef8e9d5a
chore(deps): update container image tccr.io/truecharts/embystat to v0.2.0 (#13906) 2023-10-23 08:40:41 +02:00
TrueCharts Bot 4540d848dc
chore(deps): update container image tccr.io/truecharts/rdesktop-ubuntu-xfce to latest (#13905) 2023-10-23 07:36:30 +02:00
TrueCharts Bot c4e2974c50
chore(deps): update rdesktop (#13904) 2023-10-23 05:35:06 +02:00
TrueCharts Bot 521cc989da
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1073 (#13903) 2023-10-23 04:49:00 +02:00
TrueCharts Bot e5b1ff42b9
chore(deps): update rdesktop (#13902) 2023-10-23 04:46:05 +02:00
TrueCharts Bot aa0e70bc66
chore(deps): update container image tccr.io/truecharts/kube-state-metrics to v2.10.0 (#13900) 2023-10-23 03:59:27 +02:00
TrueCharts Bot 89f154c85a
chore(deps): update container image tccr.io/truecharts/rdesktop-ubuntu-i3 to latest (#13901) 2023-10-23 03:56:52 +02:00
TrueCharts Bot 520ffd412d
chore(deps): update container image tccr.io/truecharts/qbittorrent to v4.6.0 (#13899) 2023-10-23 02:54:12 +02:00
TrueCharts Bot 12acbea0e1
chore(deps): update rdesktop (#13898) 2023-10-23 02:51:11 +02:00
TrueCharts Bot 543164c366
chore(deps): update container image tccr.io/truecharts/cops to latest (#13897) 2023-10-23 01:39:09 +02:00
TrueCharts Bot 0f6bbfdf2f
chore(deps): update container image tccr.io/truecharts/babybuddy to v2.1.2 (#13896) 2023-10-23 00:41:01 +02:00
TrueCharts Bot 9a79334f0c
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13895) 2023-10-22 23:43:40 +02:00
TrueCharts Bot deb500c978
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13894) 2023-10-22 22:36:45 +02:00
TrueCharts Bot f095f37681
chore(deps): update container image tccr.io/truecharts/lazylibrarian to latest (#13893) 2023-10-22 21:36:05 +02:00
TrueCharts Bot 269b871299
chore(deps): update container image tccr.io/truecharts/tdarr_node to v2.14.01 (#13892) 2023-10-22 20:36:41 +02:00
TrueCharts Bot 617e964ffe
chore(deps): update container image tccr.io/truecharts/local-ai-cublas-cuda12-ffmpeg to v1.30.0-cublas-cuda12 (#13891) 2023-10-22 20:32:03 +02:00
TrueCharts Bot 995b67da01
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.10.5 (#13890) 2023-10-22 18:38:36 +02:00
TrueCharts Bot 2d29561130
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13889) 2023-10-22 18:36:49 +02:00
TrueCharts Bot 8b166bcc1c
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13886) 2023-10-22 16:36:13 +02:00
TrueCharts Bot 387d6fc438
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13884) 2023-10-22 15:38:19 +02:00
TrueCharts Bot 1ebce7a00d
chore(deps): update container image tccr.io/truecharts/prowlarr to v1.10.0.4047 (#13883) 2023-10-22 12:35:41 +02:00
TrueCharts Bot a078e5c9c5
chore(deps): update container image tccr.io/truecharts/searxng to latest (#13882) 2023-10-22 12:34:50 +02:00
TrueCharts Bot 877cc02237
chore(deps): update container image tccr.io/truecharts/searxng to latest (#13881) 2023-10-22 11:35:32 +02:00
TrueCharts Bot 1007c961a0
chore(deps): update container image tccr.io/truecharts/grocy to v4.0.3 (#13880) 2023-10-22 10:39:41 +02:00
TrueCharts Bot 2bed959d07
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13879) 2023-10-22 09:37:39 +02:00
TrueCharts Bot d172d35d74
chore(deps): update container image tccr.io/truecharts/readarr to v0.3.8.2267 (#13878) 2023-10-22 08:37:58 +02:00
TrueCharts Bot b00f415f96
chore(deps): update container image tccr.io/truecharts/budge to v0.0.9 (#13877) 2023-10-22 06:38:31 +02:00
TrueCharts Bot ba277c2d68
chore(deps): update container image tccr.io/truecharts/nextpvr to latest (#13875) 2023-10-22 05:35:03 +02:00
TrueCharts Bot 778d70d075
chore(deps): update container image tccr.io/truecharts/homer to v23.10.1 (#13876) 2023-10-22 05:34:04 +02:00
TrueCharts Bot 565b3457a9
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13873) 2023-10-22 04:46:15 +02:00
TrueCharts Bot 24bf4fff4e
chore(deps): update container image tccr.io/truecharts/ghostfolio to v2.14.0 (#13874) 2023-10-22 04:44:52 +02:00
TrueCharts Bot 96090f66c8
chore(deps): update container image tccr.io/truecharts/ddclient to v3.11.0 (#13872) 2023-10-22 04:02:23 +02:00
TrueCharts Bot 0a7a16a5b0
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1066 (#13871) 2023-10-22 04:01:34 +02:00
TrueCharts Bot c9f825eb2a
chore(deps): update container image tccr.io/truecharts/code-server to v4.18.0 (#13870) 2023-10-22 02:52:14 +02:00
TrueCharts Bot 644b9c24ed
chore(deps): update container image tccr.io/truecharts/photoprism to v231021 (#13867) 2023-10-22 01:35:40 +02:00
TrueCharts Bot 0eb525e496
chore(deps): update container image tccr.io/truecharts/zwavejs-ui to v9.2.3 (#13868) 2023-10-22 01:34:41 +02:00
TrueCharts Bot c9393a89a1
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13865) 2023-10-22 00:35:55 +02:00
TrueCharts Bot 0c926e049b
chore(deps): update container image tccr.io/truecharts/metabase to v0.47.5 (#13866) 2023-10-22 00:35:45 +02:00
TrueCharts Bot f1e479e6bd
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.10.4 (#13863) 2023-10-21 23:34:58 +02:00
TrueCharts Bot e65b4c9987
chore(deps): update container image tccr.io/truecharts/meshcentral to v1.1.14 (#13864) 2023-10-21 23:34:47 +02:00
TrueCharts Bot b5342ff61d
chore(deps): update container image tccr.io/truecharts/calibre-web to v0.6.21 (#13861) 2023-10-21 22:39:15 +02:00
TrueCharts Bot 515132acc5
chore(deps): update container image tccr.io/truecharts/flexget to v3.9.15 (#13862) 2023-10-21 22:39:12 +02:00
TrueCharts Bot 21829e4d46
chore(deps): update container image tccr.io/truecharts/collabora to v23.05.5.2.1 (#13860) 2023-10-21 21:40:26 +02:00
TrueCharts Bot f143fbd87f
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13859) 2023-10-21 21:36:22 +02:00
ZasX 73bb7e3590
Added Vaultwarden guide for disabling the admin page (#13858)
**Description**
Added Vaultwarden guide for disabling the admin page

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-10-21 19:28:37 +00:00
TrueCharts Bot 244bf51ff4
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13857) 2023-10-21 20:35:57 +02:00
TrueCharts Bot 24a1ae0b12
chore(deps): update container image tccr.io/truecharts/invidious to latest (#13856) 2023-10-21 20:35:31 +02:00
TrueCharts Bot 86cd2f3f93
chore(deps): update container image tccr.io/truecharts/tvheadend to latest (#13855) 2023-10-21 19:35:59 +02:00
TrueCharts Bot 48525fac22
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#13854) 2023-10-21 19:35:12 +02:00
TrueCharts Bot c16b912ff7
chore(deps): update container image tccr.io/truecharts/piwigo to v13.8.0 (#13853) 2023-10-21 18:39:06 +02:00
TrueCharts Bot eb98ba7be6
chore(deps): update container image tccr.io/truecharts/grav to v1.7.43 (#13851) 2023-10-21 16:36:31 +02:00
TrueCharts Bot ddf119294c
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13850) 2023-10-21 15:38:39 +02:00
TrueCharts Bot 904337192a
chore(deps): update container image tccr.io/truecharts/xenorchestra to v5.124.0 (#13848) 2023-10-21 12:35:43 +02:00
TrueCharts Bot 790a5e500b
chore(deps): update container image tccr.io/truecharts/openvscode-server to v1.83.0 (#13847) 2023-10-21 11:39:08 +02:00
TrueCharts Bot 1cb77c7dd7
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13846) 2023-10-21 11:38:14 +02:00
TrueCharts Bot 3132b97ecf
chore(deps): update container image tccr.io/truecharts/mysql-workbench to v8.0.34 (#13844) 2023-10-21 10:37:10 +02:00
TrueCharts Bot 3e8ebdf36b
chore(deps): update container image tccr.io/truecharts/omada-controller to v5.12.0 (#13845) 2023-10-21 10:36:50 +02:00
TrueCharts Bot 815cf6df5b
chore(deps): update container image tccr.io/truecharts/dillinger to v3.39.1 (#13842) 2023-10-21 09:37:08 +02:00
TrueCharts Bot 3d0bddf5c2
chore(deps): update container image tccr.io/truecharts/dockerregistry to v2 (#13843) 2023-10-21 09:32:52 +02:00
TrueCharts Bot c71f8b157a
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#13840) 2023-10-21 08:37:13 +02:00
TrueCharts Bot 991ceed40a
chore(deps): update container image tccr.io/truecharts/redmine to v5.0.6 (#13841) 2023-10-21 08:36:56 +02:00
TrueCharts Bot 900d653b6d
chore(deps): update container image tccr.io/truecharts/socat to v1.7.4.4 (#13839) 2023-10-21 06:37:07 +02:00
TrueCharts Bot 94615fd02f
chore(deps): update container image tccr.io/truecharts/littlelink-server to latest (#13837) 2023-10-21 04:40:37 +02:00
TrueCharts Bot 16faf6a7d6
chore(deps): update container image tccr.io/truecharts/jackett to v0.21.1056 (#13838) 2023-10-21 04:39:34 +02:00
TrueCharts Bot 1cd287c2fc
chore(deps): update container image tccr.io/truecharts/redmine to v5.0.6 (#13836) 2023-10-21 03:58:13 +02:00