Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-24 18:37:43 +00:00
parent a566a0cd86
commit 7f8a0d0074
16 changed files with 354 additions and 22 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="snipe-it-2.0.2"></a>
### [snipe-it-2.0.2](https://github.com/truecharts/apps/compare/snipe-it-2.0.1...snipe-it-2.0.2) (2022-03-24)
#### Fix
* fix permissions and add more storage questions ([#2269](https://github.com/truecharts/apps/issues/2269))
<a name="snipe-it-2.0.1"></a>
### [snipe-it-2.0.1](https://github.com/truecharts/apps/compare/snipe-it-2.0.0...snipe-it-2.0.1) (2022-03-24)
@ -88,12 +97,3 @@
#### Chore
* update helm general non-major helm releases ([#1999](https://github.com/truecharts/apps/issues/1999))
<a name="snipe-it-0.0.40"></a>
### [snipe-it-0.0.40](https://github.com/truecharts/apps/compare/snipe-it-0.0.39...snipe-it-0.0.40) (2022-02-28)
#### Chore
* rename `web_portal` to `open` ([#1957](https://github.com/truecharts/apps/issues/1957))

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://truecharts.org
version: 2.0.6
digest: sha256:503702a5916981e92311b654a8297d1c1954b9e6a3af31da1dc024ba65637897
generated: "2022-03-24T15:11:43.889738327Z"
generated: "2022-03-24T18:32:35.046532267Z"

View File

@ -29,7 +29,7 @@ name: snipe-it
sources:
- https://snipeitapp.com/
- https://hub.docker.com/r/linuxserver/
version: 2.0.1
version: 2.0.2
annotations:
truecharts.org/catagories: |
- management

View File

@ -12,10 +12,8 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.API_TOKEN_EXPIRATION_YEARS | int | `40` | |
| env.APP_DEBUG | bool | `true` | |
| env.APP_ENV | string | `"production"` | |
| env.APP_LOCALE | string | `"en"` | |
| env.APP_LOG_LEVEL | string | `"debug"` | |
| env.APP_TIMEZONE | string | `"{{ .Values.TZ }}"` | |
| env.APP_URL | string | `"http://localhost:80"` | |
| env.COOKIE_NAME | string | `"snipeit_session"` | |
@ -32,7 +30,6 @@ You will, however, be able to use all values referenced in the common chart here
| env.MAX_RESULTS | int | `500` | |
| env.REDIS_PORT | string | `"6379"` | |
| env.SECURE_COOKIES | bool | `false` | |
| env.SESSION_DRIVER | string | `"redis"` | |
| env.SESSION_LIFETIME | int | `30` | |
| envValueFrom.APP_KEY.secretKeyRef.key | string | `"APP_KEY"` | |
| envValueFrom.APP_KEY.secretKeyRef.name | string | `"snipeit-secrets"` | |
@ -51,10 +48,14 @@ You will, however, be able to use all values referenced in the common chart here
| mariadb.existingSecret | string | `"mariadbcreds"` | |
| mariadb.mariadbDatabase | string | `"snipe-it"` | |
| mariadb.mariadbUsername | string | `"snipe-it"` | |
| persistence.backups.enabled | bool | `true` | |
| persistence.backups.mountPath | string | `"/var/lib/snipeit/dumps"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/var/lib/snipeit/data"` | |
| persistence.logs.enabled | bool | `true` | |
| persistence.logs.mountPath | string | `"/var/www/html/storage/logs"` | |
| podSecurityContext.fsGroup | int | `50` | |
| podSecurityContext.runAsGroup | int | `50` | |
| podSecurityContext.runAsGroup | int | `1000` | |
| podSecurityContext.runAsUser | int | `0` | |
| redis.enabled | bool | `true` | |
| redis.existingSecret | string | `"rediscreds"` | |

View File

@ -9,7 +9,7 @@ securityContext:
podSecurityContext:
runAsUser: 0
runAsGroup: 50
runAsGroup: 1000
fsGroup: 50
env:
@ -19,16 +19,15 @@ env:
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
DB_PORT: "3306"
REDIS_PORT: "6379"
SESSION_DRIVER: "redis"
APP_TIMEZONE: "{{ .Values.TZ }}"
FILESYSTEM_DISK: "local"
# User Defined
APP_DEBUG: true
APP_LOG_LEVEL: "debug"
APP_URL: "http://localhost:80"
APP_LOCALE: "en"
MAX_RESULTS: 500
IMAGE_LIB: "gd"
# APP_DEBUG: true
# APP_LOG_LEVEL: "debug"
# Session
SESSION_LIFETIME: 30
EXPIRE_ON_CLOSE: false
@ -73,6 +72,12 @@ persistence:
logs:
enabled: true
mountPath: "/var/www/html/storage/logs"
data:
enabled: true
mountPath: "/var/lib/snipeit/data"
backups:
enabled: true
mountPath: "/var/lib/snipeit/dumps"
mariadb:
enabled: true

View File

@ -1200,6 +1200,169 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: data
label: "App Data Storage"
description: "Stores the Application Data."
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
- variable: setPermissionsSimple
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: true
- variable: readOnly
label: "readOnly"
schema:
type: boolean
default: false
- variable: hostPathSimple
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
- variable: size
label: "Size quotum of storage"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "999Gi"
- variable: hostPathType
label: "(Advanced) hostPath Type"
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "DirectoryOrCreate"
description: "DirectoryOrCreate"
- value: "Directory"
description: "Directory"
- value: "FileOrCreate"
description: "FileOrCreate"
- value: "File"
description: "File"
- value: "Socket"
description: "Socket"
- value: "CharDevice"
description: "CharDevice"
- value: "BlockDevice"
description: "BlockDevice"
- variable: storageClass
label: "(Advanced) storageClass"
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "SCALE-ZFS"
- variable: accessMode
label: "(Advanced) Access Mode"
description: "Allow or disallow multiple PVC's writhing to the same PV"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "ReadWriteOnce"
enum:
- value: "ReadWriteOnce"
description: "ReadWriteOnce"
- value: "ReadOnlyMany"
description: "ReadOnlyMany"
- value: "ReadWriteMany"
description: "ReadWriteMany"
- variable: advanced
label: "Show Advanced Options"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: "Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: "Annotations"
schema:
type: list
default: []
items:
- variable: annotationItem
label: "Label"
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: logs
label: "App Logs Storage"
description: "Stores the Application Logs."
@ -1363,6 +1526,169 @@ questions:
label: "Value"
schema:
type: string
- variable: backups
label: "App Backups Storage"
description: "Stores the Application Backups."
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
- variable: setPermissionsSimple
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: true
- variable: readOnly
label: "readOnly"
schema:
type: boolean
default: false
- variable: hostPathSimple
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
- variable: size
label: "Size quotum of storage"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "999Gi"
- variable: hostPathType
label: "(Advanced) hostPath Type"
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "DirectoryOrCreate"
description: "DirectoryOrCreate"
- value: "Directory"
description: "Directory"
- value: "FileOrCreate"
description: "FileOrCreate"
- value: "File"
description: "File"
- value: "Socket"
description: "Socket"
- value: "CharDevice"
description: "CharDevice"
- value: "BlockDevice"
description: "BlockDevice"
- variable: storageClass
label: "(Advanced) storageClass"
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "SCALE-ZFS"
- variable: accessMode
label: "(Advanced) Access Mode"
description: "Allow or disallow multiple PVC's writhing to the same PV"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "ReadWriteOnce"
enum:
- value: "ReadWriteOnce"
description: "ReadWriteOnce"
- value: "ReadOnlyMany"
description: "ReadOnlyMany"
- value: "ReadWriteMany"
description: "ReadWriteMany"
- variable: advanced
label: "Show Advanced Options"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: "Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: "Annotations"
schema:
type: list
default: []
items:
- variable: annotationItem
label: "Label"
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: persistenceList
label: "Additional app storage"
group: "Storage and Persistence"
@ -2010,13 +2336,13 @@ questions:
description: The groupID this App of the user running the application"
schema:
type: int
default: 0
default: 1000
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
schema:
type: int
default: 568
default: 50
- variable: fsGroupChangePolicy
label: "When should we take ownership?"
schema:

View File

@ -443,7 +443,7 @@ hide:
| Package | Vulnerability | Severity | Installed Version | Fixed Version | Links |
|:----------------|:------------------:|:-----------:|:------------------:|:-------------:|-----------------------------------------|
| enshrined/svg-sanitize | CVE-2022-23638 | MEDIUM | 0.13.3 | 0.15.0 | <details><summary>Expand...</summary><a href="https://github.com/advisories/GHSA-fqx8-v33p-4qcc">https://github.com/advisories/GHSA-fqx8-v33p-4qcc</a><br><a href="https://github.com/darylldoyle/svg-sanitizer/commit/17e12ba9c2881caa6b167d0fbea555c11207fbb0">https://github.com/darylldoyle/svg-sanitizer/commit/17e12ba9c2881caa6b167d0fbea555c11207fbb0</a><br><a href="https://github.com/darylldoyle/svg-sanitizer/issues/71">https://github.com/darylldoyle/svg-sanitizer/issues/71</a><br><a href="https://github.com/darylldoyle/svg-sanitizer/security/advisories/GHSA-fqx8-v33p-4qcc">https://github.com/darylldoyle/svg-sanitizer/security/advisories/GHSA-fqx8-v33p-4qcc</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-23638">https://nvd.nist.gov/vuln/detail/CVE-2022-23638</a><br></details> |
| guzzlehttp/psr7 | CVE-2022-24775 | UNKNOWN | 1.8.2 | 2.1.1, 1.8.4 | <details><summary>Expand...</summary><a href="https://github.com/guzzle/psr7/pull/485/commits/e55afaa3fc138c89adf3b55a8ba20dc60d17f1f1">https://github.com/guzzle/psr7/pull/485/commits/e55afaa3fc138c89adf3b55a8ba20dc60d17f1f1</a><br><a href="https://github.com/guzzle/psr7/pull/486/commits/9a96d9db668b485361ed9de7b5bf1e54895df1dc">https://github.com/guzzle/psr7/pull/486/commits/9a96d9db668b485361ed9de7b5bf1e54895df1dc</a><br><a href="https://github.com/guzzle/psr7/security/advisories/GHSA-q7rv-6hp3-vh96">https://github.com/guzzle/psr7/security/advisories/GHSA-q7rv-6hp3-vh96</a><br><a href="https://www.drupal.org/sa-core-2022-006">https://www.drupal.org/sa-core-2022-006</a><br></details> |
| guzzlehttp/psr7 | CVE-2022-24775 | UNKNOWN | 1.8.2 | 1.8.4, 2.1.1 | <details><summary>Expand...</summary><a href="https://github.com/guzzle/psr7/pull/485/commits/e55afaa3fc138c89adf3b55a8ba20dc60d17f1f1">https://github.com/guzzle/psr7/pull/485/commits/e55afaa3fc138c89adf3b55a8ba20dc60d17f1f1</a><br><a href="https://github.com/guzzle/psr7/pull/486/commits/9a96d9db668b485361ed9de7b5bf1e54895df1dc">https://github.com/guzzle/psr7/pull/486/commits/9a96d9db668b485361ed9de7b5bf1e54895df1dc</a><br><a href="https://github.com/guzzle/psr7/security/advisories/GHSA-q7rv-6hp3-vh96">https://github.com/guzzle/psr7/security/advisories/GHSA-q7rv-6hp3-vh96</a><br><a href="https://www.drupal.org/sa-core-2022-006">https://www.drupal.org/sa-core-2022-006</a><br></details> |
| laravel/framework | CVE-2021-43808 | MEDIUM | v6.20.29 | 6.20.42, 7.30.6, 8.75.0 | <details><summary>Expand...</summary><a href="https://github.com/advisories/GHSA-66hf-2p6w-jqfw">https://github.com/advisories/GHSA-66hf-2p6w-jqfw</a><br><a href="https://github.com/laravel/framework/commit/b8174169b1807f36de1837751599e2828ceddb9b">https://github.com/laravel/framework/commit/b8174169b1807f36de1837751599e2828ceddb9b</a><br><a href="https://github.com/laravel/framework/pull/39906">https://github.com/laravel/framework/pull/39906</a><br><a href="https://github.com/laravel/framework/pull/39908">https://github.com/laravel/framework/pull/39908</a><br><a href="https://github.com/laravel/framework/pull/39909">https://github.com/laravel/framework/pull/39909</a><br><a href="https://github.com/laravel/framework/releases/tag/v6.20.42">https://github.com/laravel/framework/releases/tag/v6.20.42</a><br><a href="https://github.com/laravel/framework/releases/tag/v7.30.6">https://github.com/laravel/framework/releases/tag/v7.30.6</a><br><a href="https://github.com/laravel/framework/releases/tag/v8.75.0">https://github.com/laravel/framework/releases/tag/v8.75.0</a><br><a href="https://github.com/laravel/framework/security/advisories/GHSA-66hf-2p6w-jqfw">https://github.com/laravel/framework/security/advisories/GHSA-66hf-2p6w-jqfw</a><br></details> |
| lcobucci/jwt | CVE-2021-41106 | MEDIUM | 3.4.5 | 3.4.6, 4.0.4, 4.1.5 | <details><summary>Expand...</summary><a href="https://github.com/advisories/GHSA-7322-jrq4-x5hf">https://github.com/advisories/GHSA-7322-jrq4-x5hf</a><br><a href="https://github.com/lcobucci/jwt/commit/8175de5b841fbe3fd97d2d49b3fc15c4ecb39a73">https://github.com/lcobucci/jwt/commit/8175de5b841fbe3fd97d2d49b3fc15c4ecb39a73</a><br><a href="https://github.com/lcobucci/jwt/commit/c45bb8b961a8e742d8f6b88ef5ff1bd5cca5d01c">https://github.com/lcobucci/jwt/commit/c45bb8b961a8e742d8f6b88ef5ff1bd5cca5d01c</a><br><a href="https://github.com/lcobucci/jwt/security/advisories/GHSA-7322-jrq4-x5hf">https://github.com/lcobucci/jwt/security/advisories/GHSA-7322-jrq4-x5hf</a><br><a href="https://nvd.nist.gov/vuln/detail/CVE-2021-41106">https://nvd.nist.gov/vuln/detail/CVE-2021-41106</a><br></details> |