Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: (PSKD-729) Removed experimental Azure Service Bus support #577

Merged
merged 1 commit into from
Oct 14, 2024
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
24 changes: 0 additions & 24 deletions roles/common/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,30 +256,6 @@
- tfstate.cluster_api_mode is defined
- tfstate.cluster_api_mode.value|length > 0
- V4_CFG_INGRESS_MODE is not defined
- name: tfstate - azure message broker host # noqa: name[casing]
set_fact:
V4_CFG_MESSAGE_BROKER_HOST: "{{ tfstate.message_broker_hostname.value }}"
when:
- PROVIDER == "azure"
- tfstate.message_broker_hostname is defined
- tfstate.message_broker_hostname.value|length > 0
- V4_CFG_MESSAGE_BROKER_HOST is not defined
- name: tfstate - azure message broker name # noqa: name[casing]
set_fact:
V4_CFG_MESSAGE_BROKER_NAME: "{{ tfstate.message_broker_name.value }}"
when:
- PROVIDER == "azure"
- tfstate.message_broker_name is defined
- tfstate.message_broker_name.value|length > 0
- V4_CFG_MESSAGE_BROKER_NAME is not defined
- name: tfstate - azure message broker primary_key # noqa: name[casing]
set_fact:
V4_CFG_MESSAGE_BROKER_PASSWORD: "{{ tfstate.message_broker_primary_key.value }}"
when:
- PROVIDER == "azure"
- tfstate.message_broker_primary_key is defined
- tfstate.message_broker_primary_key.value|length > 0
- V4_CFG_MESSAGE_BROKER_PASSWORD is not defined
- name: tfstate - set tfstate to empty string # noqa: name[casing]
set_fact:
tfstate: ""
Expand Down
6 changes: 0 additions & 6 deletions roles/vdm/defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@ V4_DEPLOYMENT_OPERATOR_CRB: sasoperator
## Setting true enables using custom du for below the line testing
V4_CFG_BELOW_THE_LINE: false

## Message Broker - Experimental
V4_CFG_MESSAGE_BROKER_ENABLE: false
V4_CFG_MESSAGE_BROKER_HOST: null
V4_CFG_MESSAGE_BROKER_NAME: null
V4_CFG_MESSAGE_BROKER_PASSWORD: null

## SAS Workload Orchestrator
V4_WORKLOAD_ORCHESTRATOR_ENABLED: true

Expand Down
10 changes: 0 additions & 10 deletions roles/vdm/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,16 +204,6 @@
- uninstall
- update

- name: Include Message broker
include_tasks: message_broker.yaml
when:
- PROVIDER == "azure"
- V4_CFG_MESSAGE_BROKER_ENABLE
tags:
- install
- uninstall
- update

- name: Include Kustomize
include_tasks: kustomize.yaml
tags:
Expand Down
86 changes: 0 additions & 86 deletions roles/vdm/tasks/message_broker.yaml

This file was deleted.

Loading