diff --git a/.github/scripts/cross_version_link_linter.py b/.github/scripts/cross_version_link_linter.py index c4e73f43e33..4192c50851e 100644 --- a/.github/scripts/cross_version_link_linter.py +++ b/.github/scripts/cross_version_link_linter.py @@ -247,7 +247,7 @@ def format_violations_for_github(self) -> str: "", "**Action Required**: Please update all cross-version links to use version variables or ensure links stay within the same version.", "", - "For more information about proper link formatting, see the [CockroachDB Docs Style Guide](https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#links)." + "For more information about proper link formatting, see the [CockroachDB Docs Style Guide](https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#links)." ]) return "\n".join(lines) diff --git a/.github/scripts/docs-prs-reviews.go b/.github/scripts/docs-prs-reviews.go index 16705229a2a..1c3221ebff8 100644 --- a/.github/scripts/docs-prs-reviews.go +++ b/.github/scripts/docs-prs-reviews.go @@ -82,8 +82,8 @@ type prReviewParse struct { UpdatedAt time.Time } -const ( - docsOrganization = "cockroachdb" +var ( + docsOrganization = maybeEnv("DOCS_ORG", "cockroachlabs") docsRepo = "docs" docsPrsTeam = "docs-prs" ) diff --git a/.github/scripts/validate_branch_existence.py b/.github/scripts/validate_branch_existence.py index e7b9470885f..cbf7c3b1ca8 100644 --- a/.github/scripts/validate_branch_existence.py +++ b/.github/scripts/validate_branch_existence.py @@ -3,7 +3,7 @@ validate_branch_existence.py (EDUENG-614) For every row in src/current/_data/versions.csv, verifies that the listed -crdb_branch_name exists as a branch in cockroachdb/generated-diagrams. +crdb_branch_name exists as a branch in the generated-diagrams repo. Also flags entries where versions.csv still points to an older branch even though the "natural" release-X.Y branch for that version now exists @@ -37,7 +37,7 @@ import urllib.request from pathlib import Path -GENERATED_DIAGRAMS_REPO = "cockroachdb/generated-diagrams" +GENERATED_DIAGRAMS_REPO = os.environ.get("GENERATED_DIAGRAMS_REPO", "cockroachdb/generated-diagrams") GITHUB_API_BASE = "https://api.github.com" VERSIONS_CSV = Path("src/current/_data/versions.csv") DOCS_ROOT = Path("src/current") @@ -139,7 +139,7 @@ def run_checks(rows: list[dict], _exists_fn=None, _has_docs_fn=None) -> list[dic "branch": branch, "message": ( f"{version}: crdb_branch_name={branch!r} does not exist " - f"in cockroachdb/generated-diagrams." + f"in {GENERATED_DIAGRAMS_REPO}." ), }) continue @@ -157,7 +157,7 @@ def run_checks(rows: list[dict], _exists_fn=None, _has_docs_fn=None) -> list[dic "expected": expected, "message": ( f"{version}: crdb_branch_name={branch!r} but {expected!r} " - f"now exists in cockroachdb/generated-diagrams. " + f"now exists in {GENERATED_DIAGRAMS_REPO}. " f"Update versions.csv to use {expected!r}." ), }) @@ -174,7 +174,7 @@ def format_comment(failures: list[dict]) -> str: return ( "## Branch Existence Check: Passed\n\n" "All `crdb_branch_name` entries in `versions.csv` exist in " - "`cockroachdb/generated-diagrams`." + f"`{GENERATED_DIAGRAMS_REPO}`." ) lines = [ @@ -258,7 +258,7 @@ def main() -> None: _run_self_tests() rows = load_versions_csv() - print(f"Checking {len(rows)} versions.csv entries against cockroachdb/generated-diagrams...\n") + print(f"Checking {len(rows)} versions.csv entries against {GENERATED_DIAGRAMS_REPO}...\n") failures = run_checks(rows) comment = format_comment(failures) diff --git a/.github/workflows/changed_files.yml b/.github/workflows/changed_files.yml index 18963c60d62..027da75716b 100644 --- a/.github/workflows/changed_files.yml +++ b/.github/workflows/changed_files.yml @@ -16,6 +16,7 @@ jobs: id: format env: GH_TOKEN: ${{ github.token }} + NETLIFY_SITE_NAME: ${{ vars.NETLIFY_SITE_NAME || 'cockroachlabs-docs' }} run: | declare -a output pr_num=${{ github.event.pull_request.number }} @@ -29,7 +30,7 @@ jobs: function generateMainFiles() { html_file=`echo "${1%.md}.html" | sed -E 's/src\/[^\/]*\///g'` - file="
  • $1
  • " + file="
  • $1
  • " output+="$file" } @@ -86,7 +87,7 @@ jobs: read -ra path <<< "$file" IFS=$OLDIFS major_version=${path[-2]} - file="
  • ${file}:
  • " + file="
  • ${file}:
  • " output+="$file" elif [[ $file == src/*/_includes/v* || $file == src/*/_includes/cockroachcloud* || $file == src/*/images/* ]] && [[ $file != src/**/*.json ]] && [[ $file != *.gitignore* ]] then diff --git a/MarkdownGuide.md b/MarkdownGuide.md index 15619dd9692..b4de4c2712d 100644 --- a/MarkdownGuide.md +++ b/MarkdownGuide.md @@ -592,7 +592,7 @@ The contents of `shared-file.md` will now appear on all of the pages where you a #### Different content depending on page name -There may be cases where the content of the include file will need to vary slightly depending on what pages that content is being shared into. For example, while working on [cockroachdb/docs#12216](https://github.com/cockroachdb/docs/pull/12216), I needed a way to: +There may be cases where the content of the include file will need to vary slightly depending on what pages that content is being shared into. For example, while working on [cockroachlabs/docs#12216](https://github.com/cockroachlabs/docs/pull/12216), I needed a way to: - Have text be a link on the [Known Limitations](https://www.cockroachlabs.com/docs/stable/known-limitations) page. - Have that same text _not_ be a link on the [Cost-Based Optimizer](https://www.cockroachlabs.com/docs/stable/cost-based-optimizer) page (since it would be a self-referring link). @@ -615,7 +615,7 @@ Locality-optimized search #### Remote includes -Sometimes, you need to include files that are maintained in other places than the `cockroachdb/docs` repo but referenced in our docs. The `remote_include` tag is used for this. We most often use this tag for code samples, which are maintained in various repos. +Sometimes, you need to include files that are maintained in other places than the `cockroachlabs/docs` repo but referenced in our docs. The `remote_include` tag is used for this. We most often use this tag for code samples, which are maintained in various repos. For code samples, you usually want to show only part of a larger file to highlight a specific technique, or due to length considerations. @@ -639,7 +639,7 @@ For more information about the `remote_include` tag, see the README in the [jeky ### Filter tabs -Use filter tabs to create navigation between related pages. The [`filter-tabs.md`](https://github.com/cockroachdb/docs/blob/main/src/current/_includes/filter-tabs.md) include generates tabs that link to different pages. +Use filter tabs to create navigation between related pages. The [`filter-tabs.md`](https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/filter-tabs.md) include generates tabs that link to different pages. **Note:** Filter tabs link to different URLs/pages, not tabs within a single page. diff --git a/README.md b/README.md index fe776def3c5..a808d5d25b9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository contains the source files for the CockroachDB documentation avai ## Suggest Improvements -Want a topic added to the docs? Need additional details or clarification? See an error or other problem? Please [open an issue](https://github.com/cockroachdb/docs/issues). +Want a topic added to the docs? Need additional details or clarification? See an error or other problem? Please [open an issue](https://github.com/cockroachlabs/docs/issues). ## Resources diff --git a/StyleGuide.md b/StyleGuide.md index 05b31906b98..f8532ebaffe 100644 --- a/StyleGuide.md +++ b/StyleGuide.md @@ -283,7 +283,7 @@ Avoid terms that imply violence or harm. - Replace "performance _hit_" with **reduced performance**. - Replace "want to _hit_ up" with **want to visit**. -Terminology around "kill" vs. "stop" vs. "terminate" is nuanced, as described [in this GitHub comment](https://github.com/cockroachdb/docs/issues/7767#issuecomment-662028864). Use your best judgement. +Terminology around "kill" vs. "stop" vs. "terminate" is nuanced, as described [in this GitHub comment](https://github.com/cockroachlabs/docs/issues/7767#issuecomment-662028864). Use your best judgement. ### Write accessible documentation @@ -372,7 +372,7 @@ A _concept_ topic explains how a particular feature works, or how a specific sys - Provide as much relevant information as you can, and then link to other pages as necessary. If there is a related [reference](#reference) topic, link to it from within the conceptual topic. -For templates that provide a starting point for writing concept topics, refer to the [concept templates](https://github.com/cockroachdb/docs/tree/main/templates/concept). +For templates that provide a starting point for writing concept topics, refer to the [concept templates](https://github.com/cockroachlabs/docs/tree/main/templates/concept). #### Examples @@ -403,7 +403,7 @@ A _task_ topic provides step-by-step instructions to complete a specific goal. T Tasks should **not** include concept or reference information; instead, a task should link to [Concept](#concept) and [Reference](#reference) topics as needed. -For templates that provide a starting point for writing task topics, refer to the [task templates](https://github.com/cockroachdb/docs/tree/main/templates/task). +For templates that provide a starting point for writing task topics, refer to the [task templates](https://github.com/cockroachlabs/docs/tree/main/templates/task). #### Examples @@ -422,7 +422,7 @@ Reference topics help users understand the precise meaning and effect of Cockroa - The content should be comprehensive and accurate. This principle might apply to other page types, but it is especially important for reference, as it is the ultimate source of truth for a particular feature or interface. - The content should be succinct. Details are often presented in table format. Prose is better suited for [Concept](#concept) topics. -For templates that provide a starting point for writing reference topics, refer to the [reference templates](https://github.com/cockroachdb/docs/tree/main/templates/reference). +For templates that provide a starting point for writing reference topics, refer to the [reference templates](https://github.com/cockroachlabs/docs/tree/main/templates/reference). #### Examples @@ -436,7 +436,7 @@ _Guides_ offer the reader a perspective on how to decide between a number of dif To accomplish this goal, guides often link to several different [Concept](#concept) topics and compare and contrast them. They can also link to multiple [Task](#task) topics. -For templates that provide a starting point for writing guide topics, refer to the [guide templates](https://github.com/cockroachdb/docs/tree/main/templates/guide). +For templates that provide a starting point for writing guide topics, refer to the [guide templates](https://github.com/cockroachlabs/docs/tree/main/templates/guide). #### Examples @@ -564,7 +564,7 @@ For include file syntax, refer to the [Markdown Guide](MarkdownGuide.md#include- Reference issues and pull requests by their corresponding number, prepended with `#`. -**Example:** `[#1](https://github.com/cockroachdb/docs/pull/1)` +**Example:** `[#1](https://github.com/cockroachlabs/docs/pull/1)` #### External links diff --git a/src/api/_includes/head.html b/src/api/_includes/head.html index a25783beed0..de0e461db0e 100755 --- a/src/api/_includes/head.html +++ b/src/api/_includes/head.html @@ -24,7 +24,7 @@ "author": { "@type": "Organization", "name": "Cockroach Labs Documentation Team", - "url": "https://github.com/cockroachdb/docs" + "url": "https://github.com/cockroachlabs/docs" } } diff --git a/src/current/Dockerfile b/src/current/Dockerfile index 12af3b7796f..35fe085e463 100644 --- a/src/current/Dockerfile +++ b/src/current/Dockerfile @@ -11,7 +11,7 @@ FROM ruby:3.4-slim # Version labels LABEL org.opencontainers.image.title="CockroachDB Docs Builder" LABEL org.opencontainers.image.description="Hermetic build environment for CockroachDB documentation" -LABEL org.opencontainers.image.source="https://github.com/cockroachdb/docs" +LABEL org.opencontainers.image.source="https://github.com/cockroachlabs/docs" LABEL ruby.version="3.4.0" LABEL bundler.version="2.7.2" LABEL jekyll.version="4.3.4" diff --git a/src/current/_data/redirects.yml b/src/current/_data/redirects.yml index dbb125c614c..0091403e816 100644 --- a/src/current/_data/redirects.yml +++ b/src/current/_data/redirects.yml @@ -31,7 +31,7 @@ # in the list of versions that matches a major version in # versions.csv, Jekyll will automatically add a redirect # for the dev and stable aliases for that page. versions.csv: -# https://github.com/cockroachdb/docs/blob/main/src/current/_data/versions.csv +# https://github.com/cockroachlabs/docs/blob/main/src/current/_data/versions.csv # # Each redirect added in redirects.yml generates a redirect # for the page without the .md extension and a redirect for diff --git a/src/current/_data/v24.2/metrics/metrics.yml b/src/current/_data/v24.2/metrics/metrics.yml index 61f9fc4d74d..4301ee66dc5 100644 --- a/src/current/_data/v24.2/metrics/metrics.yml +++ b/src/current/_data/v24.2/metrics/metrics.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v24.3/metrics/metrics.yml b/src/current/_data/v24.3/metrics/metrics.yml index 61f9fc4d74d..4301ee66dc5 100644 --- a/src/current/_data/v24.3/metrics/metrics.yml +++ b/src/current/_data/v24.3/metrics/metrics.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v25.1/metrics/metrics.yml b/src/current/_data/v25.1/metrics/metrics.yml index 61f9fc4d74d..4301ee66dc5 100644 --- a/src/current/_data/v25.1/metrics/metrics.yml +++ b/src/current/_data/v25.1/metrics/metrics.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v25.2/metrics/metrics-cloud.yml b/src/current/_data/v25.2/metrics/metrics-cloud.yml index 61f9fc4d74d..4301ee66dc5 100644 --- a/src/current/_data/v25.2/metrics/metrics-cloud.yml +++ b/src/current/_data/v25.2/metrics/metrics-cloud.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v25.3/metrics/metrics-cloud.yml b/src/current/_data/v25.3/metrics/metrics-cloud.yml index 61f9fc4d74d..4301ee66dc5 100644 --- a/src/current/_data/v25.3/metrics/metrics-cloud.yml +++ b/src/current/_data/v25.3/metrics/metrics-cloud.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v25.4/metrics/metrics-cloud.yml b/src/current/_data/v25.4/metrics/metrics-cloud.yml index d863553c16a..67aa825d751 100644 --- a/src/current/_data/v25.4/metrics/metrics-cloud.yml +++ b/src/current/_data/v25.4/metrics/metrics-cloud.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v26.1/metrics/metrics-cloud.yml b/src/current/_data/v26.1/metrics/metrics-cloud.yml index d863553c16a..67aa825d751 100644 --- a/src/current/_data/v26.1/metrics/metrics-cloud.yml +++ b/src/current/_data/v26.1/metrics/metrics-cloud.yml @@ -3,7 +3,7 @@ # https://github.com/cockroachlabs/managed-service/pull/16129/files # console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v23.2/essential-metrics.md # # The corresponding metrics-list.csv file was generated using the v23.2.0 binary with the following command: # cockroach gen metric-list --format=csv > metrics-list.csv diff --git a/src/current/_data/v26.2/metrics/metrics-cloud.yml b/src/current/_data/v26.2/metrics/metrics-cloud.yml index c55e004a6f7..76eb341333f 100644 --- a/src/current/_data/v26.2/metrics/metrics-cloud.yml +++ b/src/current/_data/v26.2/metrics/metrics-cloud.yml @@ -2,7 +2,7 @@ # The metrics are in the order of appearance in the configuration file: # https://github.com/cockroachlabs/managed-service/blob/master/console/ui/cc-console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v26.2/metric-names.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v26.2/metric-names.md # # The corresponding metrics.yaml file was generated using the v26.2 binary with the following command: # cockroach gen metric-list > metrics.yaml diff --git a/src/current/_data/v26.3/metrics/metrics-cloud.yml b/src/current/_data/v26.3/metrics/metrics-cloud.yml index 603e023f03c..3f3babb06dc 100644 --- a/src/current/_data/v26.3/metrics/metrics-cloud.yml +++ b/src/current/_data/v26.3/metrics/metrics-cloud.yml @@ -2,7 +2,7 @@ # The metrics are in the order of appearance in the configuration file: # https://github.com/cockroachlabs/managed-service/blob/master/console/ui/cc-console/assets/js/pages/clusterDetail/metrics/graphConfigs.tsx # The data for the metrics was also sourced from -# https://github.com/cockroachdb/docs/blob/main/src/current/_includes/v26.2/metric-names.md +# https://github.com/cockroachlabs/docs/blob/main/src/current/_includes/v26.2/metric-names.md # # The corresponding metrics.yaml file was generated using the v26.2 binary with the following command: # cockroach gen metric-list > metrics.yaml diff --git a/src/current/_includes/contribute-options.html b/src/current/_includes/contribute-options.html index 3348bc15b36..01377f95de5 100644 --- a/src/current/_includes/contribute-options.html +++ b/src/current/_includes/contribute-options.html @@ -1,13 +1,4 @@ -
    - -
    +{% comment %} +Contribute options removed: repo is now private (cockroachlabs/docs). +External users cannot view source, edit pages, or file issues directly. +{% endcomment %} diff --git a/src/current/_includes/feedback-widget-bottom.html b/src/current/_includes/feedback-widget-bottom.html index 2aabe97876e..eeed39c78e8 100644 --- a/src/current/_includes/feedback-widget-bottom.html +++ b/src/current/_includes/feedback-widget-bottom.html @@ -13,7 +13,7 @@ $('#feedback-prompt-toc').hide() }); $("#no-button-bottom").bind("click", function () { - $('#feedback-prompt-bottom').html('

    Thank you.

    Please tell us more.

    ') + $('#feedback-prompt-bottom').html('

    Thank you for your feedback.

    ') $('#feedback-prompt-toc').hide() }); }); diff --git a/src/current/_includes/feedback-widget-toc.html b/src/current/_includes/feedback-widget-toc.html index 0dc6d278c91..cba3b8d6bda 100644 --- a/src/current/_includes/feedback-widget-toc.html +++ b/src/current/_includes/feedback-widget-toc.html @@ -13,7 +13,7 @@ $('#feedback-prompt-bottom').hide() }); $("#no-button-toc").bind("click", function () { - $('#feedback-prompt-toc').html('

    Thank you.

    Please tell us more.

    ') + $('#feedback-prompt-toc').html('

    Thank you for your feedback.

    ') $('#feedback-prompt-bottom').hide() }); }); diff --git a/src/current/_includes/head.html b/src/current/_includes/head.html index 80292bfa3c3..b2f2a9a2e82 100755 --- a/src/current/_includes/head.html +++ b/src/current/_includes/head.html @@ -42,7 +42,7 @@ "author": { "@type": "Organization", "name": "Cockroach Labs Documentation Team", - "url": "https://github.com/cockroachdb/docs" + "url": "https://github.com/cockroachlabs/docs" } } diff --git a/src/current/_includes/releases/v26.1/v26.1.0.md b/src/current/_includes/releases/v26.1/v26.1.0.md index 48b82f47a23..45b17ed73b0 100644 --- a/src/current/_includes/releases/v26.1/v26.1.0.md +++ b/src/current/_includes/releases/v26.1/v26.1.0.md @@ -166,7 +166,7 @@ This section summarizes the most significant user-facing changes in v26.1.0 and

    Cloud Logging Enhancements — Changefeed Logs & Additional Cluster Context

    - Standardizes and enriches CockroachDB cloud logs with cluster-level context (cloud cluster ID and friendly name) and adds dedicated CHANGEFEED logging channel. + Standardizes and enriches CockroachDB cloud logs with cluster-level context (cloud cluster ID and friendly name) and adds dedicated CHANGEFEED logging channel.

    All* diff --git a/src/current/_includes/v20.2/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v20.2/prod-deployment/insecure-scale-cluster.md index c634ea62353..0a57d6cd9cc 100644 --- a/src/current/_includes/v20.2/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v20.2/prod-deployment/insecure-scale-cluster.md @@ -90,11 +90,11 @@ For each additional node you want to add to the cluster, complete the following $ chown cockroach /var/lib/cockroach ~~~ -7. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +7. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v20.2/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v20.2/prod-deployment/insecure-start-nodes.md index 1c3f0dcbd05..0a406de1915 100644 --- a/src/current/_includes/v20.2/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v20.2/prod-deployment/insecure-start-nodes.md @@ -150,11 +150,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v20.2/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v20.2/prod-deployment/secure-scale-cluster.md index fc74e1d2dca..54f7dab0bdb 100644 --- a/src/current/_includes/v20.2/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v20.2/prod-deployment/secure-scale-cluster.md @@ -97,11 +97,11 @@ For each additional node you want to add to the cluster, complete the following $ chown -R cockroach /var/lib/cockroach ~~~ -8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v20.2/prod-deployment/secure-start-nodes.md b/src/current/_includes/v20.2/prod-deployment/secure-start-nodes.md index ca9112e7ec0..64469d9cb90 100644 --- a/src/current/_includes/v20.2/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v20.2/prod-deployment/secure-start-nodes.md @@ -157,11 +157,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -9. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +9. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.1/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v23.1/prod-deployment/insecure-scale-cluster.md index d68e1bdf0fc..154cee21911 100644 --- a/src/current/_includes/v23.1/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v23.1/prod-deployment/insecure-scale-cluster.md @@ -90,11 +90,11 @@ For each additional node you want to add to the cluster, complete the following $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.1/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v23.1/prod-deployment/insecure-start-nodes.md index 8b063a588b4..43c2b506879 100644 --- a/src/current/_includes/v23.1/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v23.1/prod-deployment/insecure-start-nodes.md @@ -116,11 +116,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.1/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v23.1/prod-deployment/secure-scale-cluster.md index 87ef8dbd104..70c1ba05a1d 100644 --- a/src/current/_includes/v23.1/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v23.1/prod-deployment/secure-scale-cluster.md @@ -97,11 +97,11 @@ For each additional node you want to add to the cluster, complete the following $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - $ wget -qO- https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + $ wget -qO- https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.1/prod-deployment/secure-start-nodes.md b/src/current/_includes/v23.1/prod-deployment/secure-start-nodes.md index 8eb2eb6e9c2..7ad0e0041b0 100644 --- a/src/current/_includes/v23.1/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v23.1/prod-deployment/secure-start-nodes.md @@ -123,11 +123,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.2/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v23.2/prod-deployment/insecure-scale-cluster.md index 8f081ebed38..228e8284d6e 100644 --- a/src/current/_includes/v23.2/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v23.2/prod-deployment/insecure-scale-cluster.md @@ -89,11 +89,11 @@ For each additional node you want to add to the cluster, complete the following $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.2/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v23.2/prod-deployment/insecure-start-nodes.md index 8b063a588b4..43c2b506879 100644 --- a/src/current/_includes/v23.2/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v23.2/prod-deployment/insecure-start-nodes.md @@ -116,11 +116,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.2/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v23.2/prod-deployment/secure-scale-cluster.md index f47e7a184b2..36f072a1ec7 100644 --- a/src/current/_includes/v23.2/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v23.2/prod-deployment/secure-scale-cluster.md @@ -96,11 +96,11 @@ For each additional node you want to add to the cluster, complete the following $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v23.2/prod-deployment/secure-start-nodes.md b/src/current/_includes/v23.2/prod-deployment/secure-start-nodes.md index 41f9dcb62d2..a7359272d4e 100644 --- a/src/current/_includes/v23.2/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v23.2/prod-deployment/secure-start-nodes.md @@ -123,11 +123,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.1/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v24.1/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v24.1/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v24.1/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.1/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v24.1/prod-deployment/insecure-start-nodes.md index 7e1f979fa63..5e2db58fec6 100644 --- a/src/current/_includes/v24.1/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v24.1/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.1/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v24.1/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v24.1/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v24.1/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.1/prod-deployment/secure-start-nodes.md b/src/current/_includes/v24.1/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v24.1/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v24.1/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.2/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v24.2/prod-deployment/insecure-scale-cluster.md index aaf0e5f7688..041683eebc1 100644 --- a/src/current/_includes/v24.2/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v24.2/prod-deployment/insecure-scale-cluster.md @@ -89,11 +89,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.2/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v24.2/prod-deployment/insecure-start-nodes.md index 75d0de816b5..7c639fe68eb 100644 --- a/src/current/_includes/v24.2/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v24.2/prod-deployment/insecure-start-nodes.md @@ -116,11 +116,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.2/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v24.2/prod-deployment/secure-scale-cluster.md index 8c980b018a3..36e37621cb1 100644 --- a/src/current/_includes/v24.2/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v24.2/prod-deployment/secure-scale-cluster.md @@ -96,11 +96,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.2/prod-deployment/secure-start-nodes.md b/src/current/_includes/v24.2/prod-deployment/secure-start-nodes.md index f3c554f4f19..21284f1f809 100644 --- a/src/current/_includes/v24.2/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v24.2/prod-deployment/secure-start-nodes.md @@ -123,11 +123,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.3/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v24.3/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v24.3/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v24.3/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.3/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v24.3/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v24.3/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v24.3/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.3/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v24.3/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v24.3/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v24.3/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v24.3/prod-deployment/secure-start-nodes.md b/src/current/_includes/v24.3/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v24.3/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v24.3/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.1/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v25.1/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v25.1/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v25.1/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.1/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v25.1/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v25.1/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v25.1/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.1/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v25.1/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v25.1/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v25.1/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.1/prod-deployment/secure-start-nodes.md b/src/current/_includes/v25.1/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v25.1/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v25.1/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.2/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v25.2/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v25.2/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v25.2/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.2/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v25.2/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v25.2/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v25.2/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.2/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v25.2/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v25.2/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v25.2/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.2/prod-deployment/secure-start-nodes.md b/src/current/_includes/v25.2/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v25.2/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v25.2/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.3/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v25.3/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v25.3/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v25.3/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.3/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v25.3/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v25.3/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v25.3/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.3/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v25.3/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v25.3/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v25.3/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.3/prod-deployment/secure-start-nodes.md b/src/current/_includes/v25.3/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v25.3/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v25.3/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.4/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v25.4/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v25.4/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v25.4/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.4/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v25.4/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v25.4/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v25.4/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.4/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v25.4/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v25.4/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v25.4/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v25.4/prod-deployment/secure-start-nodes.md b/src/current/_includes/v25.4/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v25.4/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v25.4/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.1/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v26.1/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v26.1/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v26.1/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.1/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v26.1/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v26.1/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v26.1/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.1/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v26.1/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v26.1/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v26.1/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.1/prod-deployment/secure-start-nodes.md b/src/current/_includes/v26.1/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v26.1/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v26.1/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.2/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v26.2/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v26.2/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v26.2/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.2/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v26.2/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v26.2/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v26.2/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.2/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v26.2/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v26.2/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v26.2/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.2/prod-deployment/secure-start-nodes.md b/src/current/_includes/v26.2/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v26.2/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v26.2/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.3/prod-deployment/insecure-scale-cluster.md b/src/current/_includes/v26.3/prod-deployment/insecure-scale-cluster.md index f325eb10261..899c7faa5b4 100644 --- a/src/current/_includes/v26.3/prod-deployment/insecure-scale-cluster.md +++ b/src/current/_includes/v26.3/prod-deployment/insecure-scale-cluster.md @@ -60,11 +60,11 @@ For each additional node you want to add to the cluster, complete the following chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.3/prod-deployment/insecure-start-nodes.md b/src/current/_includes/v26.3/prod-deployment/insecure-start-nodes.md index 6ba82c4a768..0e1a35087f7 100644 --- a/src/current/_includes/v26.3/prod-deployment/insecure-start-nodes.md +++ b/src/current/_includes/v26.3/prod-deployment/insecure-start-nodes.md @@ -82,11 +82,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service + curl -o insecurecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.3/prod-deployment/secure-scale-cluster.md b/src/current/_includes/v26.3/prod-deployment/secure-scale-cluster.md index 6e5a8a4e24d..8efda466e39 100644 --- a/src/current/_includes/v26.3/prod-deployment/secure-scale-cluster.md +++ b/src/current/_includes/v26.3/prod-deployment/secure-scale-cluster.md @@ -67,11 +67,11 @@ For each additional node you want to add to the cluster, complete the following chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service): {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_includes/v26.3/prod-deployment/secure-start-nodes.md b/src/current/_includes/v26.3/prod-deployment/secure-start-nodes.md index 287d07850bd..d663fa78b08 100644 --- a/src/current/_includes/v26.3/prod-deployment/secure-start-nodes.md +++ b/src/current/_includes/v26.3/prod-deployment/secure-start-nodes.md @@ -89,11 +89,11 @@ After completing these steps, nodes will not yet be live. They will complete the $ chown -R cockroach /var/lib/cockroach ~~~ -1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: +1. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory: {% include_cached copy-clipboard.html %} ~~~ shell - curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachdb/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service + curl -o securecockroachdb.service https://raw.githubusercontent.com/cockroachlabs/docs/main/src/current/_includes/v23.2/prod-deployment/securecockroachdb.service ~~~ Alternatively, you can create the file yourself and copy the script into it: diff --git a/src/current/_layouts/default.html b/src/current/_layouts/default.html index d01a21d0f94..c96ffa58e60 100755 --- a/src/current/_layouts/default.html +++ b/src/current/_layouts/default.html @@ -78,7 +78,6 @@
    - {% include contribute-options.html %}
    On this page
    diff --git a/src/current/_layouts/page.html b/src/current/_layouts/page.html index b105ae0c6f2..ecc462320d0 100755 --- a/src/current/_layouts/page.html +++ b/src/current/_layouts/page.html @@ -26,7 +26,6 @@

    {{ page.title }}

    {% assign toc_classes = toc_classes | append: 'd-lg-none' %} {% endunless %}
    - {% include contribute-options.html %}
    {% endunless %}
    diff --git a/src/current/docs-mcp-integration.md b/src/current/docs-mcp-integration.md index 1f9f7cf0d73..75473941630 100644 --- a/src/current/docs-mcp-integration.md +++ b/src/current/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v23.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v23.1/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v23.1/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v23.1/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v23.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v23.1/build-a-java-app-with-cockroachdb-jooq.md index 7701e284e1c..b4f4c8899f2 100644 --- a/src/current/v23.1/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v23.1/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v23.1/community-tooling.md b/src/current/v23.1/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v23.1/community-tooling.md +++ b/src/current/v23.1/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v23.1/demo-json-support.md b/src/current/v23.1/demo-json-support.md index 7ca369eb7b1..e98cc2c1aa6 100644 --- a/src/current/v23.1/demo-json-support.md +++ b/src/current/v23.1/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v23.1/docs-mcp-integration.md b/src/current/v23.1/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v23.1/docs-mcp-integration.md +++ b/src/current/v23.1/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v23.2/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md index 7701e284e1c..b4f4c8899f2 100644 --- a/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v23.2/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v23.2/community-tooling.md b/src/current/v23.2/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v23.2/community-tooling.md +++ b/src/current/v23.2/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v23.2/demo-json-support.md b/src/current/v23.2/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v23.2/demo-json-support.md +++ b/src/current/v23.2/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v23.2/docs-mcp-integration.md b/src/current/v23.2/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v23.2/docs-mcp-integration.md +++ b/src/current/v23.2/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v24.1/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md index 7701e284e1c..b4f4c8899f2 100644 --- a/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v24.1/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v24.1/community-tooling.md b/src/current/v24.1/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v24.1/community-tooling.md +++ b/src/current/v24.1/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v24.1/demo-json-support.md b/src/current/v24.1/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v24.1/demo-json-support.md +++ b/src/current/v24.1/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v24.1/docs-mcp-integration.md b/src/current/v24.1/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v24.1/docs-mcp-integration.md +++ b/src/current/v24.1/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v24.2/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v24.2/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v24.2/community-tooling.md b/src/current/v24.2/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v24.2/community-tooling.md +++ b/src/current/v24.2/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v24.2/demo-json-support.md b/src/current/v24.2/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v24.2/demo-json-support.md +++ b/src/current/v24.2/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v24.2/docs-mcp-integration.md b/src/current/v24.2/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v24.2/docs-mcp-integration.md +++ b/src/current/v24.2/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v24.3/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v24.3/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v24.3/community-tooling.md b/src/current/v24.3/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v24.3/community-tooling.md +++ b/src/current/v24.3/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v24.3/demo-json-support.md b/src/current/v24.3/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v24.3/demo-json-support.md +++ b/src/current/v24.3/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v24.3/docs-mcp-integration.md b/src/current/v24.3/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v24.3/docs-mcp-integration.md +++ b/src/current/v24.3/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v25.1/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v25.1/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v25.1/community-tooling.md b/src/current/v25.1/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v25.1/community-tooling.md +++ b/src/current/v25.1/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v25.1/demo-json-support.md b/src/current/v25.1/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v25.1/demo-json-support.md +++ b/src/current/v25.1/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v25.1/docs-mcp-integration.md b/src/current/v25.1/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v25.1/docs-mcp-integration.md +++ b/src/current/v25.1/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v25.2/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v25.2/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v25.2/community-tooling.md b/src/current/v25.2/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v25.2/community-tooling.md +++ b/src/current/v25.2/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v25.2/demo-json-support.md b/src/current/v25.2/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v25.2/demo-json-support.md +++ b/src/current/v25.2/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v25.2/docs-mcp-integration.md b/src/current/v25.2/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v25.2/docs-mcp-integration.md +++ b/src/current/v25.2/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v25.3/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v25.3/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v25.3/community-tooling.md b/src/current/v25.3/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v25.3/community-tooling.md +++ b/src/current/v25.3/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v25.3/demo-json-support.md b/src/current/v25.3/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v25.3/demo-json-support.md +++ b/src/current/v25.3/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v25.3/docs-mcp-integration.md b/src/current/v25.3/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v25.3/docs-mcp-integration.md +++ b/src/current/v25.3/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v25.4/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v25.4/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v25.4/community-tooling.md b/src/current/v25.4/community-tooling.md index e1c5fa46702..bca90d04b50 100644 --- a/src/current/v25.4/community-tooling.md +++ b/src/current/v25.4/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v25.4/demo-json-support.md b/src/current/v25.4/demo-json-support.md index 9678a98a162..9becacbe1d4 100644 --- a/src/current/v25.4/demo-json-support.md +++ b/src/current/v25.4/demo-json-support.md @@ -120,7 +120,7 @@ Now that you have a database, a SQL user, and a table, let's run code to insert
    -Download the json-sample.go file, or create the file yourself and copy the code into it: +Download the json-sample.go file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ go @@ -142,7 +142,7 @@ The code queries the [Reddit API](https://www.reddit.com/dev/api/) for posts in
    -Download the json-sample.py file, or create the file yourself and copy the code into it: +Download the json-sample.py file, or create the file yourself and copy the code into it: {% include_cached copy-clipboard.html %} ~~~ python diff --git a/src/current/v25.4/docs-mcp-integration.md b/src/current/v25.4/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v25.4/docs-mcp-integration.md +++ b/src/current/v25.4/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v26.1/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v26.1/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v26.1/community-tooling.md b/src/current/v26.1/community-tooling.md index a0a6ceff0ab..934d8b6f292 100644 --- a/src/current/v26.1/community-tooling.md +++ b/src/current/v26.1/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v26.1/docs-mcp-integration.md b/src/current/v26.1/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v26.1/docs-mcp-integration.md +++ b/src/current/v26.1/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v26.2/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v26.2/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v26.2/community-tooling.md b/src/current/v26.2/community-tooling.md index a0a6ceff0ab..934d8b6f292 100644 --- a/src/current/v26.2/community-tooling.md +++ b/src/current/v26.2/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v26.2/docs-mcp-integration.md b/src/current/v26.2/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v26.2/docs-mcp-integration.md +++ b/src/current/v26.2/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md b/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md index 76697576ab6..181f6d18271 100644 --- a/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md +++ b/src/current/v26.3/build-a-go-app-with-cockroachdb-upperdb.md @@ -50,7 +50,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -To run the code, copy the sample above, or download it directly. +To run the code, copy the sample above, or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: @@ -87,7 +87,7 @@ The sample code shown below uses upper/db to map Go-specific objects to SQL oper Note that the sample code also includes a function that simulates a transaction error (`crdbForceRetry()`). Upper/db's CockroachDB adapter [automatically retries transactions]({% link {{ page.version.version }}/transaction-retry-error-reference.md %}#client-side-retry-handling) when transaction errors are thrown. As a result, this function forces a transaction retry. -Copy the code or download it directly. +Copy the code or download it directly. {{site.data.alerts.callout_success}} To clone a version of the code below that connects to insecure clusters, run the following command: diff --git a/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md b/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md index 9cc7c07ccf1..3c762bf8b7f 100644 --- a/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md +++ b/src/current/v26.3/build-a-java-app-with-cockroachdb-jooq.md @@ -88,7 +88,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/jooq-basic-sample/jooq-basic-sample.zip). 1. Open `jooq-basic-sample/src/main/java/com/cockroachlabs/Sample.java`, and edit the connection string passed to `DriverManager.getConnection()` in the `Sample` class's `main()` method so that the certificate paths are fully and correctly specified. 1. Compile and run the code using Maven: @@ -107,7 +107,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java @@ -186,7 +186,7 @@ In addition, the code shows a pattern for automatically handling [transaction re To run it: -1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachdb/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). +1. Download and unzip [jooq-basic-sample.zip](https://github.com/cockroachlabs/docs/raw/master/_includes/{{ page.version.version }}/app/insecure/jooq-basic-sample/jooq-basic-sample.zip). 1. Compile and run the code using Maven: {% include_cached copy-clipboard.html %} @@ -204,7 +204,7 @@ To run it: $ mvn exec:java -Dexec.mainClass=com.cockroachlabs.Sample ~~~ -Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: +Here are the contents of [`Sample.java`](https://raw.githubusercontent.com/cockroachlabs/docs/master/_includes/{{page.version.version}}/app/insecure/jooq-basic-sample/Sample.java), the Java file containing the main `Sample` class: {% include_cached copy-clipboard.html %} ~~~ java diff --git a/src/current/v26.3/community-tooling.md b/src/current/v26.3/community-tooling.md index a0a6ceff0ab..934d8b6f292 100644 --- a/src/current/v26.3/community-tooling.md +++ b/src/current/v26.3/community-tooling.md @@ -10,7 +10,7 @@ The following tools have been tested or developed by the CockroachDB community, If you encounter problems with using these tools, please contact the maintainer of the tool with details. {{site.data.alerts.callout_success}} -If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please [open a pull request to our docs GitHub repository](https://github.com/cockroachdb/docs/edit/master/v21.2/community-tooling.md). +If you have a tested or developed a third-party tool with CockroachDB, and would like it listed on this page, please contact the [Cockroach Labs docs team](https://github.com/cockroachlabs/docs). {{site.data.alerts.end}} ## Drivers and data access frameworks diff --git a/src/current/v26.3/docs-mcp-integration.md b/src/current/v26.3/docs-mcp-integration.md index 19aaac0b955..a19e7e43cdd 100644 --- a/src/current/v26.3/docs-mcp-integration.md +++ b/src/current/v26.3/docs-mcp-integration.md @@ -183,7 +183,7 @@ If the configuration doesn't seem to take effect: For issues or feedback about the CockroachDB Docs MCP Server: -- Report documentation issues on [GitHub](https://github.com/cockroachdb/docs/issues) +- Report documentation issues on [GitHub](https://github.com/cockroachlabs/docs/issues) - Join the [CockroachDB Community Slack](https://www.cockroachlabs.com/join-community/) for help ## See Also diff --git a/src/interactive-tutorials/_includes/head.html b/src/interactive-tutorials/_includes/head.html index c99e99a9573..ab8f8de111f 100755 --- a/src/interactive-tutorials/_includes/head.html +++ b/src/interactive-tutorials/_includes/head.html @@ -29,7 +29,7 @@ "author": { "@type": "Organization", "name": "Cockroach Labs Documentation Team", - "url": "https://github.com/cockroachdb/docs" + "url": "https://github.com/cockroachlabs/docs" } } diff --git a/vale/CockroachDB/Contractions.yml b/vale/CockroachDB/Contractions.yml index 925451ee3d5..27f3439ab54 100644 --- a/vale/CockroachDB/Contractions.yml +++ b/vale/CockroachDB/Contractions.yml @@ -1,6 +1,6 @@ extends: substitution message: Use '%s' instead of '%s' -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#style-and-tone +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#style-and-tone ignorecase: false level: warning swap: diff --git a/vale/CockroachDB/HeadingsCase.yml b/vale/CockroachDB/HeadingsCase.yml index 401f6e3213b..f8258e1361f 100644 --- a/vale/CockroachDB/HeadingsCase.yml +++ b/vale/CockroachDB/HeadingsCase.yml @@ -1,6 +1,6 @@ extends: capitalization message: "'%s' should be in sentence case" -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation level: warning scope: heading match: $sentence diff --git a/vale/CockroachDB/HeadingsPunctuation.yml b/vale/CockroachDB/HeadingsPunctuation.yml index 1db1b02d7b5..c0c4d19aea0 100644 --- a/vale/CockroachDB/HeadingsPunctuation.yml +++ b/vale/CockroachDB/HeadingsPunctuation.yml @@ -1,6 +1,6 @@ extends: existence message: Do not use '%s' at the end of headings -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation scope: heading level: warning raw: diff --git a/vale/CockroachDB/Hyperbolic.yml b/vale/CockroachDB/Hyperbolic.yml index fabd3955627..0d9c2f237ce 100644 --- a/vale/CockroachDB/Hyperbolic.yml +++ b/vale/CockroachDB/Hyperbolic.yml @@ -1,6 +1,6 @@ extends: existence message: Consider removing '%s' -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#style-and-tone +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#style-and-tone ignorecase: true level: warning tokens: diff --git a/vale/CockroachDB/LocalizedLinks.yml b/vale/CockroachDB/LocalizedLinks.yml index 488bb5a29cc..ceccb6ca980 100644 --- a/vale/CockroachDB/LocalizedLinks.yml +++ b/vale/CockroachDB/LocalizedLinks.yml @@ -1,6 +1,6 @@ extends: existence message: "Link contains a localization element (e.g., `en`, `en-us`). Some websites will auto-localize. Try to remove it from the URL if it doesn't 404: '%s'..." -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#links +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#links scope: raw level: warning nonword: true diff --git a/vale/CockroachDB/NondescriptLinkTitles.yml b/vale/CockroachDB/NondescriptLinkTitles.yml index ca201d4784c..93fcbdb68da 100644 --- a/vale/CockroachDB/NondescriptLinkTitles.yml +++ b/vale/CockroachDB/NondescriptLinkTitles.yml @@ -1,6 +1,6 @@ extends: existence message: Avoid using non-descriptive link titles. -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#lists +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#lists level: warning scope: raw nonword: true diff --git a/vale/CockroachDB/OrderedLists.yml b/vale/CockroachDB/OrderedLists.yml index 18e5e5ada93..23d8c8013be 100644 --- a/vale/CockroachDB/OrderedLists.yml +++ b/vale/CockroachDB/OrderedLists.yml @@ -1,6 +1,6 @@ extends: existence message: Use "1." instead of "%s" for ordered lists. -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#lists +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#lists level: warning scope: raw nonword: true diff --git a/vale/CockroachDB/OxfordComma.yml b/vale/CockroachDB/OxfordComma.yml index c9c80b31ad3..0ad08cc8768 100644 --- a/vale/CockroachDB/OxfordComma.yml +++ b/vale/CockroachDB/OxfordComma.yml @@ -1,6 +1,6 @@ extends: existence message: Use the Oxford comma in a list of three or more items -link: https://github.com/cockroachdb/docs/blob/main/StyleGuide.md#capitalization-and-punctuation +link: https://github.com/cockroachlabs/docs/blob/main/StyleGuide.md#capitalization-and-punctuation level: suggestion tokens: - '(?:[^,]+,){1,}\s\w+\sand'