feat(rar2fs) add rar2fs (#15296)

**Description**
FUSE file system for reading RAR archives
⚒️ 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:**

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

** 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.
- [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._
This commit is contained in:
Xstar97TheNoob
2023-11-23 18:08:59 -05:00
committed by GitHub
parent 329d84be44
commit 19351cff1a
9 changed files with 179 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# 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
+1
View File
@@ -0,0 +1 @@
# Changelog
+28
View File
@@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "latest"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
deprecated: false
description: FUSE file system for reading RAR archives.
home: https://truecharts.org/charts/incubator/rar2fs
icon: https://truecharts.org/img/hotlink-ok/chart-icons/rar2fs.png
keywords:
- rar2fs
- archives
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: rar2fs
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/rar2fs
- https://ghcr.io/zimme/rar2fs
- https://github.com/zimme/docker-rar2fs
type: application
version: 0.0.1
annotations:
truecharts.org/category: archives
truecharts.org/SCALE-support: "true"
+1
View File
@@ -0,0 +1 @@
# README
Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

+67
View File
@@ -0,0 +1,67 @@
# Include{groups}
portals: {}
questions:
# Include{global}
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
# Include{containerBasic}
# Include{containerAdvanced}
# Include{containerConfig}
# Include{podOptions}
# Include{serviceExpertRoot}
# Include{serviceExpert}
# Include{serviceList}
# Include{persistenceRoot}
- variable: source
label: "App Source Storage"
description: "Stores the Application Source."
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: destination
label: "App Destination Storage"
description: "Stores the Application Destination."
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceList}
# Include{securityContextRoot}
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"
schema:
type: int
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID of the user running the application"
schema:
type: int
default: 0
# Include{securityContextContainer}
# Include{securityContextAdvanced}
# Include{securityContextPod}
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
schema:
type: int
default: 568
# Include{resources}
# Include{advanced}
# Include{addons}
# Include{codeserver}
# Include{netshoot}
# Include{vpn}
# Include{documentation}
@@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}
@@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}
+50
View File
@@ -0,0 +1,50 @@
image:
repository: ghcr.io/zimme/rar2fs
pullPolicy: IfNotPresent
tag: latest@sha256:8a8756c0452a7ce68654ac46d80c88fb00ae76b4c7f4773a17c05bc4d7f78807
securityContext:
container:
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
capabilities:
add:
- MKNOD
- SYS_ADMIN
service:
main:
enabled: false
ports:
main:
enabled: false
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
persistence:
source:
enabled: true
mountPath: "/source"
destination:
enabled: true
mountPath: "/destination"
fuse:
enabled: true
type: device
hostPath: /dev/fuse
portal:
open:
enabled: false