forked from cloudfoundry/cf-mysql-release
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec
More file actions
87 lines (79 loc) · 2.71 KB
/
Copy pathspec
File metadata and controls
87 lines (79 loc) · 2.71 KB
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
77
78
79
80
81
82
83
84
85
86
87
---
name: smoke-tests
packages:
- golang
- acceptance-tests
- cli
templates:
errand.sh.erb: bin/run
config.yml.erb: bin/config.yml
consumes:
- name: mysql
type: mysql
optional: true
- name: proxy
type: proxy
optional: true
properties:
cf.api_url:
description: 'Full URL of Cloud Foundry API'
example: 'https://api.your-domain.example.com'
default: ''
cf.admin_username:
description: 'Username of the admin user'
default: ''
cf.admin_password:
description: 'Password of the admin user'
default: ''
cf.app_domains:
description: 'List of shared domains for pushed apps (tests will use the first domain)'
default: null
cf.skip_ssl_validation:
description: 'Whether to add --skip-ssl-validation for cf cli'
default: false
cf.smoke_tests.use_existing_org:
description: 'Runs smoke test errand as an existing org. Creates a new org if false'
default: false
cf.smoke_tests.org:
description: 'The name of the Org to run acceptance tests against'
default: ''
cf_mysql.smoke_tests.password:
description: 'Password for generated user to comply with CF password policy, if exists.'
default: ''
cf_mysql.smoke_tests.standalone_tests_only:
description: 'Instead of running the full smoke test suite, only run a minimal set of tests that do not require a running CF deployment'
default: false
cf_mysql.smoke_tests.timeout_scale:
description: 'scaling multiplier used to determine command timeouts'
default: 1
cf_mysql.host:
description: |
Hostname given to apps by the broker, usually a Load Balancer address or the IP of the first proxy.
Used only by the standalone tests, and is optional.
If omitted, and `standalone_tests_only` is true, either `cluster_ips` must be provided,
or mysql links must be provided.
cf_mysql.external_host:
description: 'Hostname given for dashboard URLs (e.g. p-mysql.example.com)'
default: ''
cf_mysql.mysql.port:
description: 'Port used to access MySQL'
default: 3306
cf_mysql.mysql.admin_username:
description: 'Admin username used to access MySQL'
default: 'root'
cf_mysql.mysql.admin_password:
description: 'Admin password used to access MySQL'
cf_mysql.broker.services:
description: 'Array of Services the broker provides'
default: null
cf_mysql.proxy.api_username:
description: 'Proxy API username'
default: proxy
cf_mysql.proxy.api_password:
description: 'Proxy API password'
cf_mysql.proxy.api_force_https:
description: 'Expect proxy to force redirect to HTTPS'
default: true
cf_mysql.proxy.proxy_ips:
description: 'Use to construct an array of proxy dashboard url (e.g. https://proxy-INDEX-EXTERNAL_HOST)'
default: null