Conversation
b955cf4 to
c868117
Compare
| CREATE TABLE validation.t (id INT, v TEXT) | ||
| CLUSTERED INTO 6 SHARDS WITH (number_of_replicas = 1); | ||
| INSERT INTO validation.t VALUES (1, 'a'), (2, 'b'); |
There was a problem hiding this comment.
On a fresh cluster only doc exists, so CREATE TABLE validation.t fails with SchemaUnknownException[Schema 'validation' unknown]. Creating the schema first makes the snippet copy-pasteable:
| CREATE TABLE validation.t (id INT, v TEXT) | |
| CLUSTERED INTO 6 SHARDS WITH (number_of_replicas = 1); | |
| INSERT INTO validation.t VALUES (1, 'a'), (2, 'b'); | |
| CREATE SCHEMA IF NOT EXISTS validation; | |
| CREATE TABLE validation.t (id INT, v TEXT) | |
| CLUSTERED INTO 6 SHARDS WITH (number_of_replicas = 1); | |
| INSERT INTO validation.t VALUES (1, 'a'), (2, 'b'); |
There was a problem hiding this comment.
I think I'll leave this as-is. CrateDB creates the schema implicitly on CREATE TABLE, so validation.t works on a fresh cluster without a preceding CREATE SCHEMA. https://cratedb.com/docs/crate/reference/en/latest/general/ddl/create-table.html#schemas
adding it here would slightly muddy the TC-09 cleanup.
|
While you're in this file — the last Limitations bullet is stale: - **``CRATE_CONTROL_IMAGE`` is required**: The operator does not validate
that this variable is set. If it is missing, StatefulSets will be
created with an empty image reference and pods will fail to pull.
- **``CRATEDB_OPERATOR_CRATE_CONTROL_IMAGE`` is required**: The operator fails
fast when ``CLOUD_PROVIDER=openshift`` and the sidecar image is unset, so a
missing value is caught at deploy time. StatefulSets cannot be created without
a sidecar image.(The old text also used the bare Three cosmetic RST things in the same file — entirely take-or-leave, docutils doesn't warn on any of them (only mentioning them because
|
WalBeh
left a comment
There was a problem hiding this comment.
LGTM, please have a look at the comments
Co-authored-by: Walter Behmann <40459646+WalBeh@users.noreply.github.com>
Co-authored-by: Walter Behmann <40459646+WalBeh@users.noreply.github.com>
Summary of changes
Adds the public artifacts for the Red Hat OpenShift Partner Validation of the operator, plus a few OpenShift docs fixes found while running it.
partner-validation-report.md- test plan + results for the 9 lifecycle scenarios (TC-01–TC-09).RUNBOOK.md- how to execute the validation, and how to submit via Partner Connect.capture.sh- captures read-only verification evidence.manifests/- namespace + CrateDB test-cluster manifests.All scenarios passed on OpenShift
4.22.11(EUS), operator2.64.1, CrateDB6.4.4.Checklist
CHANGES.rst