Skip to content

Commit ab6e6c9

Browse files
authored
Update docs (CrunchyData#3604)
Issue: [sc-18286]
1 parent 43c5c62 commit ab6e6c9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

config/crd/bases/postgres-operator.crunchydata.com_postgresclusters.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9458,8 +9458,8 @@ spec:
94589458
type: object
94599459
tablespaceVolumes:
94609460
description: The list of tablespaces volumes to mount for this
9461-
postgrescluster This function is currently in alpha as of
9462-
PGO v5.4
9461+
postgrescluster This field requires enabling TablespaceVolumes
9462+
feature gate
94639463
items:
94649464
properties:
94659465
dataVolumeClaimSpec:

docs/content/guides/tablespaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ weight: 160
66
---
77

88
{{% notice warning %}}
9-
PGO tablespaces is currently in `Alpha` and may interfere with other features.
10-
(See below for more details.)
9+
PGO tablespaces currently requires enabling the `TablespaceVolumes` feature gate
10+
and may interfere with other features. (See below for more details.)
1111
{{% /notice %}}
1212

1313
A [Tablespace](https://www.postgresql.org/docs/current/manage-ag-tablespaces.html)
@@ -43,7 +43,7 @@ Postgres Operator adds many conveniences to make it easier to use tablespaces.
4343

4444
## Enabling TablespaceVolumes in PGO v5
4545

46-
In PGO v5, tablespace support is currently in `Alpha`. If you want to use this
46+
In PGO v5, tablespace support is currently feature-gated. If you want to use this
4747
experimental feature, you will need to enable the feature via the PGO `TablespaceVolumes`
4848
[feature gate](https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/).
4949

docs/content/references/crd.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/content/tutorial/customize-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ PGO allows you to configure custom
204204
[sidecar Containers](https://kubernetes.io/docs/concepts/workloads/pods/#how-pods-manage-multiple-containers)
205205
for your PostgreSQL instance and pgBouncer Pods.
206206

207-
To use the custom sidecar features, currently in `Alpha`, you will need to enable
207+
To use the custom sidecar features, you will need to enable
208208
them via the PGO
209209
[feature gate](https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/).
210210

@@ -318,7 +318,7 @@ respective Pods until the feature gate is enabled.
318318
### Considerations
319319

320320
- Volume mounts and other Pod details are subject to change between releases.
321-
- The custom sidecar features are currently in `Alpha`. Any sidecar Containers,
321+
- The custom sidecar features are currently feature-gated. Any sidecar Containers,
322322
as well as any settings included in their configuration, are added and used at
323323
your own risk. Improperly configured sidecar Containers could impact the health
324324
and/or security of your PostgreSQL cluster!

pkg/apis/postgres-operator.crunchydata.com/v1beta1/postgrescluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ type PostgresInstanceSetSpec struct {
480480
WALVolumeClaimSpec *corev1.PersistentVolumeClaimSpec `json:"walVolumeClaimSpec,omitempty"`
481481

482482
// The list of tablespaces volumes to mount for this postgrescluster
483-
// This function is currently in alpha as of PGO v5.4
483+
// This field requires enabling TablespaceVolumes feature gate
484484
// +listType=map
485485
// +listMapKey=name
486486
// +optional

0 commit comments

Comments
 (0)