From 7e4fa39b69c449486689d0bf7e897347253a3db7 Mon Sep 17 00:00:00 2001 From: josh-wong Date: Tue, 11 Mar 2025 13:40:49 +0000 Subject: [PATCH 1/7] AUTO: Sync ScalarDB docs in Japanese to docs site repo --- .../current/scalardb-cluster/encrypt-data-at-rest.mdx | 2 +- .../current/scalardb-cluster/scalardb-auth-with-sql.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/encrypt-data-at-rest.mdx b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/encrypt-data-at-rest.mdx index faf92f84..b02e7fef 100644 --- a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/encrypt-data-at-rest.mdx +++ b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/encrypt-data-at-rest.mdx @@ -174,7 +174,7 @@ services: start_period: 30s scalardb-cluster-standalone: - container_name: "scalardb-cluser-node" + container_name: "scalardb-cluster-node" image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.1" ports: - 60053:60053 diff --git a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/scalardb-auth-with-sql.mdx b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/scalardb-auth-with-sql.mdx index 56d8585d..80ce86e1 100644 --- a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/scalardb-auth-with-sql.mdx +++ b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/scalardb-auth-with-sql.mdx @@ -192,7 +192,7 @@ services: start_period: 30s scalardb-cluster-standalone: - container_name: "scalardb-cluser-node" + container_name: "scalardb-cluster-node" image: "ghcr.io/scalar-labs/scalardb-cluster-node-byol-premium:3.15.1" ports: - 60053:60053 From 5a71f1bf8b9dbdde805a2f6422686a0626ddf610 Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:24:43 +0900 Subject: [PATCH 2/7] Delete docker-compose.yaml --- .../standalone-mode/docker-compose.yaml | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 docs/scalardb-cluster/standalone-mode/docker-compose.yaml diff --git a/docs/scalardb-cluster/standalone-mode/docker-compose.yaml b/docs/scalardb-cluster/standalone-mode/docker-compose.yaml deleted file mode 100644 index 005e1608..00000000 --- a/docs/scalardb-cluster/standalone-mode/docker-compose.yaml +++ /dev/null @@ -1,28 +0,0 @@ -version: "3.5" -services: - - postgresql: - container_name: "postgresql" - image: "postgres:15" - ports: - - 5432:5432 - environment: - - POSTGRES_PASSWORD=postgres - healthcheck: - test: ["CMD-SHELL", "pg_isready || exit 1"] - interval: 1s - timeout: 10s - retries: 60 - start_period: 30s - - scalardb-cluster-standalone: - container_name: "scalardb-cluser-node" - image: "ghcr.io/scalar-labs/scalardb-cluster-node:4.0.0-SNAPSHOT" - ports: - - 60053:60053 - - 9080:9080 - volumes: - - ./scalardb-cluster-node.properties:/scalardb-cluster/node/scalardb-cluster-node.properties - depends_on: - postgresql: - condition: service_healthy From 0e15a42877774fcba9acabab81fcc5ccd8b7d67c Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:24:46 +0900 Subject: [PATCH 3/7] Delete scalardb-cluster-node.properties --- .../standalone-mode/scalardb-cluster-node.properties | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties diff --git a/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties b/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties deleted file mode 100644 index 6ec8f9a0..00000000 --- a/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties +++ /dev/null @@ -1,5 +0,0 @@ -scalar.db.storage=jdbc -scalar.db.contact_points=jdbc:postgresql://postgresql:5432/postgres -scalar.db.username=postgres -scalar.db.password=postgres -scalar.db.cluster.node.standalone_mode.enabled=true From cca0c77afb74f3f55f3f54d58e06ba7e03c1126c Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:25:47 +0900 Subject: [PATCH 4/7] Revert "Delete scalardb-cluster-node.properties" This reverts commit 0e15a42877774fcba9acabab81fcc5ccd8b7d67c. --- .../standalone-mode/scalardb-cluster-node.properties | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties diff --git a/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties b/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties new file mode 100644 index 00000000..6ec8f9a0 --- /dev/null +++ b/docs/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties @@ -0,0 +1,5 @@ +scalar.db.storage=jdbc +scalar.db.contact_points=jdbc:postgresql://postgresql:5432/postgres +scalar.db.username=postgres +scalar.db.password=postgres +scalar.db.cluster.node.standalone_mode.enabled=true From c113211f5debcffb98ab5a5079ad5481a8cccb42 Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:25:52 +0900 Subject: [PATCH 5/7] Revert "Delete docker-compose.yaml" This reverts commit 5a71f1bf8b9dbdde805a2f6422686a0626ddf610. --- .../standalone-mode/docker-compose.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/scalardb-cluster/standalone-mode/docker-compose.yaml diff --git a/docs/scalardb-cluster/standalone-mode/docker-compose.yaml b/docs/scalardb-cluster/standalone-mode/docker-compose.yaml new file mode 100644 index 00000000..005e1608 --- /dev/null +++ b/docs/scalardb-cluster/standalone-mode/docker-compose.yaml @@ -0,0 +1,28 @@ +version: "3.5" +services: + + postgresql: + container_name: "postgresql" + image: "postgres:15" + ports: + - 5432:5432 + environment: + - POSTGRES_PASSWORD=postgres + healthcheck: + test: ["CMD-SHELL", "pg_isready || exit 1"] + interval: 1s + timeout: 10s + retries: 60 + start_period: 30s + + scalardb-cluster-standalone: + container_name: "scalardb-cluser-node" + image: "ghcr.io/scalar-labs/scalardb-cluster-node:4.0.0-SNAPSHOT" + ports: + - 60053:60053 + - 9080:9080 + volumes: + - ./scalardb-cluster-node.properties:/scalardb-cluster/node/scalardb-cluster-node.properties + depends_on: + postgresql: + condition: service_healthy From a94d4f98a844a530e54aca10bffb42a50a7c7f48 Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:26:30 +0900 Subject: [PATCH 6/7] Delete docker-compose.yaml --- .../standalone-mode/docker-compose.yaml | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/docker-compose.yaml diff --git a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/docker-compose.yaml b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/docker-compose.yaml deleted file mode 100644 index 005e1608..00000000 --- a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/docker-compose.yaml +++ /dev/null @@ -1,28 +0,0 @@ -version: "3.5" -services: - - postgresql: - container_name: "postgresql" - image: "postgres:15" - ports: - - 5432:5432 - environment: - - POSTGRES_PASSWORD=postgres - healthcheck: - test: ["CMD-SHELL", "pg_isready || exit 1"] - interval: 1s - timeout: 10s - retries: 60 - start_period: 30s - - scalardb-cluster-standalone: - container_name: "scalardb-cluser-node" - image: "ghcr.io/scalar-labs/scalardb-cluster-node:4.0.0-SNAPSHOT" - ports: - - 60053:60053 - - 9080:9080 - volumes: - - ./scalardb-cluster-node.properties:/scalardb-cluster/node/scalardb-cluster-node.properties - depends_on: - postgresql: - condition: service_healthy From e8db2ed0de0d14808de70a13df2e2aec0e3f447e Mon Sep 17 00:00:00 2001 From: Josh Wong <23216828+josh-wong@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:26:34 +0900 Subject: [PATCH 7/7] Delete scalardb-cluster-node.properties --- .../standalone-mode/scalardb-cluster-node.properties | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties diff --git a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties b/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties deleted file mode 100644 index 6ec8f9a0..00000000 --- a/i18n/versioned_docs/ja-jp/docusaurus-plugin-content-docs/current/scalardb-cluster/standalone-mode/scalardb-cluster-node.properties +++ /dev/null @@ -1,5 +0,0 @@ -scalar.db.storage=jdbc -scalar.db.contact_points=jdbc:postgresql://postgresql:5432/postgres -scalar.db.username=postgres -scalar.db.password=postgres -scalar.db.cluster.node.standalone_mode.enabled=true