Skip to content

Commit

Permalink
Add template-service-broker image
Browse files Browse the repository at this point in the history
  • Loading branch information
sdodson committed Oct 5, 2017
1 parent 40d7f76 commit c9ab5e9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hack/build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ tag_prefix="${OS_IMAGE_PREFIX:-"openshift/origin"}"
( os::build::image "${tag_prefix}-pod" images/pod ) &
( os::build::image "${tag_prefix}-cluster-capacity" images/cluster-capacity ) &
( os::build::image "${tag_prefix}-service-catalog" images/service-catalog ) &
( os::build::image "${tag_prefix}-template-service-broker" images/template-service-broker ) &


for i in `jobs -p`; do wait $i; done

Expand Down
1 change: 1 addition & 0 deletions hack/push-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ images=(
openshift/origin-gitserver
openshift/origin-cluster-capacity
openshift/origin-service-catalog
openshift/origin-template-service-broker
openshift/hello-openshift
openshift/openvswitch
openshift/node
Expand Down
1 change: 1 addition & 0 deletions images/template-service-broker/.cccp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
job-id: origin-template-service-broker
8 changes: 8 additions & 0 deletions images/template-service-broker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM openshift/origin-source

RUN INSTALL_PKGS="origin-template-service-broker" && \
yum --enablerepo=origin-local-release install -y ${INSTALL_PKGS} && \
rpm -V ${INSTALL_PKGS} && \
yum clean all

CMD [ "/usr/bin/template-service-broker" ]
5 changes: 5 additions & 0 deletions images/template-service-broker/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
reviewers:
- jminter
- deads
approvers:
- jminter

0 comments on commit c9ab5e9

Please sign in to comment.