Commit Graph

17009 Commits

Author SHA1 Message Date
StevenMcElligott 8695379c87
fix(pihole): Set allowPrivilegeEscalation (#9295)
**Description**

Instead of giving capabilities this should fix the issues inside #9294
for permissions

⚒️ Fixes  #9294 

**⚙️ 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-05-30 18:36:53 +02:00
Kjeld Schouten a6938df631
fix(metallb): misc patches (#9293)
**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
- [ ] 🪛 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._

---------

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 17:12:50 +02:00
Kjeld Schouten 46da705e6e
Update Chart.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 14:28:13 +02:00
Kjeld Schouten 1fe832ddea
Update values.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 14:28:00 +02:00
Stavros Kois 8b91e1e0de
chore(ci): Add some checks to tc-lint.sh and update chart-tests to GITHUB_OUTPUT (#9289)
**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
- [ ] 🪛 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?**
<!--
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-05-30 12:54:44 +02:00
StevenMcElligott b03bff5f6d
fix(pihole): Add additional capabilities (#9291)
**Description**

Added the SETPUID and SETGUID to fix #9285 , ideally shouldn't need more
more could be added haha

⚒️ Fixes  #9285 

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

- [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._

---------

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 12:53:51 +02:00
Kjeld Schouten-Lebbing a0178e55fe fix(metallb): correct metallb main service references in webhook and crds 2023-05-30 12:46:15 +02:00
Kjeld Schouten 37411367d3
Update Chart.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 12:15:27 +02:00
Kjeld Schouten c58cdd0591
Update _webhooks.tpl
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-30 12:15:08 +02:00
TrueCharts-Bot 44710e116c Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-05-30 00:27:01 +00:00
TrueCharts Bot d1b707021a
chore(deps): update container image tccr.io/truecharts/wordpress to v6.2.2 (#9286) 2023-05-29 19:45:08 +02:00
TrueCharts Bot e36d6077a7
chore(deps): update immich to v1.58.0 (minor) (#9282)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/truecharts/immich-ml](https://togithub.com/truecharts/containers)
| minor | `v1.56.2` -> `v1.58.0` |
|
[tccr.io/truecharts/immich-proxy](https://togithub.com/truecharts/containers)
| minor | `v1.56.2` -> `v1.58.0` |
|
[tccr.io/truecharts/immich-server](https://togithub.com/truecharts/containers)
| minor | `v1.56.2` -> `v1.58.0` |
|
[tccr.io/truecharts/immich-web](https://togithub.com/truecharts/containers)
| minor | `v1.56.2` -> `v1.58.0` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDUuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEwNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

---------

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-05-29 17:41:00 +03:00
TrueCharts Bot 1585516e8f
chore(deps): update container image tccr.io/truecharts/minecraft-java19 to latest (#9266) 2023-05-29 15:09:29 +02:00
TrueCharts Bot 5abf5ae911
chore(deps): update container image tccr.io/truecharts/octoprint to v1.9.0 (#9275) 2023-05-29 14:52:54 +02:00
TrueCharts Bot 75aa64468a
chore(deps): update container image tccr.io/truecharts/zwavejs-ui to v8.17.1 (#9281) 2023-05-29 14:52:13 +02:00
TrueCharts Bot 846807016f
chore(deps): update container image tccr.io/truecharts/shlink to v3.6.0 (#9277) 2023-05-29 14:47:07 +02:00
TrueCharts Bot 1637df03d1
chore(deps): update jupyter (#9269) 2023-05-29 14:46:54 +02:00
TrueCharts Bot 742311b5ee
chore(deps): update container image tccr.io/truecharts/nginx to v1.25.0 (#9273) 2023-05-29 14:46:49 +02:00
TrueCharts Bot c48452e8d1
chore(deps): update container image tccr.io/truecharts/thelounge to v4.4.0 (#9278) 2023-05-29 14:46:24 +02:00
TrueCharts Bot 55e69b881a
chore(deps): update container image tccr.io/truecharts/n8n to v0.230.1 (#9271) 2023-05-29 14:45:22 +02:00
TrueCharts Bot 455cdc2f8e
chore(deps): update container image tccr.io/truecharts/xenorchestra to v5.115.0 (#9280) 2023-05-29 14:44:37 +02:00
TrueCharts Bot 325c66d857
chore(deps): update container image tccr.io/truecharts/tsmuxer to v23.05.1 (#9279) 2023-05-29 14:44:31 +02:00
TrueCharts Bot 9fae87eada
chore(deps): update container image tccr.io/truecharts/netdata to v1.39.1 (#9272) 2023-05-29 14:44:15 +02:00
TrueCharts Bot 22eedcd446
chore(deps): update container image tccr.io/truecharts/rsshub to latest (#9268) 2023-05-29 14:44:10 +02:00
TrueCharts Bot 43ba8f900c
chore(deps): update container image tccr.io/truecharts/pihole to v2023.05.0 (#9276) 2023-05-29 14:43:26 +02:00
TrueCharts Bot 245ec0e466
chore(deps): update container image tccr.io/truecharts/libremdb to latest (#9265) 2023-05-29 14:43:17 +02:00
TrueCharts Bot fb9187c83a
chore(deps): update container image tccr.io/truecharts/minio to latest (#9267) 2023-05-29 14:42:47 +02:00
TrueCharts Bot 977d6661d3
chore(deps): update container image tccr.io/truecharts/minio-console to v0.28.0 (#9270) 2023-05-29 14:37:52 +02:00
TrueCharts Bot e7547a9ae6
chore(deps): update container image tccr.io/truecharts/linkding to v1.19.0 (#9264) 2023-05-29 13:38:31 +02:00
TrueCharts Bot 22d9dff6e3
chore(deps): update container image tccr.io/truecharts/crafty-4 to v4.1.1 (#9263) 2023-05-29 13:34:04 +02:00
TrueCharts Bot 2c4a458a10
chore(deps): update all-contributors-cli to 6.26.0 (#9261)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[all-contributors-cli](https://togithub.com/all-contributors/all-contributors-cli)
| devDependencies | minor | [`6.25.1` ->
`6.26.0`](https://renovatebot.com/diffs/npm/all-contributors-cli/6.25.1/6.26.0)
|

---

### Release Notes

<details>
<summary>all-contributors/all-contributors-cli</summary>

###
[`v6.26.0`](https://togithub.com/all-contributors/cli/releases/tag/v6.26.0)

[Compare
Source](https://togithub.com/all-contributors/all-contributors-cli/compare/v6.25.1...v6.26.0)

##### Features

- use Prettier to write config file, if possible
([#&#8203;356](https://togithub.com/all-contributors/all-contributors-cli/issues/356))
([e0a5312](e0a5312dc5))

</details>

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDQuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEwNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2023-05-29 13:18:40 +02:00
TrueCharts Bot 04e9af6a85
chore(deps): update container image tccr.io/truecharts/esphome to v2023.5.4 (#9234) 2023-05-29 12:45:48 +02:00
TrueCharts Bot 681e03f426
chore(deps): update container image tccr.io/truecharts/emby to v4.7.12.0 (#9233) 2023-05-29 12:43:29 +02:00
TrueCharts Bot 2cf0d7178c
chore(deps): update container image tccr.io/truecharts/alist to v3.18.0 (#9262) 2023-05-29 12:39:17 +02:00
TrueCharts Bot f9525ae142
chore(deps): update helm chart common to 12.10.8 (#9216)
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.10.4` -> `12.10.8` |

---

### Release Notes

<details>
<summary>truecharts/library-charts</summary>

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

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

Function library for TrueCharts

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

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

Function library for TrueCharts

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

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

Function library for TrueCharts

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

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

Function library for TrueCharts

</details>

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDIuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNS4xMDMuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
2023-05-29 11:24:57 +02:00
TrueCharts Bot 494b04fa7b
chore(deps): update helm chart common to 12.10.8 (#9259)
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.10.7` -> `12.10.8` |

---

### Release Notes

<details>
<summary>truecharts/library-charts</summary>

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

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

Function library for TrueCharts

</details>

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDMuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEwMy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2023-05-29 11:24:41 +02:00
Kjeld Schouten f9b44d282b
chore(ci): improve CI performance (#9257)
**Description**
The CI was using an old devcontainer for things where this wasn't
technically 100% needed.
By removing it we can cut it down by another 50-70% for single-chart
runs, such as container updates.

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 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?**
<!--
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
- [x] 📄 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.
- [ ] 🖼️ 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: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 11:20:59 +02:00
allcontributors[bot] e6495729f3
docs: add Emalton as a contributor for doc (#9260)
Adds @Emalton as a contributor for doc.

This was requested by stavros-k [in this
comment](https://github.com/truecharts/charts/pull/9259#issuecomment-1566768982)

[skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
2023-05-29 10:44:56 +02:00
Kjeld Schouten fbe18e1668
feat(metallb): add our own metallb operator (#9099)
**Description**
This adds our first chart for the `operators` train: metallb.
It also includes some fixes to get said train to work.

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [x] ⚠️ 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?**
<!--
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:**
This should not be used yet by end users.

**✔️ 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
- [x] 📄 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.
- [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._
2023-05-29 10:44:38 +02:00
TrueCharts Bot 69fe271c4f
chore(deps): update container image tccr.io/truecharts/flexget to v3.7.2 (#9258) 2023-05-29 10:44:00 +02:00
Kjeld Schouten 6ba3790ecc
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 10:31:53 +02:00
Kjeld Schouten 732b7f09be
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 10:08:45 +02:00
Kjeld Schouten 70c5d4f185
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 10:05:34 +02:00
Kjeld Schouten b58069c54c
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 09:54:21 +02:00
Kjeld Schouten 285b540d93
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 09:47:37 +02:00
TrueCharts Bot 4e0bcac185
chore(deps): update container image tccr.io/truecharts/wordpress to v6.2.2 (#9256) 2023-05-29 09:44:18 +02:00
TrueCharts Bot dbe2f64031
chore(deps): update container image tccr.io/truecharts/tautulli to v2.12.4 (#9255) 2023-05-29 09:41:13 +02:00
Kjeld Schouten ed05a638db
Update charts-test.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2023-05-29 09:41:06 +02:00
StevenMcElligott 51df919322
feat(pihole): Move to stable (#9237)
**Description**

Tested by staff, good to go!

⚒️ 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
- [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-05-29 09:07:42 +02:00
TrueCharts Bot 30f5ac7c29
chore(deps): update container image tccr.io/truecharts/strapi to v4.10.6 (#9254) 2023-05-29 08:40:35 +02:00