feat: add linkwarden

This commit is contained in:
Peter 2023-12-21 14:56:26 +01:00
parent ac0f1f7dc9
commit ceca1f3bc9
Signed by: prskr
GPG key ID: F56BED6903BC5E37
30 changed files with 1971 additions and 45 deletions

File diff suppressed because it is too large Load diff

View file

@ -6,7 +6,7 @@ metadata:
creationTimestamp: null
labels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.4.3
app.kubernetes.io/version: 5.5.0
name: pgupgrades.postgres-operator.crunchydata.com
spec:
group: postgres-operator.crunchydata.com
@ -1072,4 +1072,4 @@ spec:
served: true
storage: true
subresources:
status: {}
status: {}

View file

@ -6,7 +6,7 @@ metadata:
creationTimestamp: null
labels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.4.3
app.kubernetes.io/version: 5.5.0
name: postgresclusters.postgres-operator.crunchydata.com
spec:
group: postgres-operator.crunchydata.com
@ -15462,4 +15462,4 @@ spec:
served: true
storage: true
subresources:
status: {}
status: {}

View file

@ -5,7 +5,7 @@ metadata:
name: default-cluster
namespace: postgres
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.4-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.5-0
postgresVersion: 15
users:
- name: postgres
@ -27,6 +27,9 @@ spec:
- name: hedgedoc
databases:
- hedgedoc
- name: linkwarden
databases:
- linkwarden
- name: nextcloud
databases:
- nextcloud
@ -65,7 +68,7 @@ spec:
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.47-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.47-2
configuration:
- secret:
name: pgo-s3-creds

View file

@ -60,4 +60,14 @@ spec:
capabilities: { drop: [ALL] }
readOnlyRootFilesystem: true
runAsNonRoot: true
serviceAccountName: pgo
serviceAccountName: pgo
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1
preference:
matchExpressions:
- key: kubernetes.io/arch
operator: In
values:
- arm64

View file

@ -102,6 +102,7 @@ rules:
- apiGroups:
- postgres-operator.crunchydata.com
resources:
- pgadmins
- pgupgrades
verbs:
- get
@ -110,18 +111,19 @@ rules:
- apiGroups:
- postgres-operator.crunchydata.com
resources:
- pgadmins/finalizers
- pgupgrades/finalizers
- postgresclusters/finalizers
verbs:
- patch
- update
- apiGroups:
- postgres-operator.crunchydata.com
resources:
- pgadmins/status
- pgupgrades/status
- postgresclusters/status
verbs:
- get
- patch
- watch
- apiGroups:
- postgres-operator.crunchydata.com
resources:
@ -131,18 +133,6 @@ rules:
- list
- patch
- watch
- apiGroups:
- postgres-operator.crunchydata.com
resources:
- postgresclusters/finalizers
verbs:
- update
- apiGroups:
- postgres-operator.crunchydata.com
resources:
- postgresclusters/status
verbs:
- patch
- apiGroups:
- rbac.authorization.k8s.io
resources:

View file

@ -11,5 +11,4 @@ roleRef:
name: postgres-operator
subjects:
- kind: ServiceAccount
name: pgo
namespace: postgres-system
name: pgo