This repository has been archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible-container.yml
245 lines (245 loc) · 9.15 KB
/
ansible-container.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
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
235
236
237
238
239
240
241
242
243
244
245
- name: Manage the lifecycle of ansible-container on K8s
hosts: localhost
gather_facts: no
connection: local
# Include Ansible Kubernetes and OpenShift modules
roles:
- role: ansible.kubernetes-modules
# Tasks for setting the application state. Valid tags include: start, stop, restart, destroy
tasks:
- name: Create namespace ansible-container
k8s_v1_namespace:
name: ansible-container
state: present
tags:
- start
- name: Destroy the application by removing namespace ansible-container
k8s_v1_namespace:
name: ansible-container
state: absent
tags:
- destroy
- name: Create service
k8s_v1_service:
state: present
force: false
resource_definition:
apiVersion: v1
kind: Service
metadata:
name: web
namespace: ansible-container
labels:
app: ansible-container
service: web
spec:
selector:
app: ansible-container
service: web
ports:
- protocol: TCP
targetPort: 8000
name: port-80-tcp
port: 80
tags:
- start
- name: Create service
k8s_v1_service:
state: present
force: false
resource_definition:
apiVersion: v1
kind: Service
metadata:
name: nodes
namespace: ansible-container
labels:
app: ansible-container
service: nodes
spec:
selector:
app: ansible-container
service: nodes
ports:
- protocol: TCP
targetPort: 8000
name: port-8000-tcp
port: 8000
tags:
- start
- name: Stop running containers by scaling replicas down to 0
k8s_v1beta1_deployment:
state: present
force: false
resource_definition:
apiVersion: extensions/v1beta1
kind: deployment
metadata:
name: web
labels:
app: ansible-container
service: web
namespace: ansible-container
spec:
template:
metadata:
labels:
app: ansible-container
service: web
spec:
containers:
- name: web
securityContext: {}
state: present
env:
- name: PYTHONUNBUFFERED
value: '1'
workingDir: /project
command:
- python3
- /project/manage.py
args:
- runserver
- 0.0.0.0:8000
ports:
- protocol: TCP
containerPort: 8000
image: http://docker-host:5000/testapp/ansible-container-web
replicas: 0
strategy:
type: RollingUpdate
tags:
- stop
- restart
- name: Stop running containers by scaling replicas down to 0
k8s_v1beta1_deployment:
state: present
force: false
resource_definition:
apiVersion: extensions/v1beta1
kind: deployment
metadata:
name: nodes
labels:
app: ansible-container
service: nodes
namespace: ansible-container
spec:
template:
metadata:
labels:
app: ansible-container
service: nodes
spec:
containers:
- name: nodes
securityContext: {}
state: present
env:
- name: PYTHONUNBUFFERED
value: '1'
workingDir: /project
command:
- python3
- /project/manage.py
args:
- runserver
- 239.255.0.42:8000
ports:
- protocol: TCP
containerPort: 8000
image: http://docker-host:5000/testapp/ansible-container-nodes
replicas: 0
strategy:
type: RollingUpdate
tags:
- stop
- restart
- name: Create deployment, and scale replicas up
k8s_v1beta1_deployment:
state: present
force: false
resource_definition:
apiVersion: extensions/v1beta1
kind: deployment
metadata:
name: web
labels:
app: ansible-container
service: web
namespace: ansible-container
spec:
template:
metadata:
labels:
app: ansible-container
service: web
spec:
containers:
- name: web
securityContext: {}
state: present
env:
- name: PYTHONUNBUFFERED
value: '1'
workingDir: /project
command:
- python3
- /project/manage.py
args:
- runserver
- 0.0.0.0:8000
ports:
- protocol: TCP
containerPort: 8000
image: http://docker-host:5000/testapp/ansible-container-web
replicas: 1
strategy:
type: RollingUpdate
tags:
- start
- restart
- name: Create deployment, and scale replicas up
k8s_v1beta1_deployment:
state: present
force: false
resource_definition:
apiVersion: extensions/v1beta1
kind: deployment
metadata:
name: nodes
labels:
app: ansible-container
service: nodes
namespace: ansible-container
spec:
template:
metadata:
labels:
app: ansible-container
service: nodes
spec:
containers:
- name: nodes
securityContext: {}
state: present
env:
- name: PYTHONUNBUFFERED
value: '1'
workingDir: /project
command:
- python3
- /project/manage.py
args:
- runserver
- 239.255.0.42:8000
ports:
- protocol: TCP
containerPort: 8000
image: http://docker-host:5000/testapp/ansible-container-nodes
replicas: 1
strategy:
type: RollingUpdate
tags:
- start
- restart