diff --git a/config/custom-environment-variables.json b/config/custom-environment-variables.json index e8986aa..7c3b8ac 100644 --- a/config/custom-environment-variables.json +++ b/config/custom-environment-variables.json @@ -96,6 +96,8 @@ "finalizeTaskType": "FINALIZE_TASK_TYPE", "ingestionUpdateJobType": "INGESTION_UPDATE_JOB_TYPE", "ingestionSwapUpdateJobType": "INGESTION_SWAP_UPDATE_JOB_TYPE", + "ingestionDeleteJobType": "INGESTION_DELETE_JOB_TYPE", + "deleteTaskType": "DELETE_TASK_TYPE", "supportedIngestionSwapTypes": { "__name": "SUPPORTED_INGESTION_SWAP_TYPES", "__format": "json" diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index 958a89f..856e4d1 100644 --- a/helm/templates/configmap.yaml +++ b/helm/templates/configmap.yaml @@ -36,8 +36,10 @@ data: INGESTION_NEW_JOB_TYPE: {{ $jobDefinitions.jobs.new.type | quote }} INGESTION_UPDATE_JOB_TYPE: {{ $jobDefinitions.jobs.update.type | quote }} INGESTION_SWAP_UPDATE_JOB_TYPE: {{ $jobDefinitions.jobs.swapUpdate.type | quote }} + INGESTION_DELETE_JOB_TYPE: {{ $jobDefinitions.jobs.deleteLayer.type | quote }} VALIDATION_TASK_TYPE: {{ $jobDefinitions.tasks.validation.type | quote }} FINALIZE_TASK_TYPE: {{ $jobDefinitions.tasks.finalize.type | quote }} + DELETE_TASK_TYPE: {{ $jobDefinitions.tasks.delete.type | quote }} CRS: {{ .Values.env.validationValuesByInfo.crs | toJson | quote}} FILE_FORMAT: {{ .Values.env.validationValuesByInfo.fileFormat | toJson | quote}} TILE_SIZE: {{ .Values.env.validationValuesByInfo.tileSize | quote}} diff --git a/helm/values.yaml b/helm/values.yaml index 6f261a4..d4bbaf2 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -55,11 +55,15 @@ jobDefinitions: type: "" swapUpdate: type: "" + deleteLayer: + type: "" tasks: validation: type: "" finalize: type: "" + delete: + type: "" storage: fs: