mirror of
https://github.com/truenas/charts.git
synced 2026-04-05 11:48:55 +08:00
* netdata - migrate library * add caps * caps * ui and migration * clean extra values * add migration check * remove un-needed function
88 lines
2.5 KiB
Python
Executable File
88 lines
2.5 KiB
Python
Executable File
#!/usr/bin/python3
|
|
import json
|
|
import os
|
|
import sys
|
|
|
|
def migrate_volume(volume):
|
|
return {
|
|
'type': 'hostPath',
|
|
'hostPathConfig': {
|
|
'hostPath': volume['hostPath']
|
|
},
|
|
} if volume.get('hostPathEnabled', False) else {
|
|
'type': 'ixVolume',
|
|
'ixVolumeConfig': {
|
|
'datasetName': volume['datasetName'],
|
|
},
|
|
}
|
|
|
|
def migrate_common_lib(values):
|
|
delete_keys = [
|
|
'dnsConfig', 'environmentVariables', 'service', 'enableResourceLimits',
|
|
'memLimit', 'cpuLimit', 'extraAppVolumeMounts', 'appVolumeMounts',
|
|
'runAsGroup', 'runAsUser',
|
|
]
|
|
|
|
values.update({
|
|
# Migrate Network
|
|
'netdataNetwork': {
|
|
'webPort': values['service']['nodePort'],
|
|
},
|
|
# Migrate Resources
|
|
'resources': {
|
|
'limits': {
|
|
'cpu': values.get('cpuLimit', '4000m'),
|
|
'memory': values.get('memLimit', '8Gi'),
|
|
}
|
|
},
|
|
# Migrate DNS
|
|
'podOptions': {
|
|
'dnsConfig': {
|
|
'options': [
|
|
{'name': opt['name'], 'value': opt['value']}
|
|
for opt in values.get('dnsConfig', {}).get('options', [])
|
|
]
|
|
}
|
|
},
|
|
# Migrate Config
|
|
'netdataConfig': {
|
|
'additionalEnvs': values.get('environmentVariables', []),
|
|
},
|
|
# Migrate Storage
|
|
'netdataStorage': {
|
|
'config': migrate_volume(values['appVolumeMounts']['netdataconfig']),
|
|
'cache': migrate_volume(values['appVolumeMounts']['netdatacache']),
|
|
'lib': migrate_volume(values['appVolumeMounts']['netdatalib']),
|
|
'additionalStorages': [
|
|
{
|
|
'type': 'hostPath',
|
|
'hostPathConfig': {'hostPath': e['hostPath']},
|
|
'mountPath': e['mountPath'],
|
|
'readOnly': e.get('readOnly', False),
|
|
}
|
|
for e in values.get('extraAppVolumeMounts', [])
|
|
],
|
|
},
|
|
})
|
|
|
|
for k in delete_keys:
|
|
values.pop(k, None)
|
|
|
|
return values
|
|
|
|
def migrate(values):
|
|
# If this missing, we have already migrated
|
|
if not 'appVolumeMounts' in values.keys():
|
|
return values
|
|
|
|
return migrate_common_lib(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()))))
|