Commit Graph

955 Commits

Author SHA1 Message Date
Stavros Kois 546e476b1d
chore(nextcloud): allow tuning opcache (#11232) 2023-08-06 15:54:05 +03:00
TrueCharts Bot 0f56a515bf
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#11142) 2023-08-06 11:56:04 +02:00
TrueCharts-Bot c401f134fd Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-08-03 00:25:53 +00:00
Stavros Kois af2ec20f78
chore(guacamole): add virtual drive storage (#11134)
**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  #11113
⚒️ Fixes  #11128

**⚙️ 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:**

- [x] ⚖️ 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
- [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`

---

_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-08-03 02:47:51 +03:00
Kjeld Schouten 34bd9b147b revert bumps on incubator (+2 squashed commit)
Squashed commit:

[7e168fa0eb] chore(deps): update container image tccr.io/truecharts/valheim-server to latest (#9633)

[c21e8fb9d8] bump everything to common 14.0.1 (will need to fix inherently failing CI)
2023-07-31 19:23:26 +02:00
TrueCharts Bot c99982765e
chore(deps): update container image tccr.io/truecharts/collabora to v23.05.2.2.1 (#10936) 2023-07-28 23:57:54 +02:00
TrueCharts Bot 2b49ed561a
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#10872) 2023-07-28 23:43:23 +02:00
Stavros Kois 3c1c2f40cd
fix(nextcloud): fix too strict validation 2023-07-22 20:42:46 +03:00
TrueCharts Bot 50b89471fb
chore(deps): update helm general non-major (#10721) 2023-07-22 18:47:42 +02:00
Ethan Leisinger 259b791af3
fix(nextcloud): make previews.max_allowed_resolution string type (#10748)
**Description**
I see an error when upgrading nextcloud instance: `[EINVAL]
values.nextcloud.previews.max_allowed_resolution: Not an integer`
⚒️ Fixes  # <!--(issue)-->

**⚙️ 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?**
I have not personally tested this because testing would be more complex
than warrented for the fix IMO

**📃 Notes:**
The options I saw for this fix were:

1. Update default value to `18`
2. Update type to `string`

I selected option 2 because the `imaginary` repo specifies `18.0` as the
default.

**✔️ 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
- [ ] 🧪 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`

---

_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-07-22 15:24:22 +00:00
TrueCharts Bot 2d51598cf2
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.0.0 (#10694) 2023-07-22 12:44:24 +02:00
TrueCharts Bot 6592e81a22
chore(deps): update container image tccr.io/truecharts/collabora to v23.05.1.3.1 (#10213) 2023-07-22 11:34:29 +02:00
Stavros Kois c8b515cd42
feat(nextcloud): allow setting imaginary max allowed resolution (#10731)
**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  #10393 

**⚙️ 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
-->

**📃 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
- [ ] 🧪 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`

---

_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-07-22 11:02:21 +03:00
TrueCharts Bot 410df697e6
chore(deps): update container image tccr.io/truecharts/nextcloud-imaginary to v20230401 (#10563) 2023-07-18 10:43:23 +02:00
TrueCharts Bot 1403a69493
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.0.0 (#10381) 2023-07-18 10:42:54 +02:00
TrueCharts Bot 3b46709de0
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#10446) 2023-07-18 09:43:32 +02:00
kqmaverick 286b2fe716
docs(nextcloud): snapshot directory visibility warning (#10408)
**Description**
Add warning about having snapshot directory set to visible.

⚒️ Fixes  #

**⚙️ 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?**


**📃 Notes:**

**✔️ 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._

Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com>
2023-07-14 10:46:18 +02:00
TrueCharts Bot 24ab3bb3d2
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#10419) 2023-07-12 12:40:17 +02:00
TrueCharts Bot 7932c2fe18
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#10304) 2023-07-08 16:41:50 +02:00
TrueCharts Bot 6162dcd24c
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#10208) 2023-07-06 23:43:29 +02:00
TrueCharts Bot 50d5ff6dc7
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.0.0 (#10168) 2023-07-05 09:43:45 +02:00
kqmaverick 1f333417ac
docs(nextcloud): update user data dataset perms image (#10033)
**Description**
Updates the user data dataset permissions screenshot to show 770 instead
of the incorrect 775.

⚒️ Fixes  #

**⚙️ 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?**

**📃 Notes:**

**✔️ 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._

Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com>
2023-07-03 23:11:58 +03:00
TrueCharts Bot 3df97af1eb
chore(deps): update helm general non-major (#10069)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`12.14.2` -> `12.14.6` |
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`12.14.3` -> `12.14.6` |
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/library-charts)) | patch |
`12.14.1` -> `12.14.6` |
|
[kube-state-metrics](https://truecharts.org/charts/dependency/kube-state-metrics)
([source](https://togithub.com/truecharts/charts)) | patch | `1.0.20` ->
`1.0.31` |
| [mariadb](https://truecharts.org/charts/dependency/mariadb)
([source](https://togithub.com/truecharts/charts)) | patch | `7.0.50` ->
`7.0.61` |
| [memcached](https://truecharts.org/charts/dependency/memcached)
([source](https://togithub.com/truecharts/charts)) | patch | `6.0.59` ->
`6.0.68` |
| [mongodb](https://truecharts.org/charts/dependency/mongodb)
([source](https://togithub.com/truecharts/charts)) | patch | `6.0.48` ->
`6.0.59` |
|
[node-exporter](https://truecharts.org/charts/dependency/node-exporter)
([source](https://togithub.com/truecharts/charts)) | patch | `1.0.22` ->
`1.0.34` |
| [redis](https://truecharts.org/charts/dependency/redis)
([source](https://togithub.com/truecharts/charts)) | patch | `6.0.58` ->
`6.0.62` |
| [redis](https://truecharts.org/charts/dependency/redis)
([source](https://togithub.com/truecharts/charts)) | patch | `6.0.48` ->
`6.0.62` |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the
Dependency Dashboard for more information.

---

### Release Notes

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

###
[`v12.14.6`](https://togithub.com/truecharts/library-charts/releases/tag/common-12.14.6)

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

Function library for TrueCharts

###
[`v12.14.5`](https://togithub.com/truecharts/library-charts/releases/tag/common-12.14.5)

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

Function library for TrueCharts

###
[`v12.14.4`](https://togithub.com/truecharts/library-charts/releases/tag/common-12.14.4)

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

Function library for TrueCharts

###
[`v12.14.3`](https://togithub.com/truecharts/library-charts/releases/tag/common-12.14.3)

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

Function library for TrueCharts

</details>

<details>
<summary>truecharts/charts (kube-state-metrics)</summary>

###
[`v1.0.31`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.31)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.30...kube-state-metrics-1.0.31)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.30`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.30)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.29...kube-state-metrics-1.0.30)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.29`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.29)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.28...kube-state-metrics-1.0.29)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.28`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.28)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.27...kube-state-metrics-1.0.28)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.27`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.27)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.26...kube-state-metrics-1.0.27)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.26`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.26)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.25...kube-state-metrics-1.0.26)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.25`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.25)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.24...kube-state-metrics-1.0.25)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

###
[`v1.0.24`](https://togithub.com/truecharts/charts/releases/tag/kube-state-metrics-1.0.24)

[Compare
Source](https://togithub.com/truecharts/charts/compare/kube-state-metrics-1.0.20...kube-state-metrics-1.0.24)

kube-state-metrics is a simple service that listens to the Kubernetes
API server and generates metrics about the state of the objects.

</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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTQuMCIsInVwZGF0ZWRJblZlciI6IjM1LjE1NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

---------

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-07-01 20:34:40 +03:00
kqmaverick 8ed6fde9e5
docs(nextcloud): add installation notes (#10022)
**Description**
Add installation notes for nextcloud

⚒️ Fixes  #

**⚙️ 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?**

**📃 Notes:**

**✔️ 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-06-29 21:38:32 +03:00
TrueCharts Bot 6cc0af45ec
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.0.0 (#9859) 2023-06-27 18:53:08 +02:00
VictorienXP 769a6890e3
fix(nextcloud): Fix .well-known redirections (#9979)
**Description**
There is an issue with the Nextcloud Social app:
![.well-known/webfinger isn't properly set
up!](https://github.com/truecharts/charts/assets/1633366/4670d2e8-bace-4999-b22f-f370b5c27f0c)
I've looked into it and found the cause to be most likely the Nginx
configuration.
You can see here the redirection doesn't take into account any GET
parameters:

![image](https://github.com/truecharts/charts/assets/1633366/ff6217ea-c34d-495c-aeec-9a29bb6189f4)
So it will always respond `{"message":"webfinger not supported"}`.

![image](https://github.com/truecharts/charts/assets/1633366/7b21acd3-fa26-4621-92fe-a6a63ec50196)
But when I try with a non-existent `.well-known`, I can see the
redirection works as intended.

![image](https://github.com/truecharts/charts/assets/1633366/87e38144-c0e2-4f4c-b1a6-38fd0ad22d71)
So my conclusion is that these redirections needs to be removed.

**⚙️ 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?**
To test if the fix is effective you need to first install the Social app
then test with your own user the url like this (replace
`nextcloud-domain` and `AccountName` with correct values):
https://nextcloud-domain/.well-known/webfinger?resource=acct:@AccountName@nextcloud-domain
(the Social app should give you the Federated Cloud ID directly so you
can use it there)
Then it should give an output different than `{"message":"webfinger not
supported"}`.
And the ".well-known/webfinger isn't properly set up!" should not
appear.

**📃 Notes:**
The last line `return 301 /index.php$request_uri;` should already cover
any redirection and works properly.

**✔️ 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
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ 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.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`
2023-06-27 15:34:57 +03:00
TrueCharts Bot 5015e575aa
chore(deps): update container image tccr.io/truecharts/nextcloud-imaginary to v20230401 (#9834) 2023-06-27 03:07:51 +02:00
TrueCharts Bot 414fdc9fef
chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.25.1 (#9965) 2023-06-27 01:43:23 +02:00
TrueCharts Bot cc5eeb3b79
chore(deps): update container image tccr.io/truecharts/nextcloud-push-notify to v0.6.3 (#9910) 2023-06-26 02:58:38 +02:00
kqmaverick e76c5b50f6
docs(nextcloud): warn about external storage (#9882)
**Description**
Adds warning about external storage

⚒️ Fixes  #

**⚙️ 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?**

**📃 Notes:**

**✔️ 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._

Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com>
2023-06-25 07:50:32 +02:00
TrueCharts Bot 235b2faf9c
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v27.0.0 (#9853) 2023-06-23 16:43:52 +02:00
nautilus7 ae24d09406
Update some links in the docs (#9839)
**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)-->

**⚙️ 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
- [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
- [ ] ⬆️ 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-06-23 08:53:11 +02:00
TrueCharts-Bot d260c14ba5 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-06-23 00:30:15 +00:00
TrueCharts Bot 1b1544faa6
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to v (#9833) 2023-06-22 22:40:41 +02:00
Stavros Kois 9f450d601a
feat(nextcloud): move to stable (#9832)
**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)-->

**⚙️ 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
-->

**📃 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-06-22 22:29:25 +03:00
Xstar97TheNoob 545c83f253
move charts to incubator (#9131)
**Description**
Move the following apps to incubator.

```
| Chart Name        | Chart Name  | Chart Name                 |
| ----------------- | ----------- | -------------------------- |
| authentik         | darktable   | guacamole-client           |
| cloudflared       | dsmr-reader | habridge                   |
| dupeguru          | filerun     | filezilla                  |
| firefox           | flashpaper  | focalboard                 |
| gotify            | grist       | icantbelieveitsnotvaletudo |
| icinga2           | inventree   | invidious                  |
| joplin-server     | k8s-gateway | kimai                      |
| koel              | kopia       | kutt                       |
| leantime          | libreoffice | librephotos                |
| linkace           | loki        | lychee                     |
| mattermost        | mealie      | miniflux                   |
| ml-workspace      | mosquitto   | nextcloud                  |
| openkm            | openldap    | penpot                     |
| photoview         | pialert     | piaware                    |
| pidgin            | pihole      | plexanisync                |
| protonmail-bridge | pydio-cells | recipes                    |
| rtmpserver        | sdtd        | shiori                     |
| snipe-it          | statping-ng | synapse                    |
| teamspeak3        | typecho     | wbo                        |
| wger              | wireshark   | zusam                      |
| xbackbone         | youtrack    |                            |
```
⚒️ 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._

---------

Co-authored-by: xtar97 <dev.xtar97@gmail.com>
2023-05-24 19:03:16 +02:00
Kjeld Schouten-Lebbing 8cb036ac17 fix: fix mistakes on questions.yaml 2023-05-22 12:24:12 +02:00
Kjeld Schouten-Lebbing 893b55dc56 update security context questions 2023-03-01 09:30:36 +01:00
Kjeld Schouten-Lebbing 3c471071cc adapt workload and container questions for all apps 2023-03-01 08:55:51 +01:00
Tiago Gaspar 16e4f17f88
nextcloud: nginx: sync timeout with PHP timeout (#7461)
Currently nginx is configured to timeout at 300s which isn't following
the  PHP timeout.
Sync them so that they both timeout at the same time and so that big
file uploads and moves don't spit an 504 Gateway Timeout error.

Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-27 23:51:51 +01:00
TrueCharts Bot 91222b3ffa
chore(deps): update helm general non-major (#7725) 2023-02-27 22:10:41 +01:00
TrueCharts-Bot 909dc317e5 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-27 07:28:57 +00:00
TrueCharts-Admin 2c58b14607 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-02-27 07:24:50 +00:00
TrueCharts-Bot 2bf69b8ff6 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-26 22:12:35 +00:00
TrueCharts-Admin 67c62f86f9 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-02-26 21:59:58 +00:00
TrueCharts-Admin 86f2ec21c4 chore(deps): update helm general non-major 2023-02-19 23:24:52 +01:00
TrueCharts-Bot 71d362eb8f Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-15 12:22:20 +00:00
TrueCharts-Admin 41fe7360f8 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-02-15 12:10:48 +00:00
Kjeld Schouten-Lebbing 2c1eebf59f fix(all): ensure new helm deps repo is used in latest releases as well. 2023-02-10 10:44:04 +01:00
Kjeld Schouten-Lebbing 1e13d92280 move apps to use different deps helm repo 2023-02-10 10:30:06 +01:00
Kjeld Schouten-Lebbing 110ae6125b Revert "Commit daily changes"
This reverts commit 208c2919fe.
2023-02-03 14:05:04 +01:00
TrueCharts-Bot 208c2919fe Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-03 12:51:53 +00:00
TrueCharts-Bot 402810f362 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-03 08:12:05 +00:00
TrueCharts-Admin 7b17d96cff chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-02-03 08:04:58 +00:00
TrueCharts-Admin 3e09a6b64a chore(deps): update helm general non-major 2023-01-31 12:21:32 +01:00
TrueCharts Bot 5b3df60054
chore(deps): update helm general non-major (#6689) 2023-01-24 17:44:28 +01:00
TrueCharts-Bot ad80f91c4f Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-01-24 11:33:07 +00:00
TrueCharts-Admin 681d1e2603 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-01-24 11:27:35 +00:00
TrueCharts-Admin 40c590cf46 chore(deps): update helm general non-major 2023-01-24 01:28:22 +01:00
TrueCharts-Bot ecf0e9e8eb Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-01-18 20:31:59 +00:00
TrueCharts-Admin f9acb5372c chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2023-01-18 20:23:00 +00:00
TrueCharts Bot 685801f13a
chore(deps): update helm general non-major (#6430)
* chore(deps): update helm general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-01-18 00:32:23 +02:00
Kjeld Schouten-Lebbing c8e91daed3
fix(nextcloud): set correct path to permissions toolkit (#6374)
* no message

* bump
2023-01-14 17:39:17 +00:00
TrueCharts Bot d41368c403
chore(deps): update helm general non-major (#6121) 2023-01-07 23:03:19 +02:00
Kjeld Schouten-Lebbing 981ae8f757
Update Chart.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-29 15:26:43 +01:00
Kjeld Schouten-Lebbing 31ceabcd82
Update values.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-29 15:26:29 +01:00
Kjeld Schouten-Lebbing 41ff4b36dc
fix(nextcloud): don't recursively chown userdata by default and default to alpine container (#5871)
* fix(nextcloud): don't recursively chown userdata by default

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* bump

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-29 13:17:49 +00:00
TrueCharts Bot a9910a47b2
chore(deps): update helm general non-major (#5856)
* chore(deps): update helm general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-27 22:48:28 +02:00
TrueCharts Bot 26b66192c7
chore(deps): update helm general non-major (#5848)
* chore(deps): update helm general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-27 10:36:28 +01:00
TrueCharts-Bot d478e848ce Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-26 21:56:38 +00:00
TrueCharts-Bot 927ca5989d Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-26 21:19:12 +00:00
TrueCharts-Bot e8f601826c Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-26 14:21:31 +00:00
TrueCharts-Admin 0dc1f6bf8e chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2022-12-26 14:17:39 +00:00
TrueCharts Bot 3a29755f39
chore(deps): update helm general non-major (#5839)
* chore(deps): update helm general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 14:37:12 +01:00
TrueCharts-Admin 7b7271a5b0 chore(deps): update helm general non-major 2022-12-25 21:23:15 +01:00
TrueCharts Bot 7a9638f14a
chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to 25.0.2 (#5740)
* chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to 25.0.2

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-25 10:12:24 +01:00
TrueCharts-Bot 9c80064806 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-23 18:21:20 +00:00
TrueCharts-Admin f8afa37bc1 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.3 2022-12-23 18:17:18 +00:00
Kjeld Schouten-Lebbing b7eac5281c
fix(nextcloud): temporary patch broken permission init (#5625)
* fix(nextcloud): temporary patch broken permission init

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* Update Chart.yaml

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* Update charts/stable/nextcloud/values.yaml

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* Update charts/stable/nextcloud/values.yaml

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* Update charts/stable/nextcloud/values.yaml

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-22 15:12:58 +01:00
TrueCharts Bot 379d7a6cd8
Merge pull request #5608 from truecharts/renovate/tccr.io-truecharts-nginx-unprivileged-1.x 2022-12-22 00:17:03 +01:00
TrueCharts-Bot 07b8314297 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-21 19:25:04 +00:00
TrueCharts-Bot e470508186 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-21 19:24:11 +00:00
TrueCharts-Admin ad299f7e9b chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to v1.23.3 2022-12-21 19:20:00 +00:00
TrueCharts-Admin 4f847b2450 chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to 25.0.2 2022-12-21 19:19:25 +00:00
TrueCharts-Admin ecf1d8ef75 chore(deps): update helm chart collabora-online to v14.0.11 2022-12-20 10:25:16 +01:00
TrueCharts-Bot 39c50fefd0 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-20 02:15:46 +01:00
TrueCharts-Admin 6485adc96a chore(deps): update helm general non-major 2022-12-20 02:15:46 +01:00
TrueCharts Bot 177a5abdd4
chore(deps): update helm chart postgresql to v11.0.13 (#5495)
* chore(deps): update helm chart postgresql to v11.0.13

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-18 13:52:27 +02:00
TrueCharts Bot c6f99bf2d4
Merge pull request #5497 from truecharts/renovate/redis-5.x 2022-12-18 01:27:32 +01:00
TrueCharts Bot 739a2436b5
chore(deps): update helm chart collabora-online to v14.0.10 (#5490)
* chore(deps): update helm chart collabora-online to v14.0.10

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-18 00:46:37 +02:00
TrueCharts-Bot ce2aff854c Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-17 20:30:03 +00:00
TrueCharts-Admin 5ece28d87d chore(deps): update helm chart redis to v5.0.16 2022-12-17 20:26:11 +00:00
TrueCharts-Admin a440c1c652 chore(deps): update helm general non-major 2022-12-13 03:58:48 +01:00
TrueCharts-Bot 621bd5351c Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-12 14:22:28 +00:00
TrueCharts-Admin 0772f90dc4 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-12-12 14:16:44 +00:00
TrueCharts-Bot 422c1a3e9b Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-10 02:27:36 +00:00
TrueCharts-Admin 0801495cbe Update container image tccr.io/truecharts/nextcloud-fpm to v25.0.2 2022-12-10 02:23:39 +00:00
TrueCharts-Bot 0a65134dd2 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-12-10 01:11:02 +00:00
TrueCharts-Admin aee7da7848 Update container image tccr.io/truecharts/nextcloud-fpm to v 2022-12-10 01:07:10 +00:00
TrueCharts-Admin 6d7a60a771 chore(deps): update helm general non-major 2022-12-06 01:23:34 +01:00
TrueCharts-Admin 876d547e2a Update helm general non-major 2022-11-30 04:19:27 +01:00
TrueCharts-Bot 33592e8e02 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-29 08:18:53 +00:00
TrueCharts-Admin 1ddec3ed1d Update container image tccr.io/truecharts/nextcloud-fpm to 25.0.1 2022-11-29 08:14:53 +00:00
TrueCharts Bot 35f2ab0f2d
Update helm general non-major (#4968) 2022-11-29 09:50:55 +02:00
TrueCharts-Bot 1e228de551 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-29 00:27:55 +00:00
TrueCharts-Admin a24ab6c796 chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-11-29 00:23:57 +00:00
TrueCharts-Bot e281d66884 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-26 14:54:31 +00:00
TrueCharts-Admin 4dd6a27b75 Update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-11-26 14:48:22 +00:00
TrueCharts Bot 5fd3437c70
chore(deps): update helm general non-major (#4745) 2022-11-23 23:01:29 +02:00
Stavros Kois c172514215
chore(apps): bump all apps using pgsql, to use the reverted pgsql (#4740) 2022-11-22 17:27:56 +02:00
TrueCharts-Bot 635e3d3418 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-21 23:59:31 +00:00
TrueCharts-Admin 8fc8af341a chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-11-21 23:54:12 +00:00
Kjeld Schouten-Lebbing 1c51287271
Update Chart.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-21 23:01:04 +01:00
TrueCharts Bot e52151e4f5
chore(deps): update helm general non-major (#4665) 2022-11-21 14:13:20 +01:00
Kjeld Schouten-Lebbing c518e13cb3
Update Chart.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-17 11:33:57 +01:00
Kjeld Schouten-Lebbing 13ae28704f
Update _hpb.tpl
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-17 11:33:44 +01:00
Kjeld Schouten-Lebbing 390c35cde0
chore(nextcloud): bump version
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-16 22:21:05 +01:00
Kjeld Schouten-Lebbing 4d4d62b4e2
fix(nextcloud): ensure some standard migration scripts are always ran
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-16 22:19:58 +01:00
TrueCharts Bot 02eee266c4
Merge pull request #4490 from truecharts/renovate/tccr.io-truecharts-nginx-unprivileged-1.23.2 2022-11-16 15:59:31 +01:00
TrueCharts-Bot 16b5db069d Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-16 14:20:38 +00:00
TrueCharts-Bot ddfaa9c6c2 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-16 14:20:12 +00:00
TrueCharts-Admin 088c57b4d4 Update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-11-16 14:16:31 +00:00
TrueCharts-Admin 95fad0c4e7 Update container image tccr.io/truecharts/nextcloud-fpm to 25.0.1 2022-11-16 14:16:16 +00:00
TrueCharts Bot c7dc6146b4
chore(deps): update helm general non-major (#4471) 2022-11-15 21:17:58 +01:00
TrueCharts Bot ce91f2dca8
chore(deps): update helm general non-major (#4463)
* chore(deps): update helm general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-15 19:06:18 +01:00
TrueCharts-Bot a84883d0c5 Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-15 14:11:55 +00:00
TrueCharts-Admin 09911e243c chore(deps): update container image tccr.io/truecharts/nextcloud-fpm to 25.0.1 2022-11-15 14:07:09 +00:00
TrueCharts-Bot f33c12bd3d Commit bumped Chart Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-15 00:29:21 +00:00
TrueCharts-Admin b142ff68ab chore(deps): update container image tccr.io/truecharts/nginx-unprivileged to 1.23.2 2022-11-15 00:25:24 +00:00
TrueCharts Bot 1cede202ad
chore(deps): update helm general major (major) (#4424)
* chore(deps): update helm general major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-15 00:58:48 +01:00
TrueCharts Bot 5b205b38d6
chore(deps): update helm general non-major (#4404) 2022-11-13 15:44:32 +01:00
TrueCharts Bot c965cdc995
chore(deps): update helm general major (major) (#4392)
* chore(deps): update helm general major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

* render servMon closer to the end

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-11-12 21:57:05 +02:00
TrueCharts Bot ae1e653127
chore(deps): update helm general non-major (#4395) 2022-11-12 19:28:54 +01:00
TrueCharts-Admin a7abd8ac98 chore(deps): update docker general non-major 2022-11-12 01:26:23 +01:00
Kjeld Schouten-Lebbing 5af8f0db8c
chore(apps): Bump all for ingressList and speedtest 2022-11-11 20:17:41 +01:00
Kjeld Schouten-Lebbing 668157c363
feat(apps): readd ingressList to all Apps that already have Ingress itself 2022-11-11 19:09:57 +01:00
Stavros Kois 9559a83515
questions.yaml cleanup (#4377)
* remove non-existent include

* remove empty lines
2022-11-11 17:23:09 +01:00
Stavros Kois 3b9ba2a1df
bump everything (#4376) 2022-11-11 15:04:17 +02:00
Kjeld Schouten-Lebbing cbf9d388ec
chore(apps): bump to regenerate catalog 2022-11-11 10:00:57 +01:00
Kjeld Schouten-Lebbing f4fb8943e1
fix(apps): remove removed includes 2022-11-11 09:54:44 +01:00
Kjeld Schouten-Lebbing 800312b295
fix(apps): remove references to targetPort 2022-11-11 09:49:15 +01:00
truecharts-bot ba9389e4da chore: Auto-update chart README [skip ci] 2022-11-10 17:11:00 +00:00
Kjeld Schouten-Lebbing 16f46e1db8
fix(apps): change container config label 2022-11-10 17:56:28 +01:00
Kjeld Schouten-Lebbing 2ef737f7d3
chore(apps): Major Change to GUI 2022-11-10 17:21:56 +01:00
truecharts-bot 929beba979 chore: Auto-update chart README [skip ci] 2022-11-09 07:31:55 +00:00
TrueCharts Bot 5673252dab
chore(deps): update docker general non-major (#4355)
* chore(deps): update docker general non-major

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2022-11-09 09:18:51 +02:00
truecharts-bot 5c2e62558a chore: Auto-update chart README [skip ci] 2022-11-09 04:14:21 +00:00
TrueCharts Bot 0120c215e2
chore(deps): update helm general non-major (#4349) 2022-11-08 23:52:28 +01:00
truecharts-bot 9ba8308ab3 chore: Auto-update chart README [skip ci] 2022-11-08 18:51:08 +00:00
truecharts-bot 31805828c6 chore: Auto-update chart README [skip ci] 2022-11-08 11:23:12 +00:00