Update catalog information

This commit is contained in:
sonicaj
2023-04-04 14:36:31 +00:00
parent 30be52a860
commit 3d9794fe21
18 changed files with 19 additions and 70 deletions

View File

@@ -169,25 +169,6 @@
"title": "Collabora",
"icon_url": "https://avatars.githubusercontent.com/u/22418908?s=200&v=4"
},
"qbittorent": {
"app_readme": "<h1>Qbittorent</h1>\n<p><a href=\"https://qbittorrent.com/\">qbittorent</a> is a utorrent downloading client.</p>",
"categories": [
"media",
"torrent"
],
"description": "Download data from qbittorent.",
"healthy": true,
"healthy_error": null,
"location": "/__w/charts/charts/charts/qbittorent",
"latest_version": "1.0.11",
"latest_app_version": "4.5.2",
"latest_human_version": "4.5.2_1.0.11",
"last_update": "2023-02-28 16:37:54",
"name": "qbittorent",
"recommended": false,
"title": "Qbittorent",
"icon_url": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/qbittorrent-icon.png"
},
"storj": {
"app_readme": "<h1>storj</h1>\n<p><a href=\"https://www.storj.io/\">storj</a> share your extra storage and earn money</p>",
"categories": [
@@ -300,7 +281,7 @@
"latest_version": "1.0.0",
"latest_app_version": "1.27.0",
"latest_human_version": "1.27.0_1.0.0",
"last_update": null,
"last_update": "2023-04-04 06:53:15",
"name": "vaultwarden",
"recommended": false,
"title": "Vaultwarden",
@@ -338,10 +319,10 @@
"healthy": true,
"healthy_error": null,
"location": "/__w/charts/charts/community/qbittorrent",
"latest_version": "1.0.0",
"latest_version": "1.0.1",
"latest_app_version": "4.5.2",
"latest_human_version": "4.5.2_1.0.0",
"last_update": null,
"latest_human_version": "4.5.2_1.0.1",
"last_update": "2023-04-04 06:53:15",
"name": "qbittorrent",
"recommended": false,
"title": "qBittorrent",

View File

@@ -1,6 +0,0 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.0.1
digest: sha256:ec8784f128039af68613a8268208bde360d5b178f811c4a16c79a1650ca8be92
generated: "2023-04-03T17:54:32.688255209+03:00"

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.0.2
digest: sha256:c6d163d47f4544126093e26c4f13a6f5a35feeaa594df31459e9fb31dcb2c938
generated: "2023-04-04T07:09:23.956314889Z"

View File

@@ -3,7 +3,7 @@ description: The qBittorrent project aims to provide an open-source software alt
annotations:
title: qBittorrent
type: application
version: 1.0.0
version: 1.0.1
apiVersion: v2
appVersion: '4.5.2'
kubeVersion: '>=1.16.0-0'
@@ -13,7 +13,7 @@ maintainers:
dependencies:
- name: common
repository: file://../../../common
version: 1.0.1
version: 1.0.2
home: https://www.qbittorrent.org/
icon: https://upload.wikimedia.org/wikipedia/commons/9/9e/Qbittorrent_logo.png
sources:

Binary file not shown.

View File

@@ -40,43 +40,11 @@ workload:
port: "{{ .Values.qbitNetwork.webPort }}"
path: /
initContainers:
check-permissions:
enabled: true
type: init
imageSelector: bashImage
resources:
limits:
cpu: 1000m
memory: 512Mi
securityContext:
runAsUser: 0
runAsGroup: 0
runAsNonRoot: false
readOnlyRootFilesystem: false
capabilities:
add:
- CHOWN
command: bash
args:
- -c
- |
for dir in /mnt/directories/*; do
if [ ! -d "$dir" ]; then
echo "[$dir] is not a directory, skipping"
continue
fi
if [ $(stat -c %u "$dir") -eq {{ .Values.qbitRunAs.user }} ] && [ $(stat -c %g "$dir") -eq {{ .Values.qbitRunAs.group }} ]; then
echo "Permissions on ["$dir"] are correct"
else
echo "Permissions on ["$dir"] are incorrect"
echo "Changing ownership to {{ .Values.qbitRunAs.user }}:{{ .Values.qbitRunAs.group }} on the following directories: ["$dir"]"
chown -R {{ .Values.qbitRunAs.user }}:{{ .Values.qbitRunAs.group }} "$dir"
echo "Finished changing ownership"
echo "Permissions after changing ownership:"
stat -c "%u %g" "$dir"
fi
done
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
"UID" .Values.qbitRunAs.user
"GID" .Values.qbitRunAs.group
"mode" "check"
"type" "init") | nindent 8 }}
{{/* Service */}}
service:
@@ -122,7 +90,7 @@ persistence:
qbittorrent:
qbittorrent:
mountPath: /config
check-permissions:
01-permissions:
mountPath: /mnt/directories/config
downloads:
enabled: true
@@ -133,6 +101,6 @@ persistence:
qbittorrent:
qbittorrent:
mountPath: /downloads
check-permissions:
01-permissions:
mountPath: /mnt/directories/downloads
{{- end -}}