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

Remove Nexus V1 #2580

Merged
merged 10 commits into from
Sep 11, 2022
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
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

**BREAKING CHANGES & MIGRATIONS**:

*
* Remove support for Nexus V1 ([#2580](https://github.com/microsoft/AzureTRE/pull/2580)). Please migrate to the newer version as described [here](https://microsoft.github.io/AzureTRE/tre-admins/setup-instructions/configuring-shared-services/).

FEATURES:

Expand All @@ -25,7 +25,6 @@ ENHANCEMENTS:
* UI is deployed by default ([#2554](https://github.com/microsoft/AzureTRE/pull/2554))
* Remove manual/makefile option to install Gitea/Nexus ([#2573](https://github.com/microsoft/AzureTRE/pull/2573))


BUG FIXES:

* API health check is also returned by accessing the root path at / ([#2469](https://github.com/microsoft/AzureTRE/pull/2469))
Expand Down
2 changes: 1 addition & 1 deletion api_app/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.27"
__version__ = "0.4.28"
2 changes: 1 addition & 1 deletion api_app/db/migrations/shared_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self, client: CosmosClient):
super().__init__(client)

def deleteDuplicatedSharedServices(self) -> bool:
template_names = ['tre-shared-service-firewall', 'tre-shared-service-nexus', 'tre-shared-service-gitea']
template_names = ['tre-shared-service-firewall', 'tre-shared-service-sonatype-nexus', 'tre-shared-service-gitea']

migrated = False
for template_name in template_names:
Expand Down
2 changes: 1 addition & 1 deletion devops/scripts/upload_static_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi
# The storage account is protected by network rules
echo "Enabling public access to storage account..."
az storage account update --default-action Allow --name "${STORAGE_ACCOUNT}"
sleep 10
sleep 30

echo "Uploading ${CONTENT_DIR} to static web storage"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Once the workspace service has been created, we can use the workspace API to cre
}
```

> Note: You can also specify "Windows 10" in "os_image" for a standard Windows 10 image. The "nexus_version" property also accepts "V1" if you have a V1 Nexus shared service deployed instead of the V2 service described in [Configuring shared services](./configuring-shared-services.md).
> Note: You can also specify "Windows 10" in "os_image" for a standard Windows 10 image.

The API will return an `operation` object with a `Location` header to query the operation status, as well as the `resourceId` and `resourcePath` properties to query the resource under creation.

Expand Down
2 changes: 1 addition & 1 deletion e2e_tests/resources/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

FIREWALL_SHARED_SERVICE = "tre-shared-service-firewall"
GITEA_SHARED_SERVICE = "tre-shared-service-gitea"
NEXUS_SHARED_SERVICE = "tre-shared-service-nexus"
NEXUS_SHARED_SERVICE = "tre-shared-service-sonatype-nexus"

GUACAMOLE_WINDOWS_USER_RESOURCE = "tre-service-guacamole-windowsvm"
GUACAMOLE_LINUX_USER_RESOURCE = "tre-service-guacamole-linuxvm"
Expand Down
6 changes: 0 additions & 6 deletions templates/shared_services/sonatype-nexus/.dockerignore

This file was deleted.

1 change: 0 additions & 1 deletion templates/shared_services/sonatype-nexus/.gitignore

This file was deleted.

30 changes: 0 additions & 30 deletions templates/shared_services/sonatype-nexus/Dockerfile.tmpl

This file was deleted.

1 change: 0 additions & 1 deletion templates/shared_services/sonatype-nexus/nexus.properties

This file was deleted.

38 changes: 0 additions & 38 deletions templates/shared_services/sonatype-nexus/parameters.json

This file was deleted.

96 changes: 0 additions & 96 deletions templates/shared_services/sonatype-nexus/porter.yaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading