diff --git a/.github/workflows/ow_k8s.yml b/.github/workflows/ow_k8s.yml index dbce18d45..f0c30671e 100644 --- a/.github/workflows/ow_k8s.yml +++ b/.github/workflows/ow_k8s.yml @@ -37,6 +37,10 @@ on: default: 'main' description: 'OpenWIFI Subscription (Userportal) version to be deployed' required: false + owrrm_version: + default: 'main' + description: 'OpenWIFI radio resource management service version to be deployed' + required: false id: description: 'run identifier' required: false @@ -123,6 +127,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=${{ github.event.inputs.owanalytics_version }} export OWSUB_VERSION=${{ github.event.inputs.owsub_version }} + export OWRRM_VERSION=${{ github.event.inputs.owrrm_version }} export VALUES_FILE_LOCATION=values.openwifi-qa.yaml export RTTY_TOKEN=${{ secrets.RTTY_TOKEN }} export OWGW_AUTH_USERNAME=${{ secrets.UCENTRALGW_AUTH_USERNAME }} diff --git a/.github/workflows/uc_loadsim.yml b/.github/workflows/uc_loadsim.yml index c448fe097..b197d4a3c 100644 --- a/.github/workflows/uc_loadsim.yml +++ b/.github/workflows/uc_loadsim.yml @@ -170,6 +170,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=main export OWSUB_VERSION=main + export OWRRM_VERSION=main export VALUES_FILE_LOCATION=values.openwifi-qa.yaml,values.openwifi-qa.test-nodes.yaml,values.openwifi-qa.owls-enabled.yaml export RTTY_TOKEN=${{ secrets.RTTY_TOKEN }} export OWGW_AUTH_USERNAME=${{ secrets.UCENTRALGW_AUTH_USERNAME }} @@ -435,6 +436,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=main export OWSUB_VERSION=main + export OWRRM_VERSION=main export VALUES_FILE_LOCATION=values.openwifi-qa.yaml,values.openwifi-qa.test-nodes.yaml,values.openwifi-qa.owls-enabled.yaml export RTTY_TOKEN=${{ secrets.RTTY_TOKEN }} export OWGW_AUTH_USERNAME=${{ secrets.UCENTRALGW_AUTH_USERNAME }} @@ -627,6 +629,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=main export OWSUB_VERSION=main + export OWRRM_VERSION=main export VALUES_FILE_LOCATION=values.openwifi-qa.yaml,values.openwifi-qa.test-nodes.yaml,values.openwifi-qa.owls-enabled.yaml export RTTY_TOKEN=${{ secrets.RTTY_TOKEN }} export OWGW_AUTH_USERNAME=${{ secrets.UCENTRALGW_AUTH_USERNAME }} @@ -792,6 +795,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=main export OWSUB_VERSION=main + export OWRRM_VERSION=main export VALUES_FILE_LOCATION=values.openwifi-qa.yaml,values.openwifi-qa.test-nodes.yaml,values.openwifi-qa.owls-enabled.yaml,values.openwifi-qa.external-db.yaml export RTTY_TOKEN=${{ secrets.RTTY_TOKEN }} export OWGW_AUTH_USERNAME=${{ secrets.UCENTRALGW_AUTH_USERNAME }} diff --git a/.github/workflows/ucentralgw-dev-deployment.yaml b/.github/workflows/ucentralgw-dev-deployment.yaml index ff4e62636..bf6637e6d 100644 --- a/.github/workflows/ucentralgw-dev-deployment.yaml +++ b/.github/workflows/ucentralgw-dev-deployment.yaml @@ -27,6 +27,7 @@ env: # - owprov_version - OpenWIFI Provisioning version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) # - owanalytics_version - OpenWIFI Analytics version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) # - owsub_version - OpenWIFI Subscription (Userportal) version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) + # - owrrm_version - OpenWIFI radio resource management service version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) # - owgwui_version - OpenWIFI Web UI version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) # - owprovui_version - OpenWIFI Provisioning Web UI version to deploy (will be used for Docker image tag and git branch for Helm chart if git deployment is required) testbeds: '[ @@ -40,6 +41,7 @@ env: "owprov_version": "main", "owanalytics_version": "main", "owsub_version": "main", + "owrrm_version": "main", "owgwui_version": "main", "owprovui_version": "main" } @@ -138,6 +140,7 @@ jobs: export OWPROVUI_VERSION=${{ matrix.owprovui_version }} export OWANALYTICS_VERSION=${{ matrix.owanalytics_version }} export OWSUB_VERSION=${{ matrix.owsub_version }} + export OWRRM_VERSION=${{ matrix.owrrm_version }} ./deploy.sh else export DEPLOY_METHOD=git @@ -150,6 +153,7 @@ jobs: export OWPROVUI_VERSION=main export OWANALYTICS_VERSION=main export OWSUB_VERSION=main + export OWRRM_VERSION=main ./deploy.sh fi