Commit Graph

151 Commits

Author SHA1 Message Date
TrueCharts Bot 35a46bef11
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.9.2 (#12551) 2023-09-13 11:35:46 +02:00
TrueCharts Bot 2ebadc0092
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.9.1 (#12428) 2023-09-09 18:38:25 +02:00
TrueCharts Bot 2382d5b8b6
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.9.0 (#12323) 2023-09-07 05:36:27 +02:00
TrueCharts Bot 1dcd11a372
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.8.4 (#11887) 2023-08-26 06:30:56 +02:00
TrueCharts Bot de997da40b
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.8.2 (#11471) 2023-08-12 16:34:50 +02:00
TrueCharts Bot e4df147876
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.8.1 (#11276) 2023-08-07 03:01:07 +02:00
TrueCharts Bot 97f9b89917
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.7.3 (#10742) 2023-07-22 14:37:26 +02:00
TrueCharts Bot fcff689a0c
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.7.2 (#10581) 2023-07-18 19:32:48 +02:00
TrueCharts Bot df5a352e8c
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.7.1 (#10279) 2023-07-07 22:47:23 +02:00
TrueCharts Bot 63bd677998
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.6.3 (#9924) 2023-06-26 09:34:47 +02:00
TrueCharts Bot 57adcd4763
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.6.2 (#9676) 2023-06-16 01:39:56 +02:00
TrueCharts Bot 87c9063e91
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.5.4 (#9239) 2023-05-29 01:44:40 +02:00
TrueCharts Bot 986927b101
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.5.3 (#9013) 2023-05-20 16:00:12 +02:00
TrueCharts Bot ab1b18a8ab
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.5.2 (#8855) 2023-05-16 12:04:22 +02:00
Kjeld Schouten dfedd1aeb9
fix(home-assistant): fix dhcp component (#8980)
**Description**
It seems the dhcp component of home-assistant (which is enabled by
default) needs some more permissions

**⚙️ 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
- [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-16 10:43:41 +02:00
Daniel Riedl b97f780179
fix(homeassistant): Ensure appended config files start on new line. (#8784)
**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
-->
Used this as fix on my home-assistant chart.
Here's the initial problem:
```sh
$ cat recorder.txt
  recorder:
    purge_keep_days: 30
    commit_interval: 3
    db_url: xyz

$ cat config.yaml
  test: 123
  nest:
    x: 1
    y: 2

$ cat recorder.txt >> config.yaml
$ cat config.yaml
  test: 123
  nest:
    x: 1
    y: 2recorder:
    purge_keep_days: 30
    commit_interval: 3
    db_url: xyz
```

**📃 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
- [ ] #️⃣ 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
- [ ] ⬆️ 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: Daniel Riedl <107212962+danriedl@users.noreply.github.com>
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-05-06 21:51:13 +03:00
TrueCharts Bot 7c9a45c088
chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.4.6 (#8581) 2023-04-30 15:53:04 +02:00
Stavros Kois 953b912f26
fix(home-assistant): put new lines everywhere... (#7993)
**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._
2023-04-14 20:39:01 +03:00
Stavros Kois ee4036f841
fix(home-assistant): add an empty line after each concat (#7957)
**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  #7948

**⚙️ 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-04-12 23:41:02 +02:00
Kjeld Schouten-Lebbing 0b726419d4
feat(stable): BREAKING CHANGE migrate to new common part 1 (#7900)
**Description**
Part 1 of the migration to new common on the stable train.
This basically breaks most/all charts requiring a reinstall on SCALE as
well.

Helm users shouldn't need a reinstall but could migrate their
values.yaml modification manually besides backing-up and porting the
databases.

There be Dragons basically, as we obviously cannot 100% go over
each-and-every single app in the stable train like we did in the
enterprise train.

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [x] 🪛 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?**
Via CI and manually validation in a lot of cases where the CI did not
correctly check things.
Additional catalog item creation tooling for local testing has been
added as well.

**📃 Notes:**
There will be issues in the future but we should get as much working
well as we can.

**✔️ 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._
2023-04-11 12:07:17 +02:00
TrueCharts-Admin 2b22b0cf81 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.2.5 2023-02-20 08:25:03 +00:00
TrueCharts-Admin d59b7d59bd chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.2.4 2023-02-13 17:25:37 +00:00
TrueCharts-Admin 2d407f75a4 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.2.3 2023-02-08 13:27:07 +00:00
TrueCharts-Admin a52e27d8c5 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.2.2 2023-02-05 13:23:35 +01:00
TrueCharts-Admin 48ac4ea2fc chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.2.1 2023-02-03 11:36:28 +00:00
TrueCharts-Admin ff3923818c chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.1.7 2023-01-31 04:22:04 +01:00
TrueCharts-Admin 4abbb60ca8 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.1.6 2023-01-20 13:26:26 +00:00
TrueCharts-Admin 7afa8b0b26 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.1.5 2023-01-19 11:23:53 +01:00
TrueCharts-Admin 212793511b chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.1.4 2023-01-16 00:30:47 +00:00
TrueCharts-Admin 1afb47e233 chore(deps): update container image tccr.io/truecharts/home-assistant to v2023.1.2 2023-01-11 01:22:28 +00:00
TrueCharts-Admin ab6cb57fed chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.9 2023-01-07 17:31:55 +01:00
Xstar97 8cc8d32e77
fix(home-assistant) Dynamically set trusted proxies (#5846)
* fix(home-assistant) fix home-assistant subnet

* use a better way for trusted proxies

* replace else with a dynamic list instead of hardcoded

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-12-29 23:25:28 +01:00
TrueCharts-Admin fe239b2301 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.8 2022-12-21 19:19:54 +00:00
TrueCharts-Admin 9852b4e9e5 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.7 2022-12-18 13:36:48 +01:00
TrueCharts-Admin 2e800a7fab chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.6 2022-12-15 01:16:32 +00:00
TrueCharts-Admin f5278cc139 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.5 2022-12-14 18:31:53 +00:00
TrueCharts-Admin 6203abe200 Update container image tccr.io/truecharts/home-assistant to v2022.12.1 2022-12-10 02:23:26 +00:00
TrueCharts-Admin 2598042c39 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.12.0 2022-12-08 06:27:43 +00:00
TrueCharts-Admin 77f1fc2838 Update container image tccr.io/truecharts/home-assistant to v2022.11.5 2022-12-01 00:23:34 +00:00
TrueCharts-Admin c0a4987207 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.11.4 2022-11-21 13:25:31 +00:00
TrueCharts-Admin adbb3f6075 chore(deps): update container image tccr.io/truecharts/home-assistant to v2022.11.3 2022-11-17 16:16:00 +00:00
TrueCharts-Admin a7abd8ac98 chore(deps): update docker general non-major 2022-11-12 01:26:23 +01:00
TrueCharts Bot 5ae7174781
chore(deps): update docker general non-major (#4301)
* 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-05 13:48:43 +02:00
TrueCharts Bot d611428601
chore(deps): update docker general non-major (#4155)
* chore(deps): update docker general non-major

* Commit bumped Chart Version

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

* fix 2 apps

* update digest

* Update charts/incubator/etesync/Chart.yaml

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-10-22 16:35:47 +03:00
TrueCharts-Admin aaf6498e58 chore(deps): update docker general non-major 2022-10-15 08:22:33 +02:00
TrueCharts Bot ef2f489611
chore(deps): update docker general non-major (#4084)
* chore(deps): update docker general non-major

* Commit bumped Chart Version

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

* http probe

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-10-15 01:57:21 +03:00
TrueCharts Bot 96921b16e5
chore(deps): update docker general non-major (#4070)
* 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-10-11 08:30:40 +03:00
TrueCharts-Admin a1bf9efe33 chore(deps): update docker general non-major 2022-10-07 11:45:00 +02:00
TrueCharts Bot 8c6c2c2d73
chore(deps): update docker general non-major (#3920)
* 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-09-27 10:23:01 +02:00
TrueCharts Bot 1daf654677
chore(deps): update docker general non-major (#3850)
* 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-09-24 00:43:05 +03:00