Skip to content

Commit

Permalink
Merge pull request #236 from dbkreling/eap74-dev
Browse files Browse the repository at this point in the history
[CLOUD-4011] Update files for 7.4.1.GA-CR1
  • Loading branch information
luck3y committed Aug 31, 2021
2 parents 300e561 + 181733d commit 59f0d41
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 2 deletions.
46 changes: 46 additions & 0 deletions modules/eap-74-env/7.4.1/module.yaml
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.1 env and labels"
version: "7.4.1"

labels:
- name: "org.jboss.product"
value: "eap"
- name: "org.jboss.product.version"
value: "7.4.1"
- name: "org.jboss.product.eap.version"
value: "7.4.1"
- 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.1.GA-redhat-00003"
- name: "LAUNCH_JBOSS_IN_BACKGROUND"
value: "true"
- name: "JBOSS_PRODUCT"
value: "eap"
- name: "JBOSS_EAP_VERSION"
value: "7.4.1"
- name: "PRODUCT_VERSION"
value: "7.4.1"
- 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
4 changes: 2 additions & 2 deletions modules/eap-74-galleon-latest/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ schema_version: 1

name: eap-74-galleon-latest
version: "1.0"
description: "Red Hat JBoss Enterprise Application Platform EAP 7.4.0 latest version galleon module"
description: "Red Hat JBoss Enterprise Application Platform EAP 7.4.1 latest version galleon module"
modules:
install:
- name: eap-74-galleon
version: '7.4.0'
version: '7.4.1'
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>
13 changes: 13 additions & 0 deletions modules/eap-74-galleon/7.4.1/configure.sh
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
12 changes: 12 additions & 0 deletions modules/eap-74-galleon/7.4.1/module.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
schema_version: 1
name: eap-74-galleon
version: '7.4.1'
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.1'

0 comments on commit 59f0d41

Please sign in to comment.