Unverified Commit 0c98ad15 authored by Waqar Ahmed's avatar Waqar Ahmed Committed by GitHub

Merge pull request #79 from truenas/test-train-update

Update test train catalog items
parents bbc5fa98 54337743
apiVersion: v1 apiVersion: v1
appVersion: 1.1.7
dependencies:
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
description: Global, Versioned, peer-to-peer filesystem. description: Global, Versioned, peer-to-peer filesystem.
name: chia home: https://www.chia.net/
version: 1.2.1 icon: https://www.chia.net/img/chia_logo.svg
appVersion: 1.1.4
keywords: keywords:
- storage - storage
- crypto - crypto
- blockchain - blockchain
home: https://www.chia.net/ name: chia
icon: https://www.chia.net/img/chia_logo.svg
sources: sources:
- https://github.com/Chia-Network/chia-blockchain - https://github.com/Chia-Network/chia-blockchain
- https://github.com/orgs/chia-network/packages/container/package/chia - https://github.com/orgs/chia-network/packages/container/package/chia
dependencies: version: 1.2.2
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
image: image:
repository: ghcr.io/chia-network/chia
tag: 1.1.4
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: ghcr.io/chia-network/chia
tag: 1.1.7
updateStrategy: Recreate updateStrategy: Recreate
image: image:
repository: ghcr.io/chia-network/chia repository: ghcr.io/chia-network/chia
tag: 1.1.4 tag: 1.1.7
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
updateStrategy: Recreate updateStrategy: Recreate
......
{"filename": "ix_values.yaml", "keys": ["image"]}
#!/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(image_tags[key])
if not version:
return {}
return {
'tags': {key: version},
'app_version': version,
}
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
print(json.dumps(newer_mapping(json.loads(sys.argv[1]))))
apiVersion: v1 apiVersion: v1
appVersion: v0.9.0
dependencies:
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
description: Global, Versioned, peer-to-peer filesystem. description: Global, Versioned, peer-to-peer filesystem.
name: ipfs home: https://ipfs.io
version: 1.1.0 icon: https://ipfs.io/ipfs/QmVk7srrwahXLNmcDYvyUEJptyoxpndnRa57YJ11L4jV26/ipfs.go.png
appVersion: v0.8.0
keywords: keywords:
- storage - storage
- p2p - p2p
home: https://ipfs.io name: ipfs
icon: https://ipfs.io/ipfs/QmVk7srrwahXLNmcDYvyUEJptyoxpndnRa57YJ11L4jV26/ipfs.go.png
sources: sources:
- https://github.com/ipfs/go-ipfs - https://github.com/ipfs/go-ipfs
- https://hub.docker.com/r/ipfs/go-ipfs - https://hub.docker.com/r/ipfs/go-ipfs
upstream_version: 0.8.0-rc1 upstream_version: 0.8.0-rc1
dependencies: version: 1.1.1
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
image: image:
repository: ipfs/go-ipfs
tag: v0.8.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: ipfs/go-ipfs
tag: v0.9.0
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## ##
image: image:
repository: ipfs/go-ipfs repository: ipfs/go-ipfs
tag: v0.8.0 tag: v0.9.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
## Additional arguments to pass to minio binary ## Additional arguments to pass to minio binary
......
{"filename": "ix_values.yaml", "keys": ["image"]}
#!/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(image_tags[key])
if not version:
return {}
return {
'tags': {key: f'v{version}'},
'app_version': f'v{version}',
}
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
print(json.dumps(newer_mapping(json.loads(sys.argv[1]))))
apiVersion: v1 apiVersion: v1
appVersion: '2021-06-17'
dependencies:
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
description: High Performance, Kubernetes Native Object Storage description: High Performance, Kubernetes Native Object Storage
name: minio home: https://min.io
version: 1.3.0 icon: https://min.io/resources/img/logo/MINIO_wordmark.png
appVersion: RELEASE.2021-02-19T04-38-02Z
keywords: keywords:
- storage - storage
- object-storage - object-storage
- S3 - S3
home: https://min.io name: minio
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
sources: sources:
- https://github.com/minio/minio - https://github.com/minio/minio
- https://github.com/minio/charts - https://github.com/minio/charts
upstream_version: 8.0.5 upstream_version: 8.0.5
dependencies: version: 1.3.1
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
image: image:
repository: minio/minio
tag: RELEASE.2021-02-19T04-38-02Z
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: minio/minio
tag: RELEASE.2021-06-17T00-10-46Z
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## ##
image: image:
repository: minio/minio repository: minio/minio
tag: RELEASE.2021-02-19T04-38-02Z tag: RELEASE.2021-06-17T00-10-46Z
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
## Additional arguments to pass to minio binary ## Additional arguments to pass to minio binary
......
{"filename": "ix_values.yaml", "keys": ["image"]}
#!/usr/bin/python3
import json
import sys
from catalog_update.upgrade_strategy import datetime_versioning
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.strip('RELEASE.'): t for t in image_tags[key] if t.startswith('RELEASE.') and t.endswith('Z')}
version = datetime_versioning(list(tags), '%Y-%m-%dT%H-%M-%SZ')
if not version:
return {}
return {
'tags': {key: tags[version]},
'app_version': version.split('T')[0],
}
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
print(json.dumps(newer_mapping(json.loads(sys.argv[1]))))
apiVersion: v2 apiVersion: v2
name: nextcloud name: nextcloud
version: 1.3.0 version: 1.3.0
appVersion: 20.0.7 appVersion: 21.0.2
description: A file sharing server that puts the control and security of your own data back into your hands. description: A file sharing server that puts the control and security of your own data back into your hands.
keywords: keywords:
- nextcloud - nextcloud
......
image: image:
repository: nextcloud repository: nextcloud
tag: 20.0.7 tag: 21.0.2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
## ##
image: image:
repository: nextcloud repository: nextcloud
tag: 19.0.3-apache tag: 21.0.2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
nextcloud: nextcloud:
......
{"filename": "ix_values.yaml", "keys": ["image"]}
#!/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(image_tags[key])
if not version:
return {}
return {
'tags': {key: version},
'app_version': version,
}
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
print(json.dumps(newer_mapping(json.loads(sys.argv[1]))))
apiVersion: v2 apiVersion: v2
appVersion: 1.21.3.4046-3c1c83ba4 appVersion: 1.23.3.4707
dependencies:
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
description: Plex Media Server description: Plex Media Server
name: plex
version: 1.6.1
keywords:
- plex
home: https://plex.tv/ home: https://plex.tv/
icon: https://www.plex.tv/wp-content/uploads/2018/01/pmp-icon-1.png icon: https://www.plex.tv/wp-content/uploads/2018/01/pmp-icon-1.png
keywords:
- plex
name: plex
sources: sources:
- https://hub.docker.com/r/plexinc/pms-docker/ - https://hub.docker.com/r/plexinc/pms-docker/
- https://github.com/k8s-at-home/charts/tree/master/charts/plex - https://github.com/k8s-at-home/charts/tree/master/charts/plex
upstream_version: 2.1.0 upstream_version: 2.1.0
dependencies: version: 1.6.2
- name: common
repository: file://../../../library/common/2105.0.0
version: 2105.0.0
image: image:
repository: plexinc/pms-docker
tag: 1.21.3.4046-3c1c83ba4
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: plexinc/pms-docker
tag: 1.23.3.4707-ebb5fe9f3
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
image: image:
repository: plexinc/pms-docker repository: plexinc/pms-docker
tag: 1.20.2.3402-0fec14d92 tag: 1.23.3.4707-ebb5fe9f3
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
##### START --> Official PLEX container environment variables ##### START --> Official PLEX container environment variables
......
{"filename": "ix_values.yaml", "keys": ["image"]}
#!/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]
tags = {t.rsplit('-', 1)[0]: t for t in image_tags[key]}
version = semantic_versioning(list(tags))
if not version:
return {}
return {
'tags': {key: tags[version]},
'app_version': version,
}
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
print(json.dumps(newer_mapping(json.loads(sys.argv[1]))))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment