-
Selecionar o VBL > Modeling > Create Web Service
-
Adicionar no VBL
-
Gerar o .war > Click direito no .vdb > Modeling > Generate SOAP WAR
-
IP: 10.19.150.125
-
Location: /opt/redhat/eap-6.4.0/standalone/deployments
-
This file contains hidden or 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
oc new-build --binary --name=my-app | |
oc start-build my-app --from-dir=. --follow | |
oc new-app my-app | |
oc expose service my-app |
This file contains hidden or 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
[OSEv3:vars] | |
########################################################################### | |
### Ansible Vars | |
########################################################################### | |
timeout=60 | |
ansible_become=yes | |
ansible_ssh_user=ec2-user | |
openshift_release=v3.7 |
This file contains hidden or 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
ROOT_NFS=/exports | |
NFS_CONFIG_FILE=/etc/exports.d/openshift-ansible.exports | |
// CHANGE IT! | |
HOST=support1.54d2.internal | |
create-nfs(){ | |
DIR=$1 | |
if [ ! -d $ROOT_NFS/$DIR ]; then | |
mkdir -p "$ROOT_NFS/$DIR" | |
fi |
This file contains hidden or 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
# NFS Server Host - CHANGE the GUID! | |
HOST=support1.54d2.internal | |
ROOT_NFS=/exports | |
NFS_CONFIG_FILE=/etc/exports.d/openshift-ansible.exports | |
create-pv () { | |
DIR=$1 | |
SIZE=$2 | |
ACCESS_MODE=$3 | |
RECLAIM_POLICY=$4 |