Skip to content

Commit

Permalink
feat: Add VolSync support and move CNPG backup credentials on SCALE (#…
Browse files Browse the repository at this point in the history
…21443)

**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
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

**➕ App addition**

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

- [ ] 🖼️ 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._
  • Loading branch information
Kjeld Schouten committed Apr 29, 2024
1 parent b1bc7f1 commit 02e1038
Show file tree
Hide file tree
Showing 2,287 changed files with 6,421 additions and 4,121 deletions.
22 changes: 12 additions & 10 deletions .github/scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ fi

echo "Chart name: $curr_chart"

if [[ "$curr_chart" != "charts/premium/volsync" ]]; then

if [[ "$curr_chart" != "charts/system/prometheus-operator" ]]; then
echo "Installing prometheus-operator chart"
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install prometheus-operator chart"
exit 1
fi
echo "Done installing prometheus-operator chart"
fi

if [[ "$curr_chart" == "charts/premium/volsync" ]]; then
echo "Installing volumesnapshots chart"
helm install volumesnapshots oci://tccr.io/truecharts/volumesnapshots --namespace volumesnapshots --create-namespace --wait
if [[ "$?" != "0" ]]; then
Expand Down Expand Up @@ -41,15 +52,6 @@ if [[ "$curr_chart" == "charts/premium/clusterissuer" ]]; then
echo "Done installing cert-manager chart"
fi

if [[ "$curr_chart" != "charts/system/prometheus-operator" ]]; then
echo "Installing prometheus-operator chart"
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install prometheus-operator chart"
exit 1
fi
echo "Done installing prometheus-operator chart"
fi

if [[ "$curr_chart" != "charts/system/cloudnative-pg" ]]; then
echo "Installing cloudnative-pg chart"
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/atuin/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/atuin/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: system
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: 18.1.0
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/atuin.webp
keywords:
- atuin
- shell
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -34,4 +34,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/atuin
- https://ghcr.io/atuinsh/atuin
type: application
version: 2.5.18
version: 3.0.0
1 change: 1 addition & 0 deletions charts/incubator/atuin/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/flashpaper/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/flashpaper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Cloud
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: latest
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -27,7 +27,7 @@ keywords:
- Security
- Tools-Utilities
- Network-Web
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -39,4 +39,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/flashpaper
- https://ghcr.io/andrewpaglusch/flashpaper
type: application
version: 1.1.18
version: 2.0.0
1 change: 1 addition & 0 deletions charts/incubator/flashpaper/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}

Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/lyrion-music-server/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/lyrion-music-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: de
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -26,7 +26,7 @@ keywords:
- squeezebox
- audio
- streaming
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -37,4 +37,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/lyrion-music-server
- https://hub.docker.com/r/lmscommunity/lyrionmusicserver
type: application
version: 1.0.15
version: 2.0.0
1 change: 1 addition & 0 deletions charts/incubator/lyrion-music-server/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/peppermint/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/peppermint/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: helpdesk
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: latest
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/peppermint.webp
keywords:
- peppermint
- tickets
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -34,4 +34,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/peppermint
- https://hub.docker.com/r/pepperlabs/peppermint
type: application
version: 0.1.19
version: 1.0.0
1 change: 1 addition & 0 deletions charts/incubator/peppermint/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/sd-webui/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/sd-webui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: MachineLearning
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: latest
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -24,7 +24,7 @@ keywords:
- Whisper
- AI
- ML
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -35,4 +35,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/sd-webui-docker
- https://ghcr.io/neggles/sd-webui-docker
type: application
version: 0.1.18
version: 1.0.0
1 change: 1 addition & 0 deletions charts/incubator/sd-webui/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
portals: {}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/semaphore/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/semaphore/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: productivity
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: 2.9.70
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -24,7 +24,7 @@ keywords:
- ansible
- semaphore
- cicd
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -35,4 +35,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/semaphore
- https://hub.docker.com/r/semaphoreui/semaphore
type: application
version: 1.2.19
version: 2.0.0
1 change: 1 addition & 0 deletions charts/incubator/semaphore/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/slskd/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
10 changes: 5 additions & 5 deletions charts/incubator/slskd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.14"
Expand All @@ -10,7 +10,7 @@ apiVersion: v2
appVersion: 0.20.1
dependencies:
- name: common
version: 20.3.12
version: 22.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
Expand All @@ -24,7 +24,7 @@ keywords:
- slskd
- music
- soulseek
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
Expand All @@ -35,4 +35,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/slskd
- https://ghcr.io/slskd/slskd
type: application
version: 0.1.18
version: 1.0.0
1 change: 1 addition & 0 deletions charts/incubator/slskd/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ portals:
# Include{portalLink}
questions:
# Include{global}
# Include{credentials}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
Expand Down
2 changes: 2 additions & 0 deletions charts/incubator/teslamate/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ OWNERS
/docs
# icon
icon.png
icon.webp
icon-small.webp
Loading

0 comments on commit 02e1038

Please sign in to comment.