-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WFLY-19766 Quickstarts: ha-singleton-deployment redeploy-affected res…
…ults in 'Deployment overlay singleton-deployment does not exist.'; rework executable segments to be runnable; cleanup; language fixes.
- Loading branch information
Showing
3 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
# Adds a deployment overlay for the quickstart deployment | ||
deployment-overlay add --name=singleton-deployment --deployments=ha-singleton-deployment.war --content=META-INF/singleton-deployment.xml=singleton-deployment.xml | ||
|
||
# Redeploys all deployments affected by the above change | ||
deployment-overlay redeploy-affected --name=singleton-deployment | ||
# Adds a deployment overlay for the quickstart deployment and redeploys all affected deployments | ||
deployment-overlay add --name=singleton-deployment --deployments=ha-singleton-deployment.war --content=META-INF/singleton-deployment.xml=singleton-deployment.xml --redeploy-affected |
7 changes: 2 additions & 5 deletions
7
ha-singleton-deployment/singleton-deployment-overlay-remove.cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
# Removes the previously added deployment overlay | ||
deployment-overlay remove --name=singleton-deployment | ||
|
||
# Redeploys all deployments affected by the above change | ||
deployment-overlay redeploy-affected --name=singleton-deployment | ||
# Removes the previously added deployment overlay and redeploys all affected deployments | ||
deployment-overlay remove --name=singleton-deployment --redeploy-affected |