Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ AboutBits PostgreSQL Operator is a Kubernetes operator that helps you manage Pos
│ │ │ │ │ ClusterConnection Controller │ │ │
│ │ ┌────────────────────┐ │ │ ├──────────────────────────────────┤ │ │
│ │ │ ClusterConnection │ │ │ │ Database Controller │ │ │
│ │ └──────────▲─────────┘ │ │ ├──────────────────────────────────┤ │ │
│ │ │ │ │ Role Controller │ │ │
│ │ ┌──────────┴─────────┐ │ │ ├──────────────────────────────────┤ │ │
│ │ └─────────▲──────────┘ │ │ ├──────────────────────────────────┤ │ │
│ │ │ │ │ Role Controller │ │ │
│ │ ┌─────────┴──────────┐ │ │ ├──────────────────────────────────┤ │ │
Comment thread
ThoSap marked this conversation as resolved.
Outdated
│ │ │ - Database │ │ │ │ Schema Controller │ │ │
│ │ │ - Schema │ │ │ ├──────────────────────────────────┤ │ │
│ │ │ - Role │ │ │ │ Grant Controller │ │ │
Expand All @@ -26,7 +26,7 @@ AboutBits PostgreSQL Operator is a Kubernetes operator that helps you manage Pos
│ │ │
│ ┌────────────────▼─────────────────┐ │
│ │ PostgreSQL Server │ │
│ │ (SQL) │ │
│ │ (JDBC/SQL) │ │
│ └──────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────────────┘
```
Expand Down
8 changes: 7 additions & 1 deletion operator/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ quarkus:
values:
replicas:
property: replicas
value: 1
value-as-int: 1
paths:
- (kind == Deployment).spec.replicas
image-pull-policy:
Expand Down Expand Up @@ -109,6 +109,12 @@ quarkus:
value-as-map: {}
path: (kind == Deployment).spec.template.spec.affinity
description: Kubernetes affinity configuration for Pod scheduling
values-schema:
properties:
"affinity":
name: app.affinity
description: Kubernetes affinity configuration for Pod scheduling
type: object
expressions:
release-name-labels:
expression: "{{ .Release.Name }}"
Expand Down