mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-07 00:48:01 +01:00
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * openshift_images/using-templates.adoc
|
|
|
|
[id="templates-creating-from-console_{context}"]
|
|
= Creating an application by using the web console
|
|
|
|
You can use the web console to create an application from a template.
|
|
|
|
.Procedure
|
|
|
|
. While in the desired project, click *Add to Project*.
|
|
|
|
. Select either a builder image from the list of images in your project, or
|
|
from the service catalog.
|
|
+
|
|
[NOTE]
|
|
====
|
|
Only imagestreamtags that have the *builder* tag listed in their annotations
|
|
appear in this list, as demonstrated here:
|
|
====
|
|
+
|
|
[source,yaml]
|
|
----
|
|
kind: "ImageStream"
|
|
apiVersion: "v1"
|
|
metadata:
|
|
name: "ruby"
|
|
creationTimestamp: null
|
|
spec:
|
|
dockerImageRepository: "registry.redhat.io/rhscl/ruby-26-rhel7"
|
|
tags:
|
|
-
|
|
name: "2.6"
|
|
annotations:
|
|
description: "Build and run Ruby 2.6 applications"
|
|
iconClass: "icon-ruby"
|
|
tags: "builder,ruby" <1>
|
|
supports: "ruby:2.6,ruby"
|
|
version: "2.6"
|
|
----
|
|
<1> Including *builder* here ensures this `ImageStreamTag` appears in the
|
|
web console as a builder.
|
|
|
|
. Modify the settings in the new application screen to configure the objects
|
|
to support your application.
|