Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/mas/devops/templates/pipelinerun-backup.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ spec:
# Backup Configuration
- name: backup_version
value: "{{ backup_version }}"
{% if clean_backup is defined and clean_backup != "" %}
- name: clean_backup
value: "{{ clean_backup }}"
{% endif %}

# Component Flags
{% if include_sls is defined and include_sls != "" %}
Expand Down
4 changes: 4 additions & 0 deletions src/mas/devops/templates/pipelinerun-restore.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ spec:
# Restore Configuration
- name: restore_version
value: "{{ restore_version }}"
{% if clean_backup is defined and clean_backup != "" %}
- name: clean_backup
value: "{{ clean_backup }}"
{% endif %}

# Component Flags
{% if include_mongo is defined and include_mongo != "" %}
Expand Down
Loading