-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #253 from ettoreleandrotognoli/eap74-dev
[CLOUD-4088] Update files for 7.4.4.GA-CR1
- Loading branch information
Showing
8 changed files
with
145 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
schema_version: 1 | ||
|
||
name: "eap-74-env" | ||
description: "JBoss Enterprise Application Platform 7.4.4 env and labels" | ||
version: "7.4.4" | ||
|
||
labels: | ||
- name: "org.jboss.product" | ||
value: "eap" | ||
- name: "org.jboss.product.version" | ||
value: "7.4.4" | ||
- name: "org.jboss.product.eap.version" | ||
value: "7.4.4" | ||
- name: "com.redhat.deployments-dir" | ||
value: "/opt/eap/standalone/deployments" | ||
- name: "com.redhat.dev-mode" | ||
value: "DEBUG:true" | ||
description: "Environment variable used to enable development mode (debugging). A value of true will enable development mode." | ||
- name: "com.redhat.dev-mode.port" | ||
value: "DEBUG_PORT:8787" | ||
description: "Environment variable used to specify the debug port. If not set, the default EAP debug port will be used (8787). Only applicable when development mode is enabled." | ||
envs: | ||
- name: "WILDFLY_VERSION" | ||
value: "7.4.4.GA-redhat-00010" | ||
- name: "LAUNCH_JBOSS_IN_BACKGROUND" | ||
value: "true" | ||
- name: "JBOSS_PRODUCT" | ||
value: "eap" | ||
- name: "JBOSS_EAP_VERSION" | ||
value: "7.4.4" | ||
- name: "PRODUCT_VERSION" | ||
value: "7.4.4" | ||
- name: "EAP_FULL_GROUPID" | ||
value: "org.jboss.eap" | ||
- name: "JBOSS_HOME" | ||
value: "/opt/eap" | ||
- name: "DEBUG" | ||
example: "true" | ||
description: "Specify true to enable development mode (debugging)." | ||
- name: "DEBUG_PORT" | ||
example: "8787" | ||
description: "Specify the port to use for debugging. If not set, the default EAP debug port will be used (8787). Only applicable when development mode is enabled." | ||
ports: | ||
- value: 8080 | ||
- value: 8787 | ||
expose: false |
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
32 changes: 32 additions & 0 deletions
32
.../opt/jboss/container/eap/galleon/eap-s2i-galleon-pack/wildfly-user-feature-pack-build.xml
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- | ||
~ JBoss, Home of Professional Open Source. | ||
~ Copyright 2014, Red Hat, Inc., and individual contributors | ||
~ as indicated by the @author tags. See the copyright.txt file in the | ||
~ distribution for a full listing of individual contributors. | ||
~ | ||
~ This is free software; you can redistribute it and/or modify it | ||
~ under the terms of the GNU Lesser General Public License as | ||
~ published by the Free Software Foundation; either version 2.1 of | ||
~ the License, or (at your option) any later version. | ||
~ | ||
~ This software is distributed in the hope that it will be useful, | ||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
~ Lesser General Public License for more details. | ||
~ | ||
~ You should have received a copy of the GNU Lesser General Public | ||
~ License along with this software; if not, write to the Free | ||
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
--> | ||
|
||
<build xmlns="urn:wildfly:feature-pack-build:3.2" producer="org.jboss.eap.galleon.s2i:eap-s2i-galleon-pack"> | ||
<dependencies> | ||
<dependency group-id="org.jboss.eap" artifact-id="wildfly-ee-galleon-pack"> | ||
<name>org.wildfly:wildfly-ee-galleon-pack</name> | ||
<default-configs inherit="true"/> | ||
<packages inherit="true"/> | ||
<!-- ##PATCHES## --> | ||
</dependency> | ||
</dependencies> | ||
</build> |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
# Configure module | ||
set -e | ||
|
||
SCRIPT_DIR=$(dirname $0) | ||
ARTIFACTS_DIR=${SCRIPT_DIR}/artifacts | ||
|
||
chown -R jboss:root $SCRIPT_DIR | ||
chmod -R ug+rwX $SCRIPT_DIR | ||
|
||
pushd ${ARTIFACTS_DIR} | ||
cp -pr * / | ||
popd |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
schema_version: 1 | ||
name: eap-74-galleon | ||
version: '7.4.4' | ||
description: Install Galleon feature-pack-build file with dependency on wildfly-galleon-pack, default config being inherited from wildfly-ee-galleon-pack | ||
|
||
execute: | ||
- script: configure.sh | ||
|
||
modules: | ||
install: | ||
- name: eap-74-env | ||
version: '7.4.4' |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
SOURCES_DIR=/tmp/artifacts/ | ||
DISTRIBUTION_ZIP="jboss-eap-7.4.zip" | ||
|
||
unzip -d $SOURCES_DIR/eap-dist -q $SOURCES_DIR/$DISTRIBUTION_ZIP | ||
DIST_NAME=`ls $SOURCES_DIR/eap-dist` | ||
|
||
mv $SOURCES_DIR/eap-dist/$DIST_NAME $JBOSS_HOME | ||
|
||
export JAVA_OPTS="${JAVA_OPTS} -Dorg.wildfly.patching.jar.invalidation=true" | ||
$JBOSS_HOME/bin/jboss-cli.sh --command="patch apply $SOURCES_DIR/jboss-eap-7.4.4-patch.zip" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
schema_version: 1 | ||
|
||
name: eap-744 | ||
version: "7.4.4" | ||
|
||
artifacts: | ||
- name: jboss-eap-7.4.zip | ||
target: jboss-eap-7.4.zip | ||
md5: 58263e1daa0f08e457cd3cddb93ec49a | ||
|
||
- name: jboss-eap-7.4.4-patch | ||
target: jboss-eap-7.4.4-patch.zip | ||
md5: 613dad1a9bbd6ea2224ae484f52aab25 | ||
|
||
run: | ||
user: 185 | ||
cmd: | ||
- "/opt/eap/bin/standalone.sh" | ||
- "-b" | ||
- "0.0.0.0" | ||
|
||
execute: | ||
- script: install.sh |