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
5 changes: 0 additions & 5 deletions src/mas/devops/tekton.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,11 +357,9 @@ def launchUpgradePipeline(dynClient: DynamicClient,
def launchUninstallPipeline(dynClient: DynamicClient,
instanceId: str,
droNamespace: str,
certManagerProvider: str = "redhat",
uninstallCertManager: bool = False,
uninstallGrafana: bool = False,
uninstallCatalog: bool = False,
uninstallCommonServices: bool = False,
uninstallDRO: bool = False,
uninstallMongoDb: bool = False,
uninstallSLS: bool = False) -> str:
Expand All @@ -380,7 +378,6 @@ def launchUninstallPipeline(dynClient: DynamicClient,

grafanaAction = "uninstall" if uninstallGrafana else "none"
certManagerAction = "uninstall" if uninstallCertManager else "none"
commonServicesAction = "uninstall" if uninstallCommonServices else "none"
ibmCatalogAction = "uninstall" if uninstallCatalog else "none"
mongoDbAction = "uninstall" if uninstallMongoDb else "none"
slsAction = "uninstall" if uninstallSLS else "none"
Expand All @@ -391,9 +388,7 @@ def launchUninstallPipeline(dynClient: DynamicClient,
timestamp=timestamp,
mas_instance_id=instanceId,
grafana_action=grafanaAction,
cert_manager_provider=certManagerProvider,
cert_manager_action=certManagerAction,
common_services_action=commonServicesAction,
ibm_catalogs_action=ibmCatalogAction,
mongodb_action=mongoDbAction,
sls_action=slsAction,
Expand Down
4 changes: 0 additions & 4 deletions src/mas/devops/templates/pipelinerun-install.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,6 @@ spec:
# -------------------------------------------------------------------------
- name: cpd_product_version
value: "{{ cpd_product_version }}"
- name: cpd_install_spss
value: "{{ cpd_install_spss }}"
- name: cpd_install_openscale
value: "{{ cpd_install_openscale }}"
- name: cpd_install_cognos
value: "{{ cpd_install_cognos }}"
- name: cpd_install_ws
Expand Down
4 changes: 0 additions & 4 deletions src/mas/devops/templates/pipelinerun-uninstall.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@ spec:
value: {{ mas_instance_id }}
- name: grafana_action
value: {{ grafana_action }}
- name: cert_manager_provider
value: {{ cert_manager_provider }}
- name: cert_manager_action
value: {{ cert_manager_action }}
- name: common_services_action
value: {{ common_services_action }}
- name: ibm_catalogs_action
value: {{ ibm_catalogs_action }}
- name: mongodb_action
Expand Down
4 changes: 0 additions & 4 deletions src/mas/devops/templates/pipelinerun-update.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,8 @@ spec:
value: "{{ cp4d_update_ws }}"
- name: cp4d_update_wml
value: "{{ cp4d_update_wml }}"
- name: cp4d_update_wos
value: "{{ cp4d_update_wos }}"
- name: cp4d_update_spark
value: "{{ cp4d_update_spark }}"
- name: cp4d_update_spss
value: "{{ cp4d_update_spss }}"
- name: cp4d_update_cognos
value: "{{ cp4d_update_cognos }}"

Expand Down