blob: 92b53f2fd560461a5a0faeb6e9b273438104ee1a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* License); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
task cancelStaleDataflowJobs(type: Exec) {
commandLine './stale_dataflow_jobs_cleaner.sh'
}
task removeStaleSDKContainerImages(type: Exec) {
commandLine './stale_dataflow_prebuilt_image_cleaner.sh'
}
task removeStaleBqDatasets(type: Exec) {
commandLine './stale_bq_datasets_cleaner.sh'
}
task removeStaleCbtInstances(type: Exec) {
commandLine './stale_cbt_instances_cleaner.sh'
}
task removeStaleK8sWorkload(type: Exec) {
commandLine './stale_k8s_workload_cleaner.sh'
}
task removeStaleSpannerResources(type: Exec) {
commandLine './stale_spanner_cleaner.sh'
}
task runStaleCleaner(type: Exec) {
commandLine 'bash', '-c', 'pip install -r requirements.txt && python3 stale_cleaner.py'
}
task cleanupOtherStaleResources {
// declared as finalizedBy dependency so that other task continue even if one dep task fails
finalizedBy tasks.removeStaleBqDatasets
finalizedBy tasks.removeStaleCbtInstances
finalizedBy tasks.removeStaleK8sWorkload
finalizedBy tasks.removeStaleSpannerResources
finalizedBy tasks.runStaleCleaner
}