Add profilarr to the stack, why not...
This commit is contained in:
parent
da4e51ca6b
commit
92cb50a2b9
4 changed files with 76 additions and 0 deletions
17
app-of-apps/profilarr.yaml
Normal file
17
app-of-apps/profilarr.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: profilarr
|
||||
namespace: argocd
|
||||
spec:
|
||||
destination:
|
||||
namespace: profilarr
|
||||
server: https://kubernetes.default.svc
|
||||
project: apps
|
||||
source:
|
||||
path: apps-kustomized/profilarr
|
||||
repoURL: http://forgejo.git.svc.cluster.local/martyn/infra4talos
|
||||
targetRevision: HEAD
|
||||
syncPolicy:
|
||||
automated:
|
||||
selfHeal: true
|
||||
33
apps-kustomized/profilarr/deploy.yaml
Normal file
33
apps-kustomized/profilarr/deploy.yaml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: profilarr
|
||||
name: profilarr
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: profilarr
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
app: profilarr
|
||||
spec:
|
||||
containers:
|
||||
- image: ghcr.io/dictionarry-hub/profilarr:2.1.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: profilarr
|
||||
ports:
|
||||
- containerPort: 7878
|
||||
name: http
|
||||
protocol: TCP
|
||||
volumeMounts:
|
||||
- mountPath: /config
|
||||
name: config
|
||||
volumes:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: profilarr-config-data
|
||||
11
apps-kustomized/profilarr/pvc.yaml
Normal file
11
apps-kustomized/profilarr/pvc.yaml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: profilarr-config-data
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
storageClassName: longhorn-fast
|
||||
15
apps-kustomized/profilarr/svc.yaml
Normal file
15
apps-kustomized/profilarr/svc.yaml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
external-dns.alpha.kubernetes.io/hostname: profilarr.martyn.berlin
|
||||
labels:
|
||||
app: profilarr
|
||||
name: profilarr
|
||||
spec:
|
||||
ports:
|
||||
- targetPort: 6868
|
||||
port: http
|
||||
selector:
|
||||
app: profilarr
|
||||
type: LoadBalancer
|
||||
Loading…
Add table
Reference in a new issue