new repo
This commit is contained in:
53
apps/tautulli/tautulli-deployment.yaml
Normal file
53
apps/tautulli/tautulli-deployment.yaml
Normal file
@@ -0,0 +1,53 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: tautulli
|
||||
name: tautulli-deployment
|
||||
namespace: default
|
||||
spec:
|
||||
progressDeadlineSeconds: 600
|
||||
replicas: 1
|
||||
revisionHistoryLimit: 10
|
||||
selector:
|
||||
matchLabels:
|
||||
app: tautulli
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxSurge: 25%
|
||||
maxUnavailable: 25%
|
||||
type: RollingUpdate
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
app: tautulli
|
||||
spec:
|
||||
containers:
|
||||
- image: lscr.io/linuxserver/tautulli:latest
|
||||
imagePullPolicy: Always
|
||||
name: tautulli
|
||||
ports:
|
||||
- containerPort: 8181
|
||||
protocol: TCP
|
||||
resources: {}
|
||||
terminationMessagePath: /dev/termination-log
|
||||
terminationMessagePolicy: File
|
||||
volumeMounts:
|
||||
- mountPath: /config
|
||||
name: tautulli-config
|
||||
- mountPath: /persistentvolumes
|
||||
name: nfs-client-root
|
||||
dnsPolicy: ClusterFirst
|
||||
restartPolicy: Always
|
||||
schedulerName: default-scheduler
|
||||
securityContext: {}
|
||||
terminationGracePeriodSeconds: 30
|
||||
volumes:
|
||||
- name: tautulli-config
|
||||
persistentVolumeClaim:
|
||||
claimName: 10g-tautulli-config
|
||||
- name: nfs-client-root
|
||||
nfs:
|
||||
path: /volume1/k8s
|
||||
server: 192.168.1.176
|
||||
25
apps/tautulli/tautulli-ingress.yaml
Normal file
25
apps/tautulli/tautulli-ingress.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
annotations:
|
||||
acme.cert-manager.io/http01-edit-in-place: "true"
|
||||
cert-manager.io/issuer: letsencrypt-prod
|
||||
kubernetes.io/ingress.class: nginx
|
||||
name: tautulli-ingress
|
||||
namespace: default
|
||||
spec:
|
||||
rules:
|
||||
- host: tautulli.lilpenguins.com
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
service:
|
||||
name: tautulli-service
|
||||
port:
|
||||
number: 8181
|
||||
path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- tautulli.lilpenguins.com
|
||||
secretName: tautulli-tls-prod
|
||||
12
apps/tautulli/tautulli-service.yaml
Normal file
12
apps/tautulli/tautulli-service.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: tautulli-service
|
||||
spec:
|
||||
ports:
|
||||
- port: 8181
|
||||
targetPort: 8181
|
||||
name: http
|
||||
selector:
|
||||
app: tautulli
|
||||
19
apps/tautulli/tautulli-storage.yaml
Normal file
19
apps/tautulli/tautulli-storage.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
annotations:
|
||||
name: 10g-tautulli-config
|
||||
namespace: default
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
storageClassName: synology-iscsi-storage
|
||||
status:
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
capacity:
|
||||
storage: 10Gi
|
||||
phase: Bound
|
||||
Reference in New Issue
Block a user