Skip to content

Commit c74f502

Browse files
Automated translation updates
- Updated translations for: ja - Generated from commit: df3729b - Workflow run: 24842423959
1 parent cb151db commit c74f502

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

website/i18n/ja/docusaurus-plugin-content-docs/current/automation/gitops/argocd/access_argocd.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
title: "Argo CDのインストール"
33
sidebar_position: 10
44
weight: 10
5-
tmdTranslationSourceHash: a732381699805dc3451f19017ace3eef
5+
tmdTranslationSourceHash: f21fde74f48eca3eff8ecc25c4231f6e
66
---
77

88
まずはクラスターにArgo CDをインストールしましょう:
99

1010
```bash
1111
$ helm repo add argo-cd https://argoproj.github.io/argo-helm
12+
$ ESCAPED_CIDRS="${INBOUND_CIDRS//,/\\,}"
1213
$ helm upgrade --install argocd argo-cd/argo-cd --version "${ARGOCD_CHART_VERSION}" \
1314
--namespace "argocd" --create-namespace \
1415
--values ~/environment/eks-workshop/modules/automation/gitops/argocd/values.yaml \
15-
--set "server.service.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges"="$INBOUND_CIDRS" \
16+
--set "server.service.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges=$ESCAPED_CIDRS" \
1617
--wait
1718
NAME: argocd
1819
LAST DEPLOYED: [...]

website/i18n/ja/docusaurus-plugin-content-docs/current/automation/gitops/argocd/gitea.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
---
22
title: "Gitea のセットアップ"
33
sidebar_position: 5
4-
tmdTranslationSourceHash: 0cca9646f30f651e0ad39dd069a3bd31
4+
tmdTranslationSourceHash: 9a72a1093c545cbb52c730a79ad8fee9
55
---
66

77
GitHub や GitLab の代わりに、迅速で簡単な代替手段として [Gitea](https://gitea.com) を使用します。Gitea は軽量な自己ホスト型 Git サービスで、ユーザーフレンドリーなウェブインターフェースを提供し、独自の Git リポジトリを迅速にセットアップおよび管理することができます。これは、Argo CD で探索する GitOps ワークフローに不可欠な Kubernetes マニフェストの保存とバージョン管理のための信頼できるソースとして機能します。
88

99
Helm を使用して Gitea を EKS クラスターにインストールしましょう:
1010

1111
```bash
12+
$ ESCAPED_CIDRS="${INBOUND_CIDRS//,/\\,}"
1213
$ helm upgrade --install gitea oci://docker.gitea.com/charts/gitea \
1314
--version "$GITEA_CHART_VERSION" \
1415
--namespace gitea --create-namespace \
1516
--values ~/environment/eks-workshop/modules/automation/gitops/argocd/gitea/values.yaml \
16-
--set "service.http.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges"="$INBOUND_CIDRS" \
17-
--set "service.ssh.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges"="$INBOUND_CIDRS" \
17+
--set "service.http.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges=$ESCAPED_CIDRS" \
18+
--set "service.ssh.annotations.service\\.beta\\.kubernetes\\.io/load-balancer-source-ranges=$ESCAPED_CIDRS" \
1819
--set "gitea.admin.password=${GITEA_PASSWORD}" \
1920
--wait
2021
```

0 commit comments

Comments
 (0)