Skip to content

Commit 144adb0

Browse files
committed
add example tile from hello-release
From crhntr/hello-release@0e5bf4b
1 parent ebd4911 commit 144adb0

File tree

10 files changed

+114
-0
lines changed

10 files changed

+114
-0
lines changed

Kilnfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
slug: crhntr-hello
3+
release_source:
4+
- type: github
5+
org: crhntr
6+
github_token: $(variable "github_token")
7+
- type: bosh.io
8+
releases:
9+
- name: hello-release
10+
git_repository:
11+
https://github.com/crhntr/hello-world
12+
- name: bpm

Kilnfile.lock

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
stemcell_criteria:
2+
os: ubuntu-xenial
3+
version: "621.0"

README.md

Whitespace-only changes.

base.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: hello
3+
label: Hello
4+
description: Serves a "Hello World" server.
5+
icon_image: $( icon )
6+
7+
metadata_version: "2.7.0"
8+
minimum_version_for_upgrade: 0.1.0
9+
product_version: $( version )
10+
provides_product_versions:
11+
- name: hello
12+
version: $( version )
13+
14+
rank: 90
15+
serial: false
16+
17+
releases:
18+
- $( release "hello-release" )
19+
- $( release "bpm" )
20+
21+
stemcell_criteria: $( stemcell )
22+
23+
job_types:
24+
- $( instance_group "hello-server" )
25+
26+
runtime_configs: []
27+
property_blueprints: []
28+
form_types: []

icon.png

61.4 KB
Loading

instance_groups/hello-server.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: hello-server
2+
label: Server
3+
resource_label: Server
4+
description: HTTP Server
5+
6+
templates:
7+
- $( job "hello-server" )
8+
- $( job "bpm" )
9+
10+
static_ip: 1
11+
dynamic_ip: 0
12+
13+
max_in_flight: 1
14+
single_az_only: true
15+
16+
instance_definition:
17+
name: instances
18+
type: integer
19+
label: Instances
20+
configurable: true
21+
default: 1
22+
constraints:
23+
min: 0
24+
max: 1
25+
26+
resource_definitions:
27+
- name: ram
28+
type: integer
29+
label: RAM
30+
configurable: true
31+
default: 1024
32+
constraints:
33+
min: 1024
34+
35+
- name: ephemeral_disk
36+
type: integer
37+
label: Ephemeral Disk
38+
configurable: true
39+
default: 4000
40+
constraints:
41+
min: 2000
42+
43+
- name: persistent_disk
44+
type: integer
45+
label: Persistent Disk
46+
configurable: false
47+
default: 4000
48+
constraints:
49+
min: 2000
50+
51+
- name: cpu
52+
type: integer
53+
label: CPU
54+
configurable: true
55+
default: 1
56+
constraints:
57+
min: 1

jobs/bpm.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: bpm
2+
release: bpm
3+
manifest: {}

jobs/hello-duniya.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: hello-duniya
2+
release: hello-duniya-release
3+
manifest: |
4+
job-properties:
5+
port: 8080

jobs/hello-server.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: hello-server
2+
release: hello-release
3+
manifest: |
4+
job-properties:
5+
port: 8080

version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.15

0 commit comments

Comments
 (0)