Commit Graph

452 Commits

Author SHA1 Message Date
Kjeld Schouten-Lebbing
247b7cb51f updates 2023-01-17 17:56:12 +01:00
Kjeld Schouten-Lebbing
4bd3cc7302 install test mistake 2023-01-17 12:44:53 +01:00
Kjeld Schouten-Lebbing
b0dcb120aa simplify unittests 2023-01-17 12:44:03 +01:00
Kjeld Schouten-Lebbing
42c2c09412 set shell to bash 2023-01-17 12:39:40 +01:00
Kjeld Schouten-Lebbing
5a2eadd7ba fetch-depth 1 on install test 2023-01-17 12:38:59 +01:00
Kjeld Schouten-Lebbing
5923a333e2 some test updates 2023-01-17 12:38:31 +01:00
Kjeld Schouten-Lebbing
abf51e527a port changes from upstream 2023-01-16 22:51:21 +01:00
Kjeld Schouten-Lebbing
671781f022 keep extra containers values 2023-01-16 21:49:51 +01:00
Kjeld Schouten-Lebbing
cb3f66594f update CI 2023-01-16 21:15:07 +01:00
Kjeld Schouten-Lebbing
6ae1d5b0b2 port recent changes 2023-01-16 20:46:13 +01:00
Kjeld Schouten-Lebbing
8bd30f85a6 daemonset fix and add configmap test 2023-01-16 17:34:28 +01:00
Kjeld Schouten-Lebbing
dbe83437dd setup job and cronjob testing 2023-01-16 17:31:59 +01:00
Kjeld Schouten-Lebbing
ee4a462daa corrected statefull set 2023-01-16 17:23:32 +01:00
Kjeld Schouten-Lebbing
a34185567f add statefullset and daemmonset tests 2023-01-16 17:17:23 +01:00
Kjeld Schouten-Lebbing
3e710c7a49 fix typo 2023-01-16 17:10:21 +01:00
Kjeld Schouten-Lebbing
312a61f24a test changes 2023-01-16 17:03:31 +01:00
Kjeld Schouten-Lebbing
da3e2d2de9 Common Refactor 2023-01-16 17:03:31 +01:00
Stavros Kois
0898c5dee7 fix(mongodb): it really wants to write on history file (#308)
**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._
common-11.1.2
2022-12-27 18:51:59 +01:00
Stavros Kois
faee9687c2 fix(prepare): rename auto-perm container and allow to run as root - fix manifest-updater (#307)
**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:**

- [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
- [ ] 🧪 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._
common-11.1.1
2022-12-26 12:30:48 +01:00
Kjeld Schouten-Lebbing
51a00fafc5 feat(common): allow for rootless db-wait and cve-free autopermissions (#306)
**Description**
This PR splits the root-requiring and non-root-requiring parts of the
default initcontainer.

- The root-requiring part, is now run on a bare-bones alpine image, for
added security.
- The database waits, are now running rootless.

In the future more of the initcontainers should be hardened with
least-privilage in mine.

**⚙️ 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._
common-11.1.0
2022-12-24 21:14:17 +01:00
TrueCharts-Bot
feac977335 Commit bumped App Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
common-11.0.9
2022-12-17 07:18:42 +01:00
TrueCharts-Admin
a6953636e0 chore(deps): update container image tccr.io/truecharts/code-server to v4.9.1 2022-12-17 07:18:42 +01:00
TrueCharts-Bot
b5e4f6bcba Commit bumped App Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
common-11.0.8
2022-12-14 07:21:14 +01:00
TrueCharts-Admin
ce38ff4ced chore(deps): update container image tailscale/tailscale to v1.34.1 2022-12-14 07:21:14 +01:00
TrueCharts-Admin
dc41984a37 chore(deps): update actions/checkout digest to 755da8c 2022-12-14 02:16:36 +01:00
TrueCharts-Admin
d4e2c0e544 chore(deps): update azure/setup-helm digest to 5119fcb 2022-12-13 13:30:33 +01:00
TrueCharts-Admin
a0ade4b6c3 chore(deps): update actions/checkout digest to 7dd9e2a 2022-12-13 07:20:16 +01:00
Kjeld Schouten-Lebbing
1d59d2d6f2 fix(common): ensure crd loader doesn't try to load non-crd objects (#297) common-11.0.7 2022-12-11 01:23:38 +00:00
TrueCharts-Admin
85bcfdddec chore(deps): update actions/setup-python digest to 2c3dd9e 2022-12-09 02:17:16 +01:00
TrueCharts-Bot
0b7984f4ef Commit bumped App Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
common-11.0.6
2022-12-07 07:20:28 +01:00
TrueCharts-Admin
0c990f7c32 chore(deps): update container image tccr.io/truecharts/code-server to v4.9.0 2022-12-07 07:20:28 +01:00
Stavros Kois
a4d268fbe5 Merge pull request #294 from truecharts/stavros-k-patch-1 common-11.0.5 2022-12-06 19:12:01 +02:00
Stavros Kois
c642ea6c18 bump 2022-12-06 18:31:23 +02:00
Stavros Kois
d1a1264af9 Update values.yaml 2022-12-06 18:30:46 +02:00
Stavros Kois
65a0cac1f9 Merge pull request #293 from truecharts/ts
chore(tailscale): update TS image
common-11.0.4
2022-11-29 09:33:54 +02:00
Stavros Kois
ea426f222e chore(tailscale): update TS image 2022-11-29 09:23:00 +02:00
Kjeld Schouten-Lebbing
af9fb48496 Fix mistakingly not referencing the secrets on cnpg common-11.0.3 2022-11-15 14:57:34 +01:00
Kjeld Schouten-Lebbing
5238500c61 no message common-11.0.2 2022-11-15 14:18:49 +01:00
Kjeld Schouten-Lebbing
bd6c74e33d fix(cnpg-common): ensure cnpg url's point to the correct pooler URLs (#289)
* fix(cnpg-common): ensure cnpg url's point to the correct pooler URLs

* some fixes
common-11.0.1
2022-11-15 13:28:01 +01:00
Kjeld Schouten-Lebbing
b8e7c61a88 feat(common): add CloudNative-PG support (#287)
* feat(common): add CloudNative-PG support

* improve cnpg support a tad

* no message

* more work

* add more work on CNPG

* enable cnpg install test

* allow RO pgbouncer connections as well

* some fixes

* mongodupe

* move to single-db setup

* whoops

* whoops 2

* no ro

* fix prepare

* enable install test

* storage

* fix some mistakes

* hmm

* hmm

* hmmm3

* serverside only when non-blocking is true

* change load order a tad

* test

* hmmm

* on again

* whoops

* fix encode

* no staging

* fix format try

* fix user

* no message

* remove - on comments everywhere

* remove crd updater in favor of manifest loader

* fix comments

* yeah...

* less -

* fix some spaces (#288)

* fix some spaces

* test

* remvoe nonblocking

* restore

* remove - from  comments

* manifets basci

* make sure using the right version

* hmm

* reset basic-val

* add toleration on scale only

* true -> on

* remove toleration

* re-add to basic val

* lower `n`

* reset helper chart Chart.yaml

* add required value

* trigger

* remove manifets from basic

* re-add manifets

* try forcing manifest installation

* oops

* add all crds to common crds folder

* whoops

* clean it out a tad

* full

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
common-11.0.0
2022-11-14 20:16:33 +01:00
Kjeld Schouten-Lebbing
0b751b3667 chore(common): remove promtail and netshoot addon completely (#286)
* chore(common): remove promtail and netshoot addon completely

* Delete netshoot_test.yaml
common-10.9.7
2022-11-12 13:40:55 +01:00
Kjeld Schouten-Lebbing
b47c6042c1 Update _apply.tpl 2022-11-12 12:20:55 +01:00
Kjeld Schouten-Lebbing
f9e61c5386 Delete charts/common/templates/addons/promtail directory 2022-11-12 12:20:23 +01:00
Kjeld Schouten-Lebbing
1acc83475c Delete charts/common/templates/addons/netshoot directory 2022-11-12 12:20:12 +01:00
Kjeld Schouten-Lebbing
edea2bf13b Update values.yaml 2022-11-12 12:19:51 +01:00
Kjeld Schouten-Lebbing
3f9ab438b0 Update values.yaml 2022-11-12 12:18:56 +01:00
TrueCharts-Bot
10bdabf9c5 Commit bumped App Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
common-10.9.6
2022-11-12 01:21:14 +01:00
TrueCharts-Admin
1615c27623 chore(deps): update container image tccr.io/truecharts/promtail to v2.7.0 2022-11-12 01:21:14 +01:00
TrueCharts-Bot
00fd2ec1a0 Commit bumped App Version
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
common-10.9.5
2022-11-09 07:06:00 +01:00
TrueCharts-Admin
8a28e9554c chore(deps): update container image tailscale/tailscale to v1.33.158 2022-11-09 07:06:00 +01:00