Merge pull request #519 from truenas/NAS-116507

NAS-116507 / 22.12 / Add host path validations for applications
This commit is contained in:
M. Rehan
2022-06-16 18:00:11 +05:00
committed by GitHub
565 changed files with 246 additions and 43 deletions

View File

@@ -15,4 +15,4 @@ name: chia
sources:
- https://github.com/Chia-Network/chia-blockchain
- https://github.com/orgs/chia-network/packages/container/package/chia
version: 1.3.27
version: 1.3.28

Binary file not shown.

View File

@@ -1,3 +1,4 @@
{{ include "common.storage.hostPathValidate" .Values }}
apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:

View File

@@ -1 +1 @@
{"filename": "ix_values.yaml", "keys": ["image"]}
{"filename": "ix_values.yaml", "keys": ["image"], "test_filename": "test_values.yaml"}

View File

@@ -16,4 +16,4 @@ name: collabora
sources:
- https://github.com/CollaboraOnline/online.git
- https://hub.docker.com/r/collabora/code
version: 1.2.2
version: 1.2.3

Binary file not shown.

View File

@@ -1,3 +1,4 @@
{{ include "common.storage.hostPathValidate" .Values }}
apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:

View File

@@ -0,0 +1 @@
{"filename": "ix_values.yaml", "keys": ["image"], "test_filename": "test_values.yaml"}

View File

@@ -0,0 +1,26 @@
#!/usr/bin/python3
import json
import sys
from catalog_update.upgrade_strategy import semantic_versioning
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
version = semantic_versioning(sorted(image_tags[key], reverse=True))
if not version:
return {}
return {
'tags': {key: version},
'app_version': version,
}
if __name__ == '__main__':
try:
versions_json = json.loads(sys.stdin.read())
except ValueError:
raise ValueError('Invalid json specified')
print(json.dumps(newer_mapping(versions_json)))

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0
digest: sha256:47115d9b91afe42c8537dcf0fd8224f2f7d1c775f9ff860efa68a6b57d17d1c0
generated: "2022-06-14T16:04:57.912820777+05:00"

View File

@@ -3,7 +3,7 @@ appVersion: "2.0.1"
icon: http://www.diskoverdata.com/wp-content/uploads/2019/09/diskover.png
description: Diskover is used to monitor size/volumes of distributed dataset.
name: diskoverdata
version: 1.0.0
version: 1.0.1
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0

Binary file not shown.

View File

@@ -1,3 +1,4 @@
{{ include "common.storage.hostPathValidate" .Values }}
{{ $elastic_search := (. | mustDeepCopy) }}
{{ $_ := set $elastic_search "common" (dict "nameSuffix" "elasticsearch") }}

View File

@@ -13,4 +13,4 @@ keywords:
name: emby
sources:
- https://hub.docker.com/r/emby/embyserver
version: 1.0.3
version: 1.0.4

Binary file not shown.

View File

@@ -1,4 +1,4 @@
image:
pullPolicy: IfNotPresent
repository: emby/embyserver
tag: 4.8.0.0
tag: 4.7.2.0

View File

@@ -1,3 +1,4 @@
{{ include "common.storage.hostPathValidate" .Values }}
{{ include "common.deployment.common_config" . | nindent 0 }}
spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
template: {{ include "common.deployment.pod.metadata" . | nindent 4 }}

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: file://../../../library/common/2112.0.0
version: 2112.0.0
digest: sha256:47115d9b91afe42c8537dcf0fd8224f2f7d1c775f9ff860efa68a6b57d17d1c0
generated: "2022-06-14T16:04:57.688006166+05:00"

View File

@@ -12,4 +12,4 @@ keywords:
name: home-assistant
sources:
- https://github.com/home-assistant/home-assistant
version: 1.0.7
version: 1.0.8

Binary file not shown.

View File

@@ -1,3 +1,4 @@
{{ include "common.storage.hostPathValidate" .Values }}
{{ $postgres_values := (. | mustDeepCopy) }}
{{ $_ := set $postgres_values "common" (dict "nameSuffix" "postgres") }}

View File

@@ -15,4 +15,4 @@ sources:
- https://github.com/ipfs/go-ipfs
- https://hub.docker.com/r/ipfs/go-ipfs
upstream_version: 0.8.0-rc1
version: 1.2.2
version: 1.2.3

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More