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
{ | |
"apiVersion": "v1", | |
"kind": "ServiceAccount", | |
"metadata": { | |
"name": "amq-service-account" | |
} | |
} |
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
<!-- structure of project (in xml) X-D --> | |
<src> | |
<main> | |
<docker> | |
<amq-62> | |
<opt> | |
<amq> | |
<bin>configure.sh (empty shell file to override the s2i configure.sh)</bin> | |
<conf>activemq.xml file (fully configured as you want it to be)</conf> |
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
{ | |
"id": "f1442c99-7082-fc25-9811-250c9430ff9f", | |
"name": "Hawkular", | |
"description": "", | |
"order": [ | |
"35dfbd57-ae9d-60bf-b34e-da21a31d8946", | |
"49a43557-4cdb-99fd-b9df-73cb2a5898dd", | |
"41d65f9e-1f37-d127-4bc1-154685b922f3", | |
"a4526287-3ed2-f6f2-6e17-5e32daf77d43", | |
"b5497ecd-a4c3-9b16-c8c3-40741846b234", |
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
apiVersion: v1 | |
kind: ImageStream | |
metadata: | |
name: rhel7 | |
namespace: openshift | |
spec: | |
dockerImageRepository: registry.access.redhat.com/rhel7/rhel | |
tags: | |
- from: | |
kind: DockerImage |
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
apiVersion: v1 | |
kind: ImageStream | |
metadata: | |
name: phpldapadmin | |
namespace: openshift | |
spec: | |
dockerImageRepository: docker.io/osixia/phpldapadmin | |
tags: | |
- annotations: | |
description: PHPLDAPAdmin |
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
/** | |
* Secret parser for openshift/kubernetes in groovy. | |
* Extract base64 encoded files with groovy ;-D | |
*/ | |
import org.yaml.snakeyaml.Yaml | |
@Grapes( | |
@Grab(group='org.yaml', module='snakeyaml', version='1.17') | |
) |
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
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T16:41:47+00:00) | |
Maven home: C:\apache-maven-3.3.9 | |
Java version: 1.8.0_91, vendor: Oracle Corporation | |
Java home: C:\Program Files\Java\jdk1.8.0_91\jre | |
Default locale: en_GB, platform encoding: Cp1252 | |
OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos" | |
[DEBUG] Created new class realm maven.api | |
[DEBUG] Importing foreign packages into class realm maven.api | |
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core | |
[DEBUG] Imported: javax.enterprise.util.* < plexus.core |
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
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T16:41:47+00:00) | |
Maven home: C:\apache-maven-3.3.9 | |
Java version: 1.8.0_91, vendor: Oracle Corporation | |
Java home: C:\Program Files\Java\jdk1.8.0_91\jre | |
Default locale: en_GB, platform encoding: Cp1252 | |
OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos" | |
[DEBUG] Created new class realm maven.api | |
[DEBUG] Importing foreign packages into class realm maven.api | |
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core | |
[DEBUG] Imported: javax.enterprise.util.* < plexus.core |
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
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T16:41:47+00:00) | |
Maven home: C:\apache-maven-3.3.9 | |
Java version: 1.8.0_91, vendor: Oracle Corporation | |
Java home: C:\Program Files\Java\jdk1.8.0_91\jre | |
Default locale: en_GB, platform encoding: Cp1252 | |
OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos" | |
[DEBUG] Created new class realm maven.api | |
[DEBUG] Importing foreign packages into class realm maven.api | |
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core | |
[DEBUG] Imported: javax.enterprise.util.* < plexus.core |
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
for node in master1 master2 master3 infranode1 infranode2 node1 node2 node3 node4 node5 node6 | |
do | |
echo Checking docker status on $node : | |
ssh $node "systemctl status docker | grep Active" | |
done |