forked from cloudify-incubator/kubernetes-node-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openstack.yaml
234 lines (210 loc) · 7.11 KB
/
openstack.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
tosca_definitions_version: cloudify_dsl_1_3
description: >
This blueprint creates a Kubernetes Cluster.
It is based on this documentation: https://kubernetes.io/docs/getting-started-guides/kubeadm/
imports:
- http://www.getcloudify.org/spec/cloudify/4.3/types.yaml
- plugin:cloudify-diamond-plugin
- plugin:cloudify-fabric-plugin
- plugin:cloudify-utilities-plugin
- plugin:cloudify-openstack-plugin
- imports/kubernetes.yaml
- imports/cloud-config.yaml
- types/scale/scale.yaml
inputs:
image:
description: Image to be used when launching agent VMs
default: { get_secret: centos_core_image }
flavor:
description: Flavor of the agent VMs
default: { get_secret: large_image_flavor }
agent_user:
description: >
User for connecting to agent VMs
default: centos
node_security_group:
description: >
The resource id of the security group
dsl_definitions:
openstack_config: &openstack_config
username: { get_secret: keystone_username }
password: { get_secret: keystone_password }
auth_url: { get_secret: keystone_url }
region: { get_secret: region }
project_name: { get_secret: keystone_tenant_name }
user_domain_name: { get_secret: user_domain_name }
project_domain_name: { get_secret: project_domain_name }
node_templates:
k8s_node_host:
type: cloudify.openstack.nodes.Server
properties:
openstack_config: *openstack_config
agent_config:
user: { get_input: agent_user }
install_method: remote
port: 22
key: { get_secret: agent_key_private }
server:
key_name: ''
image: ''
flavor: ''
management_network_name: { get_property: [ public_network, resource_id ] }
relationships:
- target: kubernetes_node_port
type: cloudify.openstack.server_connected_to_port
interfaces:
cloudify.interfaces.lifecycle:
create:
inputs:
args:
image: { get_input: image }
flavor: { get_input: flavor }
userdata: { get_attribute: [ cloudify_host_cloud_config, cloud_config ] }
cloudify.interfaces.monitoring_agent:
install:
implementation: diamond.diamond_agent.tasks.install
inputs:
diamond_config:
interval: 10
start: diamond.diamond_agent.tasks.start
stop: diamond.diamond_agent.tasks.stop
uninstall: diamond.diamond_agent.tasks.uninstall
cloudify.interfaces.monitoring:
start:
implementation: diamond.diamond_agent.tasks.add_collectors
inputs:
collectors_config:
CPUCollector: {}
MemoryCollector: {}
LoadAverageCollector: {}
NetworkCollector: {}
ExampleCollector: {}
stop:
implementation: diamond.diamond_agent.tasks.del_collectors
inputs:
collectors_config:
CPUCollector: {}
MemoryCollector: {}
LoadAverageCollector: {}
DiskUsageCollector: {}
NetworkCollector: {}
ExampleCollector: {}
kubernetes_security_group:
type: cloudify.openstack.nodes.SecurityGroup
properties:
openstack_config: *openstack_config
use_external_resource: true
resource_id: { get_input: node_security_group }
kubernetes_node_port:
type: cloudify.openstack.nodes.Port
properties:
openstack_config: *openstack_config
relationships:
- type: cloudify.relationships.connected_to
target: public_network
- type: cloudify.relationships.depends_on
target: public_subnet
- type: cloudify.openstack.port_connected_to_security_group
target: kubernetes_security_group
public_subnet:
type: cloudify.openstack.nodes.Subnet
properties:
openstack_config: *openstack_config
use_external_resource: true
resource_id: { get_secret: public_subnet_name }
relationships:
- target: public_network
type: cloudify.relationships.contained_in
- target: router
type: cloudify.openstack.subnet_connected_to_router
public_network:
type: cloudify.openstack.nodes.Network
properties:
openstack_config: *openstack_config
use_external_resource: true
resource_id: { get_secret: public_network_name }
router:
type: cloudify.openstack.nodes.Router
properties:
openstack_config: *openstack_config
use_external_resource: true
resource_id: { get_secret: router_name }
relationships:
- target: external_network
type: cloudify.relationships.connected_to
external_network:
type: cloudify.openstack.nodes.Network
properties:
openstack_config: *openstack_config
use_external_resource: true
resource_id: { get_secret: external_network_name }
groups:
k8s_node_group:
members:
- k8s_node_host
- kubernetes_node_port
scale_up_group:
members: [k8s_node_host]
policies:
auto_scale_up:
type: scale_policy_type
properties:
policy_operates_on_group: true
scale_limit: 10
scale_direction: '<'
scale_threshold: 50
service_selector: .*k8s_node_host.*.cpu_total_idle
cooldown_time: 60
triggers:
execute_scale_workflow:
type: cloudify.policies.triggers.execute_workflow
parameters:
workflow: scale
workflow_parameters:
delta: 1
scalable_entity_name: k8s_node_group
scale_compute: true
scale_down_group:
members: [k8s_node_host]
policies:
auto_scale_down:
type: scale_policy_type
properties:
scale_limit: 2
scale_direction: '>'
scale_threshold: 90
service_selector: .*k8s_node_host.*.cpu_total_idle
cooldown_time: 60
triggers:
execute_scale_workflow:
type: cloudify.policies.triggers.execute_workflow
parameters:
workflow: scale
workflow_parameters:
delta: -1
scalable_entity_name: k8s_node_group
scale_compute: true
heal_group:
members: [k8s_node_host]
policies:
simple_autoheal_policy:
type: cloudify.policies.types.host_failure
properties:
service:
- example
interval_between_workflows: 60
triggers:
auto_heal_trigger:
type: cloudify.policies.triggers.execute_workflow
parameters:
workflow: heal
workflow_parameters:
node_instance_id: { 'get_property': [ SELF, node_id ] }
diagnose_value: { 'get_property': [ SELF, diagnose ] }
outputs:
deployment-type:
description: Deployment Type, Needed In order to determine if the kubernetes host is normal node or load balancer
value: node
deployment-node-data-type:
description: Cloudify node type needed in kubernetes cloudify provider
value: cloudify.nodes.ApplicationServer.kubernetes.Node