This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
product/ | ||
release/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
--- | ||
# The high-level description of your tile. | ||
# Replace these properties with real values. | ||
# | ||
name: wso2is-tile | ||
icon_file: resources/wso2-logo.png | ||
label: WSO2 Identity Server 5.3.0 | ||
description: PCF Tile for WSO2 Identity Server 5.3.0 | ||
# metadata_version: 1.8 # Optional, defaults to 1.8 | ||
|
||
# Global defaults (all optional) | ||
# | ||
# org: test-org # Name of org to create for your apps | ||
# 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: | ||
# | ||
# http://docs.pivotal.io/tiledev/tile-generator.html | ||
# | ||
packages: | ||
- name: wso2-is | ||
type: bosh-release | ||
path: ../bosh-release/wso2is-bosh-release.tar.gz | ||
jobs: | ||
- name: wso2is | ||
templates: | ||
- name: wso2is | ||
release: wso2is-release | ||
memory: 4096 | ||
ephemeral_disk: 4096 | ||
persistent_disk: 16384 | ||
cpu: 2 | ||
static_ip: 1 | ||
max_in_flight: 1 | ||
properties: {} | ||
|
||
# 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' | ||
|
||
# Customize upgrade parameters if the defaults don't meet your needs. | ||
# | ||
# update: | ||
# canaries: 1 | ||
# canary_watch_time: 10000-100000 | ||
# max_in_flight: 1 | ||
# update_watch_time: 10000-100000 | ||
|
||
# If prior versions of your tile are installed and configured, their | ||
# property values will not be overwritten by new defaults provided | ||
# in this file. If that is your intent, you must do the overwriting | ||
# explicitly using JavaScript migration functions, like so: | ||
# | ||
# migration: | | ||
# properties['properties']['.properties.org']['value'] = 'system'; |