Publish new changes in catalog

This commit is contained in:
sonicaj
2023-07-15 19:21:13 +00:00
parent 4263eedaa7
commit e79a66c68b
213 changed files with 63 additions and 22 deletions

View File

@@ -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'

View File

@@ -22,7 +22,7 @@ esRunAs:
esNetwork:
httpPort: 30003
hostNetwork: false
certificateID: ''
certificateID: null
esStorage:
data:

View File

@@ -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'

View File

@@ -13,7 +13,7 @@ filebrowserConfig:
filebrowserNetwork:
webPort: 30044
certificateID: 0
certificateID: null
hostNetwork: false
filebrowserRunAs:

View File

@@ -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'

View File

@@ -14,7 +14,7 @@ giteaConfig:
giteaNetwork:
webPort: 30008
sshPort: 30009
certificateID: ""
certificateID: null
rootURL: ""
hostNetwork: false

View File

@@ -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'

View File

@@ -15,7 +15,7 @@ grafanaConfig:
grafanaNetwork:
hostNetwork: false
webPort: 30037
certificateID: 0
certificateID: null
rootURL: ''
grafanaRunAs:

View File

@@ -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'

View File

@@ -15,7 +15,7 @@ jenkinsConfig:
jenkinsNetwork:
webPort: 30036
https: false
certificateID: 0
certificateID: null
agent: false
agentPort: 50000
hostNetwork: false

View File

@@ -126,6 +126,7 @@ questions:
description: The certificate to use for HTTPS.
schema:
type: int
"null": true
$ref:
- "definitions/certificate"
- variable: agent

View File

@@ -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'

View File

@@ -21,7 +21,7 @@ mineosNetwork:
mineosPortRangeStart: 30016
mineosPortRangeEnd: 30017
useHTTPS: false
certificateID: 0
certificateID: null
mineosStorage:
data:
type: ixVolume

View 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