This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tile.yml
76 lines (70 loc) · 2.51 KB
/
tile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
# The high-level description of your tile.
# Replace these properties with real values.
#
name: confluent-kafka-broker # By convention lowercase with dashes
icon_file: resources/icon.png
label: Brief Text for the Tile Icon
description: Longer description of the tile's purpose
# Global defaults (all optional)
#
# org: test-org # Name of org to create for your apps
# org_quota: 4096 # Memory quota for that org in MB
# space: test-space # Name of space to create for your apps
apply_open_security_group: true # Apply open security group, default: false
# Specify the packages to be included in your tile.
# The format of the section to include depends on the type
# of package you are describing. For fragments of each type
# that you can copy & paste, see:
#
# https://github.com/cf-platform-eng/tile-generator/blob/master/README.md
#
packages:
- name: my-application
type: app
manifest:
path: resources/my-application-1.0.0.jar
# command: python app.py
# memory: 256M
# Include stemcell criteria if you don't want to accept the default.
# Since this stemcell is only used to run pre and post errands, we
# strongly recommend you leave this alone so that your tile always
# runs with the latest stemcell.
#
# stemcell_criteria:
# os: ubuntu-trusty
# requires_cpi: false
# version: '3062'
# Add properties you want to pass to your applications.
# Properties specified here will not be configurable by the user.
#
# properties:
# - name: example_property
# type: string
# default: specify a value
# label: Label for the field on the GUI
# description: Longer description of the field's purpose
# Uncomment this section if you want to display forms with configurable
# properties in Ops Manager. These properties will be passed to your
# applications as environment variables. You can also refer to them
# elsewhere in this template by using:
# (( .properties.<property-name> ))
#
# forms:
# - name: buildpack_properties
# label: Buildpack
# description: Buildpack_properties
# properties:
# - name: buildpack_rank
# type: integer
# default: 0
# label: Buildpack rank for this buildpack_rank
# description: Ranking of this buildpack relative to others
# Add any dependencies your tile has on other installed products.
# This is often appropriate when using automatic service provisioning
# for any of your packages above, with services provided by other
# products.
#
# requires_product_versions:
# - name: p-mysql
# version: '~> 1.7'