-
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 #173 from luck3y/legacy-7.3
[CLOUD-3473] Legacy zip installer support for 7.3 & layered products
- Loading branch information
Showing
18 changed files
with
49 additions
and
30 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
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,14 +1,14 @@ | ||
schema_version: 1 | ||
name: os-eap-probes | ||
version: '2.0' | ||
description: os-eap-probes script package for python 3 | ||
description: os-eap-probes script package for python 2 | ||
execute: | ||
- script: configure.sh | ||
user: '185' | ||
packages: | ||
install: | ||
- python3-requests | ||
envs: | ||
- name: "PROBE_DISABLE_BOOT_ERRORS_CHECK" | ||
example: "true" | ||
description: Disable the boot errors check in the probes. | ||
- python-enum34 | ||
- python-requests | ||
modules: | ||
install: | ||
- name: os-eap-probes-common |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,15 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
SCRIPT_DIR=$(dirname $0) | ||
ADDED_DIR=${SCRIPT_DIR}/added | ||
|
||
# Add liveness and readiness probes and helper library | ||
cp -r "$ADDED_DIR"/* $JBOSS_HOME/bin/ | ||
|
||
chown -R jboss:root $JBOSS_HOME/bin/ | ||
chmod -R g+rwX $JBOSS_HOME/bin/ | ||
|
||
# ensure added scripts are executable | ||
chmod ug+x $JBOSS_HOME/bin/readinessProbe.sh $JBOSS_HOME/bin/livenessProbe.sh | ||
chmod -R ug+x $JBOSS_HOME/bin/probes |
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: os-eap-probes-common | ||
version: '1.0' | ||
description: os-eap-probes common scripts | ||
execute: | ||
- script: configure.sh | ||
user: '185' | ||
|
||
envs: | ||
- name: "PROBE_DISABLE_BOOT_ERRORS_CHECK" | ||
example: "true" | ||
description: Disable the boot errors check in the probes. |
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