Skip to content

Commit

Permalink
Fix 'ssl_cert_name' is a required property error (#2435)
Browse files Browse the repository at this point in the history
* Add missing property for nexus-install

* Change .env.sample to default to not installing gitea/nexus

* Bump version as per version check
  • Loading branch information
stuartleeks authored Aug 10, 2022
1 parent c23f57a commit f50640c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ nexus-install:
$(MAKE) bundle-build bundle-publish bundle-register deploy-shared-service \
DIR="${MAKEFILE_DIR}/templates/shared_services/certs" BUNDLE_TYPE=shared_service PROPS="--domain_prefix nexus --cert_name nexus-ssl" \
&& $(MAKE) bundle-build bundle-publish bundle-register deploy-shared-service \
DIR=${MAKEFILE_DIR}/templates/shared_services/sonatype-nexus-vm/ BUNDLE_TYPE=shared_service
DIR=${MAKEFILE_DIR}/templates/shared_services/sonatype-nexus-vm/ BUNDLE_TYPE=shared_service PROPS="--ssl_cert_name nexus-ssl"

gitea-install:
$(MAKE) bundle-build bundle-publish bundle-register deploy-shared-service DIR=${MAKEFILE_DIR}/templates/shared_services/gitea/ BUNDLE_TYPE=shared_service
Expand Down
2 changes: 1 addition & 1 deletion devops/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
9 changes: 7 additions & 2 deletions templates/core/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ AAD_TENANT_ID=__CHANGE_ME__
####################################
CORE_ADDRESS_SPACE="10.1.0.0/22"
TRE_ADDRESS_SPACE="10.0.0.0/12"
DEPLOY_GITEA=true
DEPLOY_NEXUS=true

# Uncomment this to deploy Gitea
# DEPLOY_GITEA=true

# Uncomment this to deploy Nexus
# DEPLOY_NEXUS=true

RESOURCE_PROCESSOR_TYPE="vmss_porter"
API_APP_SERVICE_PLAN_SKU_SIZE="P1v2"
APP_SERVICE_PLAN_SKU="P1v2"
Expand Down
2 changes: 1 addition & 1 deletion templates/core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.11"
__version__ = "0.4.1"

0 comments on commit f50640c

Please sign in to comment.