forked from att-comdev/openstack-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
219 lines (201 loc) · 4.29 KB
/
values.yaml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# Default values for keystone.
# This is a YAML-formatted file.
# Declare name/value pairs to be passed into your templates.
# name: value
labels:
control_node_selector_key: openstack-control-plane
control_node_selector_value: enabled
compute_node_selector_key: openstack-compute-node
compute_node_selector_value: enabled
control_replicas: 1
compute_replicas: 1
images:
db_init: quay.io/stackanetes/stackanetes-kolla-toolbox:newton
db_sync: quay.io/stackanetes/stackanetes-nova-api:newton
api: quay.io/stackanetes/stackanetes-nova-api:newton
conductor: quay.io/stackanetes/stackanetes-nova-conductor:newton
scheduler: quay.io/stackanetes/stackanetes-nova-scheduler:newton
novncproxy: quay.io/stackanetes/stackanetes-nova-novncproxy:newton
consoleauth: quay.io/stackanetes/stackanetes-nova-consoleauth:newton
compute: quay.io/stackanetes/stackanetes-nova-compute:newton
libvirt: quay.io/stackanetes/stackanetes-nova-libvirt:newton
post: quay.io/stackanetes/stackanetes-kolla-toolbox:newton
dep_check: quay.io/stackanetes/kubernetes-entrypoint:v0.1.0
pull_policy: "IfNotPresent"
upgrades:
revision_history: 3
pod_replacement_strategy: RollingUpdate
rolling_update:
max_unavailable: 1
max_surge: 3
network:
ip_address: "0.0.0.0"
# TODO(DTadrzak): move external IPs to common, this variable should be shared with
# horizon service
external_ips: ""
minion_interface_name: "eno1"
dns:
servers:
- "10.96.0.10"
- "8.8.8.8"
kubernetes_domain: "cluster.local"
other_domains: ""
port:
osapi: 8774
metadata: 8775
novncproxy: 6080
nova:
default:
debug: false
osapi_workers: 8
metadata_workers: 8
conductor_workers: 8
force_config_drive: True
database:
address: "mariadb"
port: 3306
root_user: "root"
root_password: "password"
nova_user: "nova"
nova_password: "password"
nova_database_name: "nova"
nova_api_database_name: "nova_api"
keystone:
admin_user: "admin"
admin_password: "password"
admin_project_name: "admin"
admin_region_name: "RegionOne"
domain_name: "default"
tenant_name: "admin"
neutron_user: "neutron"
neutron_password: "password"
neutron_region_name: "RegionOne"
nova_user: "nova"
nova_password: "password"
nova_region_name: "RegionOne"
rabbitmq:
address: "rabbitmq"
admin_user: "rabbitmq"
admin_password: "password"
port: 5672
ceph:
enabled: false
monitors: []
cinder_user: "cinder"
cinder_keyring: null
nova_pool: "vms"
secret_uuid: ""
neutron:
metadata_secret: "password"
memcached:
address: "memcached:11211"
dependencies:
api:
jobs:
- keystone-db-sync
- nova-db-init
- nova-db-sync
service:
- mariadb
db_sync:
jobs:
- nova-db-init
- keystone-db-init
- mariadb-seed
service:
- mariadb
db_sync:
jobs:
- nova-db-init
- keystone-db-init
- mariadb-seed
- keystone-db-sync
service:
- mariadb
post:
jobs:
- nova-db-init
- keystone-db-init
- mariadb-seed
service:
- mariadb
- keystone-api
init:
jobs:
- mariadb-seed
service:
- mariadb
compute:
jobs:
- nova-post
service:
- keystone-api
- nova-api
daemonset:
- ovs-agent
libvirt:
jobs:
- nova-db-init
- nova-post
- nova-db-sync
service:
- keystone-api
- nova-api
consoleauth:
jobs:
- mariadb-seed
- keystone-db-sync
- nova-db-init
- nova-db-sync
service:
- mariadb
scheduler:
jobs:
- nova-db-sync
service:
- mariadb
conductor:
jobs:
- nova-db-sync
service:
- mariadb
# typically overriden by environmental
# values, but should include all endpoints
# required by this chart
endpoints:
glance:
hosts:
default: glance-api
type: image
path: null
scheme: 'http'
port:
api: 9292
registry: 9191
nova:
hosts:
default: nova-api
path: "/v2/%(tenant_id)s"
type: compute
scheme: 'http'
port:
api: 8774
metadata: 8775
novncproxy: 6080
keystone:
hosts:
default: keystone-api
path: /v3
type: identity
scheme: 'http'
port:
admin: 35357
public: 5000
neutron:
hosts:
default: neutron-server
path: null
type: network
scheme: 'http'
port:
api: 9696