Skip to content

Commit

Permalink
Merge pull request #1529 from rzetelskik/docs-remove-xref-suppression
Browse files Browse the repository at this point in the history
Remove myst.xref_missing suppression in Sphinx config
  • Loading branch information
scylla-operator-bot[bot] authored Nov 6, 2023
2 parents 4026146 + 948cd6c commit e4d3e42
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/source/_ext/scylladb_markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def setup(self):
try:
self.app.setup_extension('myst_parser')
self.app.config.myst_enable_extensions = ["colon_fence"]
self.app.config.myst_heading_anchors = 6

# TODO: https://github.com/scylladb/scylla-operator/issues/1421
# TODO: https://github.com/scylladb/scylla-operator/issues/1422
self.app.config.suppress_warnings = ["myst.xref_missing", "myst.header"]
self.app.config.suppress_warnings = ["myst.header"]

except ImportError:
raise RuntimeError("myst-parser is not installed")
Expand Down
2 changes: 1 addition & 1 deletion docs/source/eks.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cd examples/eks
./eks.sh -z "$EKS_ZONES" -r "$EKS_REGION"
```

After you deploy, see how you can [benchmark your cluster with cassandra-stress](#benchmark-with-cassandra-stress).
After you deploy, see how you can [benchmark your cluster with cassandra-stress](generic.md#benchmark-with-cassandra-stress).

## Walkthrough

Expand Down
2 changes: 1 addition & 1 deletion docs/source/gke.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cd examples/gke
Make sure to pass a ZONE (ex.: us-west1-b) and not a REGION (ex.: us-west1) or it will deploy nodes in each ZONE available in the region.
:::

After you deploy, see how you can [benchmark your cluster with cassandra-stress](#benchmark-with-cassandra-stress).
After you deploy, see how you can [benchmark your cluster with cassandra-stress](generic.md#benchmark-with-cassandra-stress).

## Walkthrough

Expand Down
2 changes: 1 addition & 1 deletion docs/source/multidc/multidc.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,4 +598,4 @@ kubectl --context="${CONTEXT_DC2}" patch scyllacluster/scylla-cluster --type mer
## ScyllaDBMonitoring

To monitor your cluster, deploy ScyllaDBMonitoring in every datacenter independently.
To deploy ScyllaDB Monitoring, follow the steps described in [Deploy managed monitoring](../monitoring#deploy-managed-monitoring) in ScyllaDB Operator documentation.
To deploy ScyllaDB Monitoring, follow the steps described in [Deploy managed monitoring](../monitoring.md#deploy-managed-monitoring) in ScyllaDB Operator documentation.

0 comments on commit e4d3e42

Please sign in to comment.