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@gahealy-ose3-dune openshift]# osc start-build sandworms-build -n dune-world | |
| sandworms-build-1 | |
| I0516 19:10:20.729862 1 kubelet.go:1963] Query docker container info for pod "sandworms-build-1_dune-world" failed with error (no containers exist for this pod) | |
| I0516 19:10:20.733344 1 kubelet.go:1305] Creating pod infra container for "sandworms-build-1_dune-world" | |
| [root@gahealy-ose3-dune openshift]# osc get builds | |
| NAME TYPE STATUS POD | |
| sandworms-build-1 Docker Failed sandworms-build-1 | 
  
    
      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
    
  
  
    
  | { | |
| "annotations" : { }, | |
| "apiVersion" : "v1beta2", | |
| "id" : "sandworms", | |
| "items" : [ { | |
| "annotations" : { }, | |
| "apiVersion" : "v1beta2", | |
| "id" : "sandworms-service", | |
| "kind" : "Service", | |
| "labels" : { | 
  
    
      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
    
  
  
    
  | <route id="jmsBridgeTest"> | |
| <from uri="activemq:inbound?disableReplyTo=true"/> | |
| <log message="Body == ${body}"/> | |
| <to uri="activemq:outbound?useMessageIDAsCorrelationID=true"/> | |
| </route> | 
  
    
      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
    
  
  
    
  | [INFO] --- gatling-maven-plugin:2.1.6:execute (default) @ amq-core --- | |
| SLF4J: Class path contains multiple SLF4J bindings. | |
| SLF4J: Found binding in [jar:file:/Users/garethah/.m2/repository/ch/qos/logback/logback-classic/1.1.3/logback-classic-1.1.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] | |
| SLF4J: Found binding in [jar:file:/Users/garethah/.m2/repository/org/slf4j/slf4j-log4j12/1.7.12/slf4j-log4j12-1.7.12.jar!/org/slf4j/impl/StaticLoggerBinder.class] | |
| SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. | |
| 17:41:58,804 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy] | |
| 17:41:58,804 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] | |
| 17:41:58,804 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [file:/Users/garethah/Documents/github/garethahealy/gatling-amq/amq-core/target/classes/logback.xml] | |
| 17:41:58,805 |-WARN in ch.qos.logback.classic.LoggerConte | 
  
    
      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
    
  
  
    
  | <route id="jmsReplyToTest" autoStartup="false"> | |
| <from uri="activemq:inbound"/> | |
| <log message="Body == ${body}"/> | |
| </route> | 
  
    
      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
    
  
  
    
  | keytool -genkey -keystore server-keystore.jks -alias jonserver -storepass password -validity 360 -keysize 2048 -dname "CN=jonserver.jbosson33.vagrant.local, OU=Development, O=Gareth Healy, L=Sheffield, S=South Yorkshire, C=UK" | |
| keytool -export -rfc -keystore server-keystore.jks -storepass password -alias jonserver -file jonserver.cer | |
| keytool -import -trustcacerts -keystore client-truststore.jks -storepass password -file jonserver.cer -alias jonserver -noprompt | 
  
    
      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
    
  
  
    
  | target/ | |
| bin/ | |
| lab_assets/ | |
| .settings/ | |
| .classpath | |
| .project | |
| *.zip | |
| *.log | 
  
    
      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
    
  
  
    
  | package org.acme.insurance.policyquote | |
| import org.acme.insurance.Driver | |
| import org.acme.insurance.Policy | |
| rule "SafeYouths" | |
| when | |
| //conditions | |
| driver : Driver(age >= 18 && < 25, numberOfAccidents < 1, numberOfTickets <= 1) | 
  
    
      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
    
  
  
    
  | package org.acme.insurance.policyquote | |
| import org.acme.insurance.Driver | |
| import org.acme.insurance.Policy | |
| rule "RiskyYouths" | |
| when | |
| //conditions | |
| driver : Driver(age >= 18 && < 25, numberOfAccidents >= 1 || numberOfTickets >=2) | 
  
    
      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
    
  
  
    
  | package org.acme.insurance.policyquote | |
| import org.acme.insurance.Driver | |
| import org.acme.insurance.Policy | |
| rule "SafeAdults" | |
| when | |
| //conditions | |
| driver : Driver(age > 24, numberOfAccidents < 1, numberOfTickets <= 1) |