Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add canonical URL to head #59

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/docs-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: docs-build

on:
pull_request:
branches: [ master, main ]
types: [ opened, synchronize ]

push:
Expand All @@ -14,7 +13,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
TAG: 0.2.0
TAG: 0.3.0
GH_TOKEN: ${{ github.token }}

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
CONTAINER_TEST_IMAGE: "${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_SLUG}"
CONTAINER_RELEASE_IMAGE: "${CI_REGISTRY_IMAGE}:0.5.0"
BUILDER_IMAGE: ghcr.io/nvidia/cloud-native-docs:0.2.0
BUILDER_IMAGE: ghcr.io/nvidia/cloud-native-docs:0.3.0
PUBLISHER_IMAGE: "${CI_REGISTRY_PUBLISHER}/publisher:2.0.0"

stages:
Expand Down
2 changes: 1 addition & 1 deletion deps/repo-deps.packman.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
</dependency>
<!-- optional: tool for building and publishing great looking documentation -->
<dependency name="repo_docs" linkPath="../_repo/deps/repo_docs">
<package name="repo_docs" version="0.39.2" />
<package name="repo_docs" version="0.42.0" />
</dependency>
</project>
8 changes: 8 additions & 0 deletions repo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ project = "container-toolkit"
name = "NVIDIA Container Toolkit"
version = "1.15.0"
copyright_start = 2020
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/"
redirects = [
{ path="concepts.html", target="index.html" },
{ path="distro/amazon-linux.html", target="install-guide.html" },
Expand Down Expand Up @@ -109,6 +110,7 @@ project = "driver-containers"
name = "NVIDIA Driver Containers"
version = "1.0.0"
copyright_start = 2020
baseurl = "https://docs.nvidia.com/datacenter/driver-conntainers/latest/"
extra_content_head = [
"""
<meta name="robots" content="noindex"/>
Expand All @@ -129,6 +131,7 @@ docs_root = "${root}/edge"
project = "edge"
name = "NVIDIA Cloud Native Reference Architectures"
version = "1.0.0"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/edge/latest/"
copyright_start = 2020

[repo_docs.projects.edge.builds.linkcheck]
Expand All @@ -141,6 +144,7 @@ docs_root = "${root}/gpu-operator"
project = "gpu-operator"
name = "NVIDIA GPU Operator"
version = "24.3.0"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/"
copyright_start = 2020
sphinx_exclude_patterns = [
"life-cycle-policy.rst",
Expand Down Expand Up @@ -175,6 +179,7 @@ docs_root = "${root}/gpu-telemetry"
project = "gpu-telemetry"
name = "NVIDIA GPU Telemetry"
version = "1.0.0"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/gpu-telemetry/latest/"
copyright_start = 2020

[repo_docs.projects.gpu-telemetry.builds.linkcheck]
Expand All @@ -187,6 +192,7 @@ docs_root = "${root}/kubernetes"
project = "kubernetes"
name = "Kubernetes with NVIDIA GPUs"
version = "1.0.0"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/kubernetes/latest/"
copyright_start = 2020

[repo_docs.projects.kubernetes.builds.linkcheck]
Expand All @@ -199,6 +205,7 @@ docs_root = "${root}/openshift"
project = "gpu-operator-openshift"
name = "NVIDIA GPU Operator on Red Hat OpenShift Container Platform"
version = "23.9.2"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/openshift/latest/"
copyright_start = 2020
sphinx_exclude_patterns = [
"get-entitlement.rst",
Expand All @@ -214,6 +221,7 @@ docs_root = "${root}/partner-validated"
project = "partner-validated"
name = "Partner Validated Configurations with NVIDIA GPU Operator"
version = "1.0.0"
baseurl = "https://docs.nvidia.com/datacenter/cloud-native/partner-validated/latest/"
copyright_start = 2023
sphinx_exclude_patterns = [
"PARTNER-VALIDATED-TEMPLATE.rst"
Expand Down
Loading