mirror of
https://github.com/truenas/charts.git
synced 2026-04-05 03:39:20 +08:00
Publish new changes in catalog
This commit is contained in:
@@ -3,7 +3,7 @@ description: Elasticsearch is the distributed, RESTful search and analytics engi
|
||||
annotations:
|
||||
title: Elastic Search
|
||||
type: application
|
||||
version: 1.0.15
|
||||
version: 1.0.16
|
||||
apiVersion: v2
|
||||
appVersion: 8.8.2
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -22,7 +22,7 @@ esRunAs:
|
||||
esNetwork:
|
||||
httpPort: 30003
|
||||
hostNetwork: false
|
||||
certificateID: ''
|
||||
certificateID: null
|
||||
|
||||
esStorage:
|
||||
data:
|
||||
@@ -3,7 +3,7 @@ description: File Browser provides a file managing interface within a specified
|
||||
annotations:
|
||||
title: File Browser
|
||||
type: application
|
||||
version: 1.0.4
|
||||
version: 1.0.5
|
||||
apiVersion: v2
|
||||
appVersion: 'v2.23.0'
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -13,7 +13,7 @@ filebrowserConfig:
|
||||
|
||||
filebrowserNetwork:
|
||||
webPort: 30044
|
||||
certificateID: 0
|
||||
certificateID: null
|
||||
hostNetwork: false
|
||||
|
||||
filebrowserRunAs:
|
||||
@@ -3,7 +3,7 @@ description: Gitea - Git with a cup of tea
|
||||
annotations:
|
||||
title: Gitea
|
||||
type: application
|
||||
version: 1.0.12
|
||||
version: 1.0.13
|
||||
apiVersion: v2
|
||||
appVersion: '1.19.0'
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -14,7 +14,7 @@ giteaConfig:
|
||||
giteaNetwork:
|
||||
webPort: 30008
|
||||
sshPort: 30009
|
||||
certificateID: ""
|
||||
certificateID: null
|
||||
rootURL: ""
|
||||
hostNetwork: false
|
||||
|
||||
@@ -4,7 +4,7 @@ description: Grafana is the open source analytics & monitoring solution for ever
|
||||
annotations:
|
||||
title: Grafana
|
||||
type: application
|
||||
version: 1.0.7
|
||||
version: 1.0.8
|
||||
apiVersion: v2
|
||||
appVersion: 10.0.2
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -15,7 +15,7 @@ grafanaConfig:
|
||||
grafanaNetwork:
|
||||
hostNetwork: false
|
||||
webPort: 30037
|
||||
certificateID: 0
|
||||
certificateID: null
|
||||
rootURL: ''
|
||||
|
||||
grafanaRunAs:
|
||||
@@ -3,7 +3,7 @@ description: Jenkins is a leading open source automation server,
|
||||
annotations:
|
||||
title: Jenkins
|
||||
type: application
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
apiVersion: v2
|
||||
appVersion: 2.401.2
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -15,7 +15,7 @@ jenkinsConfig:
|
||||
jenkinsNetwork:
|
||||
webPort: 30036
|
||||
https: false
|
||||
certificateID: 0
|
||||
certificateID: null
|
||||
agent: false
|
||||
agentPort: 50000
|
||||
hostNetwork: false
|
||||
@@ -126,6 +126,7 @@ questions:
|
||||
description: The certificate to use for HTTPS.
|
||||
schema:
|
||||
type: int
|
||||
"null": true
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
- variable: agent
|
||||
@@ -3,7 +3,7 @@ description: MineOS is a server front-end to ease managing Minecraft administrat
|
||||
annotations:
|
||||
title: MineOS
|
||||
type: application
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
apiVersion: v2
|
||||
appVersion: 'latest'
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -21,7 +21,7 @@ mineosNetwork:
|
||||
mineosPortRangeStart: 30016
|
||||
mineosPortRangeEnd: 30017
|
||||
useHTTPS: false
|
||||
certificateID: 0
|
||||
certificateID: null
|
||||
mineosStorage:
|
||||
data:
|
||||
type: ixVolume
|
||||
20
community/mineos/1.0.7/migrations/migrate
Executable file
20
community/mineos/1.0.7/migrations/migrate
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/python3
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
def migrate(values):
|
||||
if values.get('mineosNetwork', {}).get('certificateID', {}) == 0:
|
||||
values['mineosNetwork']['certificateID'] = None
|
||||
|
||||
return values
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) != 2:
|
||||
exit(1)
|
||||
|
||||
if os.path.exists(sys.argv[1]):
|
||||
with open(sys.argv[1], 'r') as f:
|
||||
print(json.dumps(migrate(json.loads(f.read()))))
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user