File tree Expand file tree Collapse file tree 1 file changed +38
-1
lines changed Expand file tree Collapse file tree 1 file changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -480,11 +480,15 @@ Thanks to @steled, here is what a potential Kubernetes deployment configuration
480
480
apiVersion : v1
481
481
kind : Namespace
482
482
metadata :
483
+ labels :
484
+ name : apprise
483
485
name : apprise
484
486
---
485
487
apiVersion : v1
486
488
kind : ConfigMap
487
489
metadata :
490
+ labels :
491
+ name : apprise
488
492
name : apprise-api-override-conf-config
489
493
namespace : apprise
490
494
data :
@@ -495,10 +499,43 @@ data:
495
499
apiVersion : v1
496
500
kind : Secret
497
501
metadata :
502
+ labels :
503
+ name : apprise
498
504
name : apprise-api-htpasswd-secret
499
505
namespace : apprise
500
506
data :
501
- .htpasswd : <base64_encoded> # add output of: htpasswd -c apprise_api.htpasswd dgops-kubernetes && cat apprise_api.htpasswd | base64
507
+ .htpasswd : <base64_encoded> # add output of: htpasswd -c apprise_api.htpasswd <USERNAME> && cat apprise_api.htpasswd | base64
508
+ ---
509
+ apiVersion : v1
510
+ kind : PersistentVolumeClaim
511
+ metadata :
512
+ labels :
513
+ name : apprise
514
+ name : apprise-data
515
+ namespace : apprise
516
+ spec :
517
+ accessModes :
518
+ - ReadWriteOnce
519
+ resources :
520
+ requests :
521
+ storage : 1Gi
522
+ ---
523
+ apiVersion : v1
524
+ kind : Service
525
+ metadata :
526
+ labels :
527
+ name : apprise
528
+ name : apprise
529
+ namespace : apprise
530
+ spec :
531
+ ports :
532
+ - name : http
533
+ port : 80
534
+ protocol : TCP
535
+ targetPort : 8000
536
+ selector :
537
+ name : apprise
538
+ type : ClusterIP
502
539
---
503
540
apiVersion : apps/v1
504
541
kind : Deployment
You can’t perform that action at this time.
0 commit comments