| garciadeblas | 96b94f5 | 2024-07-08 16:18:21 +0200 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 13 | # implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | ####################################################################################### |
| 17 | apiVersion: argoproj.io/v1alpha1 |
| 18 | kind: Workflow |
| 19 | metadata: |
| 20 | name: {{ workflow_name }} |
| 21 | spec: |
| 22 | arguments: |
| 23 | parameters: |
| 24 | # SW-Catalogs repo |
| 25 | - name: git_sw_catalogs_url |
| 26 | value: "{{ git_sw_catalogs_url }}" |
| 27 | - name: sw_catalogs_destination_folder |
| 28 | value: "/sw-catalogs/sw-catalogs-osm" |
| 29 | - name: git_sw_catalogs_cred_secret |
| 30 | value: sw-catalogs |
| 31 | # Specific parameters - OKA |
| 32 | - name: oka_name |
| 33 | value: "{{ oka_name }}" |
| 34 | ## Choose among `infra-controllers`, `infra-configs`, `cloud-resources`, `apps`: |
| 35 | - name: oka_type |
| 36 | value: "{{ oka_type }}" |
| 37 | - name: project_name |
| 38 | value: "{{ osm_project_name }}" |
| 39 | # Debug/dry run? |
| 40 | - name: debug |
| 41 | value: "{{ workflow_debug }}" |
| 42 | - name: dry_run |
| 43 | value: "{{ workflow_dry_run }}" |
| 44 | |
| 45 | # Cleanup policy |
| 46 | ttlStrategy: |
| 47 | secondsAfterCompletion: 600 # Time to live after workflow is completed, replaces ttlSecondsAfterFinished |
| 48 | secondsAfterSuccess: 600 # Time to live after workflow is successful |
| 49 | secondsAfterFailure: 900 # Time to live after workflow fails |
| 50 | |
| 51 | workflowTemplateRef: |
| 52 | name: full-delete-oka-wtf |