Skip to content

Commit

Permalink
feat(ps3netsrv): add ps3netsrv chart to catalog (#22774)
Browse files Browse the repository at this point in the history
**Description**
Added new PS3NetSrv chart.

This chart used to exist in the catalogue, but was dropped in early 2024
due to lack of maintenance.
⚒️ 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?**
helm lint and helm template were run with no errors.

**📃 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
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] 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.

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

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Signed-off-by: elendil95 <17616744+elendil95@users.noreply.github.com>
Signed-off-by: alfi0812 <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: alfi0812 <43101280+alfi0812@users.noreply.github.com>
  • Loading branch information
3 people committed Jun 2, 2024
1 parent dec98e9 commit 337e6f4
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 0 deletions.
32 changes: 32 additions & 0 deletions charts/incubator/ps3netsrv/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# OWNERS file for Kubernetes
OWNERS
# helm-docs templates
*.gotmpl
# docs folder
/docs
# icon
icon.png
icon.webp
icon-small.webp
6 changes: 6 additions & 0 deletions charts/incubator/ps3netsrv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Changelog
pagefind: false
---

## Ps3NetSrv
38 changes: 38 additions & 0 deletions charts/incubator/ps3netsrv/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
annotations:
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: games
truecharts.org/max_helm_version: "3.15"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: incubator
apiVersion: v2
appVersion: 1.29.1
dependencies:
- name: common
version: 23.0.11
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
description: Allows Multiman or Webman to stream and play game backups over the network.
home: https://truecharts.org/charts/incubator/ps3netsrv
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ps3netsrv.webp
keywords:
- ps3netsrv
- Game servers
- Network-Other
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: ps3netsrv
sources:
- https://github.com/aldostools/webMAN-MOD/tree/master/_Projects_/ps3netsrv
- https://github.com/truecharts/charts/tree/master/charts/incubator/ps3netsrv
- https://hub.docker.com/r/shawly/ps3netsrv
type: application
version: 0.0.1
3 changes: 3 additions & 0 deletions charts/incubator/ps3netsrv/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: README
---
Binary file added charts/incubator/ps3netsrv/icon.webp
Binary file not shown.
Binary file added charts/incubator/ps3netsrv/icon_small.webp
Binary file not shown.
5 changes: 5 additions & 0 deletions charts/incubator/ps3netsrv/templates/common.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}

{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}
24 changes: 24 additions & 0 deletions charts/incubator/ps3netsrv/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
image:
pullPolicy: IfNotPresent
repository: shawly/ps3netsrv
tag: v1.9.0@sha256:c6e344b636a74e4f034a74ce766cd859071f5e46a14a0a2895ac819e66db2107
securityContext:
container:
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 38008
targetPort: 38008
protocol: tcp

persistence:
games:
enabled: true
mountPath: /games
portal:
open:
enabled: true

0 comments on commit 337e6f4

Please sign in to comment.