Skip to content

Instantly share code, notes, and snippets.

@tnozicka
Last active June 10, 2016 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnozicka/3c5e622df197f7f3142bf2200907e672 to your computer and use it in GitHub Desktop.
Save tnozicka/3c5e622df197f7f3142bf2200907e672 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Template
metadata:
annotations:
desrciption: "Template for generating binary builds."
tags: ""
parameters:
- name: "APP_NAME"
displayName: "Application name"
description: "Name of your application"
required: true
- name: "BUILDER_IMAGE"
displayName: "Builder Image"
description: "Builder image which will be used as a base image"
required: true
- name: "OUTPUT_IMAGESTREAM"
displayName: "Output ImageStream"
description: "ImageStream created as a result of the build"
required: true
objects:
- apiVersion: v1
items:
- apiVersion: v1
kind: BuildConfig
metadata:
labels:
build: $OUTPUT_IMAGESTREAM
name: $OUTPUT_IMAGESTREAM
spec:
output:
to:
kind: ImageStreamTag
name: $OUTPUT_IMAGESTREAM
source:
type: Binary
strategy:
sourceStrategy:
from:
kind: ImageStreamTag
name: $BUILDER_IMAGE
type: Source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment