parent
ac0f1f7dc9
commit
ceca1f3bc9
30 changed files with 1971 additions and 45 deletions
postgres-operator/resources
1532
postgres-operator/resources/crd/pgadmins.yaml
Normal file
1532
postgres-operator/resources/crd/pgadmins.yaml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -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: {}
|
|
@ -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: {}
|
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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:
|
||||
|
|
|
@ -11,5 +11,4 @@ roleRef:
|
|||
name: postgres-operator
|
||||
subjects:
|
||||
- kind: ServiceAccount
|
||||
name: pgo
|
||||
namespace: postgres-system
|
||||
name: pgo
|
Loading…
Add table
Add a link
Reference in a new issue