feat(plausible): basic setup
All checks were successful
Renovate / renovate (push) Successful in 1m1s
All checks were successful
Renovate / renovate (push) Successful in 1m1s
This commit is contained in:
parent
d777e5e510
commit
24432f22e5
8 changed files with 111 additions and 1 deletions
1
plausible/.gitattributes
vendored
Normal file
1
plausible/.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
config/*.env filter=age diff=age merge=age -text
|
BIN
plausible/config/plausible.env
Normal file
BIN
plausible/config/plausible.env
Normal file
Binary file not shown.
20
plausible/kustomization.yaml
Normal file
20
plausible/kustomization.yaml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
namespace: plausible
|
||||||
|
|
||||||
|
images:
|
||||||
|
- name: plausible
|
||||||
|
newName: ghcr.io/plausible/community-edition
|
||||||
|
newTag: "v2.1.4"
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- resources/namespace.yaml
|
||||||
|
- resources/postgres/db.yaml
|
||||||
|
- resources/postgres/user.yaml
|
||||||
|
- resources/deployment.yaml
|
||||||
|
|
||||||
|
secretGenerator:
|
||||||
|
- name: plausible-config
|
||||||
|
envs:
|
||||||
|
- "config/plausible.env"
|
|
@ -1 +0,0 @@
|
||||||
ToLqfKE7y4wFvVbz
|
|
65
plausible/resources/deployment.yaml
Normal file
65
plausible/resources/deployment.yaml
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: plausible
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: plausible
|
||||||
|
replicas: 2
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: plausible
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: plausible
|
||||||
|
image: plausible
|
||||||
|
env:
|
||||||
|
- name: DATABASE_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: db-credentials-plausible
|
||||||
|
key: POSTGRES_URL
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: plausible-config
|
||||||
|
ports:
|
||||||
|
- containerPort: 3000
|
||||||
|
protocol: TCP
|
||||||
|
name: web
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /var/lib/plausible/tmp
|
||||||
|
name: temp
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "256Mi"
|
||||||
|
cpu: "250m"
|
||||||
|
limits:
|
||||||
|
memory: "512Mi"
|
||||||
|
cpu: "500m"
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
affinity:
|
||||||
|
nodeAffinity:
|
||||||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- weight: 100
|
||||||
|
preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: kubernetes.io/arch
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- arm64
|
||||||
|
volumes:
|
||||||
|
- name: temp
|
||||||
|
emptyDir:
|
||||||
|
sizeLimit: 1500Mi
|
||||||
|
securityContext:
|
||||||
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
||||||
|
runAsNonRoot: true
|
7
plausible/resources/namespace.yaml
Normal file
7
plausible/resources/namespace.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: plausible
|
||||||
|
labels:
|
||||||
|
prometheus: default
|
8
plausible/resources/postgres/db.yaml
Normal file
8
plausible/resources/postgres/db.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
apiVersion: db.movetokube.com/v1alpha1
|
||||||
|
kind: Postgres
|
||||||
|
metadata:
|
||||||
|
name: plausible
|
||||||
|
spec:
|
||||||
|
database: plausible
|
||||||
|
dropOnDelete: false
|
10
plausible/resources/postgres/user.yaml
Normal file
10
plausible/resources/postgres/user.yaml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
apiVersion: db.movetokube.com/v1alpha1
|
||||||
|
kind: PostgresUser
|
||||||
|
metadata:
|
||||||
|
name: plausible
|
||||||
|
spec:
|
||||||
|
role: plausible
|
||||||
|
database: plausible
|
||||||
|
secretName: db-credentials
|
||||||
|
privileges: OWNER
|
Loading…
Reference in a new issue