forked from alphawelab/netbox-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetbox-deployment.yaml
More file actions
589 lines (589 loc) · 15.3 KB
/
netbox-deployment.yaml
File metadata and controls
589 lines (589 loc) · 15.3 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
---
apiVersion: v1
kind: Namespace
metadata:
name: netbox
labels:
name: netbox
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: netbox-redis
namespace: netbox
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: netbox-redis
app.kubernetes.io/part-of: netbox
spec:
containers:
- args:
- sh
- -c
- redis-server --appendonly yes --requirepass $REDIS_PASSWORD
env:
- name: REDIS_PASSWORD
valueFrom:
configMapKeyRef:
key: REDIS_PASSWORD
name: netbox-redis-env
image: redis:4-alpine
name: netbox-redis
resources: {}
volumeMounts:
- mountPath: /data
name: netbox-redis-pvc
restartPolicy: Always
volumes:
- name: netbox-redis-pvc
persistentVolumeClaim:
claimName: netbox-redis-pvc
status: {}
---
apiVersion: v1
kind: Service
metadata:
name: netbox-redis
namespace: netbox
labels:
app.kubernetes.io/name: netbox-redis
app.kubernetes.io/part-of: netbox
spec:
ports:
- protocol: TCP
port: 6379
targetPort: 6379
selector:
app.kubernetes.io/name: netbox-redis
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: netbox-postgres
namespace: netbox
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: netbox-postgres
app.kubernetes.io/part-of: netbox
spec:
containers:
- env:
- name: POSTGRES_DB
valueFrom:
configMapKeyRef:
key: POSTGRES_DB
name: netbox-postgres-env
- name: POSTGRES_PASSWORD
valueFrom:
configMapKeyRef:
key: POSTGRES_PASSWORD
name: netbox-postgres-env
- name: POSTGRES_USER
valueFrom:
configMapKeyRef:
key: POSTGRES_USER
name: netbox-postgres-env
image: postgres:10-alpine
name: netbox-postgres
resources: {}
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: netbox-postgres-pvc
restartPolicy: Always
volumes:
- name: netbox-postgres-pvc
persistentVolumeClaim:
claimName: netbox-postgres-pvc
status: {}
---
apiVersion: v1
kind: Service
metadata:
name: netbox-postgres
namespace: netbox
labels:
app.kubernetes.io/name: netbox-postgres
app.kubernetes.io/part-of: netbox
spec:
ports:
- protocol: TCP
port: 5432
targetPort: 5432
selector:
app.kubernetes.io/name: netbox-postgres
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: netbox-worker
namespace: netbox
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: netbox-worker
app.kubernetes.io/part-of: netbox
spec:
containers:
- args:
- rqworker
command:
- python3
- /opt/netbox/netbox/manage.py
env:
- name: CORS_ORIGIN_ALLOW_ALL
valueFrom:
configMapKeyRef:
key: CORS_ORIGIN_ALLOW_ALL
name: netbox-env
- name: DB_HOST
valueFrom:
configMapKeyRef:
key: DB_HOST
name: netbox-env
- name: DB_NAME
valueFrom:
configMapKeyRef:
key: DB_NAME
name: netbox-env
- name: DB_PASSWORD
valueFrom:
configMapKeyRef:
key: DB_PASSWORD
name: netbox-env
- name: DB_USER
valueFrom:
configMapKeyRef:
key: DB_USER
name: netbox-env
- name: EMAIL_FROM
valueFrom:
configMapKeyRef:
key: EMAIL_FROM
name: netbox-env
- name: EMAIL_PASSWORD
valueFrom:
configMapKeyRef:
key: EMAIL_PASSWORD
name: netbox-env
- name: EMAIL_PORT
valueFrom:
configMapKeyRef:
key: EMAIL_PORT
name: netbox-env
- name: EMAIL_SERVER
valueFrom:
configMapKeyRef:
key: EMAIL_SERVER
name: netbox-env
- name: EMAIL_TIMEOUT
valueFrom:
configMapKeyRef:
key: EMAIL_TIMEOUT
name: netbox-env
- name: EMAIL_USERNAME
valueFrom:
configMapKeyRef:
key: EMAIL_USERNAME
name: netbox-env
- name: MAX_PAGE_SIZE
valueFrom:
configMapKeyRef:
key: MAX_PAGE_SIZE
name: netbox-env
- name: MEDIA_ROOT
valueFrom:
configMapKeyRef:
key: MEDIA_ROOT
name: netbox-env
- name: NAPALM_PASSWORD
valueFrom:
configMapKeyRef:
key: NAPALM_PASSWORD
name: netbox-env
- name: NAPALM_TIMEOUT
valueFrom:
configMapKeyRef:
key: NAPALM_TIMEOUT
name: netbox-env
- name: NAPALM_USERNAME
valueFrom:
configMapKeyRef:
key: NAPALM_USERNAME
name: netbox-env
- name: REDIS_CACHE_DATABASE
valueFrom:
configMapKeyRef:
key: REDIS_CACHE_DATABASE
name: netbox-env
- name: REDIS_DATABASE
valueFrom:
configMapKeyRef:
key: REDIS_DATABASE
name: netbox-env
- name: REDIS_HOST
valueFrom:
configMapKeyRef:
key: REDIS_HOST
name: netbox-env
- name: REDIS_PASSWORD
valueFrom:
configMapKeyRef:
key: REDIS_PASSWORD
name: netbox-env
- name: REDIS_SSL
valueFrom:
configMapKeyRef:
key: REDIS_SSL
name: netbox-env
- name: SECRET_KEY
valueFrom:
configMapKeyRef:
key: SECRET_KEY
name: netbox-env
- name: SUPERUSER_API_TOKEN
valueFrom:
configMapKeyRef:
key: SUPERUSER_API_TOKEN
name: netbox-env
- name: SUPERUSER_EMAIL
valueFrom:
configMapKeyRef:
key: SUPERUSER_EMAIL
name: netbox-env
- name: SUPERUSER_NAME
valueFrom:
configMapKeyRef:
key: SUPERUSER_NAME
name: netbox-env
- name: SUPERUSER_PASSWORD
valueFrom:
configMapKeyRef:
key: SUPERUSER_PASSWORD
name: netbox-env
- name: WEBHOOKS_ENABLED
valueFrom:
configMapKeyRef:
key: WEBHOOKS_ENABLED
name: netbox-env
image: netboxcommunity/netbox:latest
name: netbox-worker
resources: {}
volumeMounts:
- mountPath: /opt/netbox/netbox/static
name: netbox-static-files-pvc
- mountPath: /opt/netbox/netbox/media
name: netbox-media-files-pvc
restartPolicy: Always
volumes:
- name: netbox-media-files-pvc
persistentVolumeClaim:
claimName: netbox-media-files-pvc
- name: netbox-static-files-pvc
persistentVolumeClaim:
claimName: netbox-static-files-pvc
status: {}
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: netbox-server
namespace: netbox
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: netbox-server
app.kubernetes.io/part-of: netbox
spec:
containers:
- env:
- name: CORS_ORIGIN_ALLOW_ALL
valueFrom:
configMapKeyRef:
key: CORS_ORIGIN_ALLOW_ALL
name: netbox-env
- name: DB_HOST
valueFrom:
configMapKeyRef:
key: DB_HOST
name: netbox-env
- name: DB_NAME
valueFrom:
configMapKeyRef:
key: DB_NAME
name: netbox-env
- name: DB_PASSWORD
valueFrom:
configMapKeyRef:
key: DB_PASSWORD
name: netbox-env
- name: DB_USER
valueFrom:
configMapKeyRef:
key: DB_USER
name: netbox-env
- name: EMAIL_FROM
valueFrom:
configMapKeyRef:
key: EMAIL_FROM
name: netbox-env
- name: EMAIL_PASSWORD
valueFrom:
configMapKeyRef:
key: EMAIL_PASSWORD
name: netbox-env
- name: EMAIL_PORT
valueFrom:
configMapKeyRef:
key: EMAIL_PORT
name: netbox-env
- name: EMAIL_SERVER
valueFrom:
configMapKeyRef:
key: EMAIL_SERVER
name: netbox-env
- name: EMAIL_TIMEOUT
valueFrom:
configMapKeyRef:
key: EMAIL_TIMEOUT
name: netbox-env
- name: EMAIL_USERNAME
valueFrom:
configMapKeyRef:
key: EMAIL_USERNAME
name: netbox-env
- name: MAX_PAGE_SIZE
valueFrom:
configMapKeyRef:
key: MAX_PAGE_SIZE
name: netbox-env
- name: MEDIA_ROOT
valueFrom:
configMapKeyRef:
key: MEDIA_ROOT
name: netbox-env
- name: NAPALM_PASSWORD
valueFrom:
configMapKeyRef:
key: NAPALM_PASSWORD
name: netbox-env
- name: NAPALM_TIMEOUT
valueFrom:
configMapKeyRef:
key: NAPALM_TIMEOUT
name: netbox-env
- name: NAPALM_USERNAME
valueFrom:
configMapKeyRef:
key: NAPALM_USERNAME
name: netbox-env
- name: REDIS_CACHE_DATABASE
valueFrom:
configMapKeyRef:
key: REDIS_CACHE_DATABASE
name: netbox-env
- name: REDIS_DATABASE
valueFrom:
configMapKeyRef:
key: REDIS_DATABASE
name: netbox-env
- name: REDIS_HOST
valueFrom:
configMapKeyRef:
key: REDIS_HOST
name: netbox-env
- name: REDIS_PASSWORD
valueFrom:
configMapKeyRef:
key: REDIS_PASSWORD
name: netbox-env
- name: REDIS_SSL
valueFrom:
configMapKeyRef:
key: REDIS_SSL
name: netbox-env
- name: SECRET_KEY
valueFrom:
configMapKeyRef:
key: SECRET_KEY
name: netbox-env
- name: SUPERUSER_API_TOKEN
valueFrom:
configMapKeyRef:
key: SUPERUSER_API_TOKEN
name: netbox-env
- name: SUPERUSER_EMAIL
valueFrom:
configMapKeyRef:
key: SUPERUSER_EMAIL
name: netbox-env
- name: SUPERUSER_NAME
valueFrom:
configMapKeyRef:
key: SUPERUSER_NAME
name: netbox-env
- name: SUPERUSER_PASSWORD
valueFrom:
configMapKeyRef:
key: SUPERUSER_PASSWORD
name: netbox-env
- name: WEBHOOKS_ENABLED
valueFrom:
configMapKeyRef:
key: WEBHOOKS_ENABLED
name: netbox-env
image: netboxcommunity/netbox:latest
name: netbox
resources: {}
volumeMounts:
- mountPath: /opt/netbox/netbox/static
name: netbox-static-files-pvc
- mountPath: /opt/netbox/netbox/media
name: netbox-media-files-pvc
restartPolicy: Always
volumes:
- name: netbox-media-files-pvc
persistentVolumeClaim:
claimName: netbox-media-files-pvc
- name: netbox-static-files-pvc
persistentVolumeClaim:
claimName: netbox-static-files-pvc
status: {}
---
apiVersion: v1
kind: Service
metadata:
name: netbox-server
namespace: netbox
labels:
app.kubernetes.io/name: netbox-server
app.kubernetes.io/part-of: netbox
spec:
ports:
- protocol: TCP
port: 8001
targetPort: 8001
selector:
app.kubernetes.io/name: netbox-server
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: netbox-nginx
namespace: netbox
labels:
app.kubernetes.io/name: netbox-nginx
app.kubernetes.io/part-of: netbox
spec:
selector:
matchLabels:
app.kubernetes.io/name: netbox-nginx
app.kubernetes.io/part-of: netbox
replicas: 1
template:
metadata:
labels:
app.kubernetes.io/name: netbox-nginx
app.kubernetes.io/part-of: netbox
spec:
containers:
- name: netbox-nginx
image: nginx:stable-alpine
ports:
- containerPort: 80
command: ["nginx"]
args: ["-c", "/etc/netbox-nginx/nginx.conf","-g", "daemon off;"]
volumeMounts:
- name: netbox-static-files-pvc
mountPath: /opt/netbox/netbox/static
- name: netbox-nginx-config
mountPath: /etc/netbox-nginx
restartPolicy: Always
volumes:
- name: netbox-static-files-pvc
persistentVolumeClaim:
claimName: netbox-static-files-pvc
- name: netbox-nginx-config
configMap:
name: netbox-nginx-env
---
apiVersion: v1
kind: Service
metadata:
name: netbox-nginx
namespace: netbox
spec:
ports:
- protocol: TCP
port: 80
targetPort: 80
selector:
app.kubernetes.io/name: netbox-nginx
---
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: netbox-pg-dump
namespace: netbox
spec:
schedule: "0 0 * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: netbox-pg-dump
image: dustnic82/postgresclient-scp:latest
args:
- /bin/sh
- -c
- |
pg_dump -U "$(POSTGRES_USER)" -h netbox-postgres "$(POSTGRES_DB)" > /var/lib/backups/$(date '+%Y-%m-%d-%H-%M').sql
if [ $? -ne 0 ]
then
echo "pg_dump failed"
else
echo "pg_dump succesful: /var/lib/backups/$(date '+%Y-%m-%d-%H-%M').sql"
fi
env:
- name: POSTGRES_DB
valueFrom:
configMapKeyRef:
key: POSTGRES_DB
name: netbox-postgres-env
- name: PGPASSWORD
valueFrom:
configMapKeyRef:
key: POSTGRES_PASSWORD
name: netbox-postgres-env
- name: POSTGRES_USER
valueFrom:
configMapKeyRef:
key: POSTGRES_USER
name: netbox-postgres-env
volumeMounts:
- mountPath: /var/lib/backups
name: netbox-postgres-pvc
subPath: backups
restartPolicy: OnFailure
volumes:
- name: netbox-postgres-pvc
persistentVolumeClaim:
claimName: netbox-postgres-pvc