Skip to content

Commit

Permalink
clickstream demo CI images
Browse files Browse the repository at this point in the history
  • Loading branch information
aayars authored Oct 30, 2017
1 parent 3ac6348 commit d16bef3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ docker_oraclejdk8 {
withPush = true
upstreamProjects = 'confluentinc/schema-registry'
dockerRegistry = '368821881613.dkr.ecr.us-west-2.amazonaws.com/'
dockerRepos = ['confluentinc/ksql-examples', 'confluentinc/ksql-cli']
dockerRepos = ['confluentinc/ksql-examples', 'confluentinc/ksql-cli', 'confluentinc/ksql-clickstream-demo']
}
4 changes: 2 additions & 2 deletions ksql-clickstream-demo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# https://confluentinc.atlassian.net/browse/KSQL-292

ARG DOCKER_REGISTRY
ARG DOCKER_UPSTREAM_REGISTRY

FROM ${DOCKER_REGISTRY}confluentinc/docker-demo-base:3.3.0
FROM ${DOCKER_UPSTREAM_REGISTRY}confluentinc/docker-demo-base:3.3.0

ARG KSQL_VERSION
ARG ARTIFACT_ID
Expand Down
8 changes: 8 additions & 0 deletions ksql-clickstream-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
<artifactId>ksql-cli</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -91,10 +97,12 @@
<goal>build</goal>
</goals>
<configuration>
<skip>${docker.skip}</skip>
<buildArgs>
<ARTIFACT_ID>${project.artifactId}</ARTIFACT_ID>
<KSQL_VERSION>${project.version}</KSQL_VERSION>
<DOCKER_REGISTRY>${docker.registry}</DOCKER_REGISTRY>
<DOCKER_UPSTREAM_REGISTRY>docker.io/</DOCKER_UPSTREAM_REGISTRY>
</buildArgs>
<tag>${docker.tag}</tag>
<repository>${docker.registry}confluentinc/${project.artifactId}</repository>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<module>ksql-cli</module>
<module>ksql-examples</module>
<module>ksql-rest-app</module>
<module>ksql-clickstream-demo</module>
</modules>

<repositories>
Expand Down

0 comments on commit d16bef3

Please sign in to comment.