From 7075cc69a240be1ad1c056bb6f8f621b79d6c771 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Wed, 27 Nov 2024 10:26:07 +0000 Subject: [PATCH 1/5] Test fix for pages and feedback Signed-off-by: Dj Walker-Morgan --- .../docs/postgres_distributed_for_kubernetes/1/index.mdx | 3 ++- product_docs/docs/postgres_for_kubernetes/1/index.mdx | 4 +++- src/pages/index.js | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/product_docs/docs/postgres_distributed_for_kubernetes/1/index.mdx b/product_docs/docs/postgres_distributed_for_kubernetes/1/index.mdx index ce73a581e66..ec6dd166317 100644 --- a/product_docs/docs/postgres_distributed_for_kubernetes/1/index.mdx +++ b/product_docs/docs/postgres_distributed_for_kubernetes/1/index.mdx @@ -1,5 +1,5 @@ --- -title: EDB Postgres Distributed for Kubernetes +title: EDB CloudNativePG Global Cluster originalFilePath: src/index.md indexCards: none navigation: @@ -35,6 +35,7 @@ navigation: - known_issues directoryDefaults: iconName: logos/KubernetesMono + displayBanner: "We are in the process of migrating the documentation from the previous EDB Postgres Distributed for Kubernetes name to the new EDB CloudNativePG Global Cluster name. You may see references to both names in this documentation." --- EDB Postgres Distributed for Kubernetes (`PGD4K`) is an diff --git a/product_docs/docs/postgres_for_kubernetes/1/index.mdx b/product_docs/docs/postgres_for_kubernetes/1/index.mdx index 17ef3d12d5a..50e7c62ce2d 100644 --- a/product_docs/docs/postgres_for_kubernetes/1/index.mdx +++ b/product_docs/docs/postgres_for_kubernetes/1/index.mdx @@ -1,7 +1,9 @@ --- -title: EDB Postgres for Kubernetes +title: EDB CloudNativePG Cluster originalFilePath: src/index.md indexCards: none +directoryDefaults: + displayBanner: "We are in the process of migrating the documentation from the previous EDB Postgres for Kubernetes name to the new EDB CloudNativePG Cluster name. You may see references to both names in this documentation." navigation: - rel_notes - '!commercial_support.mdx' diff --git a/src/pages/index.js b/src/pages/index.js index b7ec2e9b583..7358cd2d57d 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -372,11 +372,11 @@ const Page = () => { /> - EDB Postgres Distributed for Kubernetes + EDB CloudNativePG Global Cluster - EDB Postgres for Kubernetes + EDB CloudNativePG Cluster From 2305e6c9b51bc88418711604796e35a1f8acb611 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Wed, 27 Nov 2024 10:49:07 +0000 Subject: [PATCH 2/5] Adjust updates Signed-off-by: Dj Walker-Morgan --- src/constants/updates.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/updates.js b/src/constants/updates.js index c9b3fc9caac..d09d13fbf51 100644 --- a/src/constants/updates.js +++ b/src/constants/updates.js @@ -2,10 +2,10 @@ import IconNames from "../components/icon/iconNames"; export const updates = [ { - title: "Postgres Distributed for Kubernetes 1.0.1", + title: "EDB CloudNativePG Global Cluster 1.0.1", icon: IconNames.KUBERNETES, description: - "PGD4K brings LDAP authentication configuration, tablespace configuration and more in this patch release.", + "EDB CloudNativePG Global Cluster brings LDAP authentication configuration, tablespace configuration and more in this patch release.", url: "/postgres_distributed_for_kubernetes/latest/", moreUrl: "/postgres_distributed_for_kubernetes/latest/rel_notes/1_0_1_rel_notes/", From b059fb6715d636875e5048fbf997149bb51d2d19 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Thu, 12 Dec 2024 09:55:05 +0000 Subject: [PATCH 3/5] Added the updated husky hooks Signed-off-by: Dj Walker-Morgan --- .husky/post-checkout | 2 +- .husky/post-commit | 2 +- .husky/post-merge | 2 +- .husky/pre-push | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.husky/post-checkout b/.husky/post-checkout index ca7fcb40088..5abf8ed93f7 100755 --- a/.husky/post-checkout +++ b/.husky/post-checkout @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } git lfs post-checkout "$@" diff --git a/.husky/post-commit b/.husky/post-commit index 52b339cb3f4..b8b76c2c425 100755 --- a/.husky/post-commit +++ b/.husky/post-commit @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } git lfs post-commit "$@" diff --git a/.husky/post-merge b/.husky/post-merge index a912e667aa3..726f909891a 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } git lfs post-merge "$@" diff --git a/.husky/pre-push b/.husky/pre-push index 0f0089bc25d..5f26dc45523 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } git lfs pre-push "$@" From 5750fc9b1f059c4c258358e7394d44b87883ed1d Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Thu, 12 Dec 2024 09:21:52 +0000 Subject: [PATCH 4/5] Added small formerly Signed-off-by: Dj Walker-Morgan --- src/pages/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/index.js b/src/pages/index.js index 7358cd2d57d..6daa9f16143 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -373,10 +373,18 @@ const Page = () => { EDB CloudNativePG Global Cluster +
+ + Formerly EDB Postgres Distributed for Kubernetes +
EDB CloudNativePG Cluster +
+ + Formerly EDB Postgres for Kubernetes +
From f94bda53358b4a2504a51261641407e2eb2f8599 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Thu, 12 Dec 2024 10:24:33 +0000 Subject: [PATCH 5/5] Revert "Added the updated husky hooks" This reverts commit b059fb6715d636875e5048fbf997149bb51d2d19. --- .husky/post-checkout | 2 +- .husky/post-commit | 2 +- .husky/post-merge | 2 +- .husky/pre-push | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.husky/post-checkout b/.husky/post-checkout index 5abf8ed93f7..ca7fcb40088 100755 --- a/.husky/post-checkout +++ b/.husky/post-checkout @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } git lfs post-checkout "$@" diff --git a/.husky/post-commit b/.husky/post-commit index b8b76c2c425..52b339cb3f4 100755 --- a/.husky/post-commit +++ b/.husky/post-commit @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } git lfs post-commit "$@" diff --git a/.husky/post-merge b/.husky/post-merge index 726f909891a..a912e667aa3 100755 --- a/.husky/post-merge +++ b/.husky/post-merge @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } git lfs post-merge "$@" diff --git a/.husky/pre-push b/.husky/pre-push index 5f26dc45523..0f0089bc25d 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,3 +1,3 @@ #!/bin/sh -command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } +command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } git lfs pre-push "$@"