123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #!/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 = [
- 'hostNetwork', 'plexServiceTCP', 'updateStrategy', 'timezone', 'claimToken',
- 'environmentVariables', 'gpuConfiguration', 'enableResourceLimits', 'cpuLimit',
- 'memLimit', 'dnsConfig', 'extraAppVolumeMounts', 'appVolumeMounts', 'enablePlexPass'
- ]
- values.update({
- # Migrate Network
- 'plexNetwork': {
- 'webPort': values['plexServiceTCP']['port'],
- 'hostNetwork': values['hostNetwork'],
- },
- # 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 ID
- 'plexID': {
- # We didn't have exposed this on UI the default
- # set by the container is 1000, so we will use that
- # if the environmentVariables contains PLEX_UID/PLEX_GID use that
- 'user': next((e['value'] for e in values.get('environmentVariables', []) if e['name'] == 'PLEX_UID'), 1000),
- 'group': next((e['value'] for e in values.get('environmentVariables', []) if e['name'] == 'PLEX_GID'), 1000),
- },
- # Migrate Config
- 'TZ': values['timezone'],
- 'plexConfig': {
- 'imageSelector': 'plexPassImage' if values['enablePlexPass'] else 'image',
- 'claimToken': values['claimToken'],
- # Filter out the PLEX_UID and PLEX_GID
- 'additionalEnvs': [e for e in values.get('environmentVariables', []) if e['name'] not in ['PLEX_UID', 'PLEX_GID'] ],
- },
- 'plexGPU': values.get('gpuConfiguration', {}),
- # Migrate Storage
- 'plexStorage': {
- 'config': migrate_volume(values['appVolumeMounts']['config']),
- 'data': migrate_volume(values['appVolumeMounts']['data']),
- 'transcode': migrate_volume(values['appVolumeMounts']['transcode']),
- 'additionalStorages': [
- {
- 'type': 'hostPath',
- 'hostPathConfig': {'hostPath': e['hostPath']},
- 'mountPath': e['mountPath'],
- 'readOnly': e['readOnly'],
- }
- 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()))))
|