-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yml
50 lines (39 loc) · 1.5 KB
/
manifest.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
---
applications:
- name: ((cf_manual_app_name))
memory: 768M
disk_quota: 1024M
instances: 1
stack: cflinuxfs3
# health_check_timeout maximum is 600s
timeout: 120
# Shown using IBM Cloud CLI (ibmcloud cf domains)
routes:
- route: ((cf_manual_app_name)).((cf_manual_region)).cf.appdomain.cloud
- route: ((cf_manual_app_name)).apps.internal
buildpacks:
- https://github.com/cloudfoundry/nodejs-buildpack
# - sdk-for-nodejs
command: npm start
services:
- ((cf_manual_db_service_name))
# Definition of Environment Variables here, will not be useable in the rest of this manifest.yml file.
# Must use an alternative variables file and import during cf push using the operator --vars-file=mainfest-vars.yml
# env:
# test: test
# ALTERNATIVE: Use Docker image for latest stable
# NOTE: Using the docker attribute in conjunction with the buildpacks or path attributes will result in an error
# docker:
# image: requarks/wiki:latest
# username: node
# ALTERNATIVE: Use Docker image for beta
# NOTE: Using the docker attribute in conjunction with the buildpacks or path attributes will result in an error
# docker:
# image: requarks/wiki:beta
# username: node
# ALTERNATIVE: IBM Cloud Foundry public extension to replace cf service creation during pipeline step before cf push
# NOTE: This is ignored by CF CLI push, but is used by IBM Cloud Continuous Delivery
#declared-services:
# databases-for-postgresql-service:
# label: databases-for-postgresql
# plan: standard