[{"data":1,"prerenderedAt":768},["ShallowReactive",2],{"/ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab/":3,"navigation-ja-jp":115,"banner-ja-jp":532,"footer-ja-jp":545,"next-steps-ja-jp":753},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"_id":109,"_type":110,"title":7,"_source":111,"_file":112,"_stem":113,"_extension":114},"/ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab","gitops",false,"",{"title":9,"description":10},"GitLabを使ったGitOpsのためのマルチクラウドデプロイ：デモ","マルチクラウドの互換性によるGitOpsワークフローのサポート。このデモは、共通のワークフローを使って3つのKubernetesサーバーにアプリケーションをデプロイする方法を説明します。",[12,26,32,107],{"type":13,"componentName":13,"componentContent":14},"CommonBreadcrumbs",{"crumbs":15},[16,20,24],{"title":17,"config":18},"Industry topics",{"href":19},"/topics/",{"title":21,"config":22},"GitOps",{"href":23},"/ja-jp/topics/gitops/",{"title":25},"GitOps multicloud deployments gitlab",{"type":27,"componentName":27,"componentContent":28},"CommonArticleHero",{"title":9,"text":29,"config":30},"マルチクラウドの互換性によるGitOpsワークフローのサポート。このデモは、共通のワークフローを使って3つのKubernetesサーバーにアプリケーションをデプロイする方法を説明します。\n",{"id":31,"twoColumns":6},"gitlabを使ったgitopsのためのマルチクラウドデプロイ：デモ",{"type":33,"componentName":33,"componentContent":34},"CommonSideNavigationWithTree",{"anchors":35,"components":66},{"text":36,"data":37},"このトピックの詳細",[38,42,46,50,54,58,62],{"text":39,"config":40},"GitOpsとGitLabを使用したマルチクラウドデプロイ",{"href":41},"#multicloud-deployments-using-git-ops-and-git-lab",{"text":43,"config":44},"アプリケーションフォルダの内部",{"href":45},"#inside-the-applications-folder",{"text":47,"config":48},"AKS上のASP.NETアプリケーション",{"href":49},"#aspnet-application-on-aks",{"text":51,"config":52},"Google Kubernetes Engine（GKE）上のJava Springアプリケーション",{"href":53},"#java-spring-application-on-gke",{"text":55,"config":56},"EKS上のPythonアプリケーション",{"href":57},"#python-application-on-eks",{"text":59,"config":60},"GitOps用のGitLab",{"href":61},"#git-lab-for-git-ops",{"text":63,"config":64},"GitOpsについて詳しく見る",{"href":65},"#ready-to-learn-more-about-git-ops",[67,72,77,82,87,92,97,102],{"type":68,"componentName":68,"componentContent":69},"TopicsCopy",{"text":70,"config":71},"GitOpsワークフローでは、Gitリポジトリを信頼できる唯一の情報源として使用することでコラボレーションを可能にし、インフラストラクチャチームをまとめてソフトウェアの開発と提供を加速します。オペレーションチームが[GitOpsワークフロー](/topics/gitops/gitops-workflow/){data-ga-name=\"gitops workflows\" data-ga-location=\"body\"}を使用する場合、GitLabをコアリポジトリとして使用することはバージョン管理以上のメリットがあります。チームは、コラボレーティブプラットフォーム、インフラストラクチャの導入の容易さ、マルチクラウドの互換性を活用するためにGitLabを使用しています。\n",{"id":7},{"type":68,"componentName":68,"componentContent":73},{"header":39,"text":74,"config":75},"このデモは、共通のワークフローを使って3つのKubernetesサーバーにアプリケーションをデプロイする方法を説明します。チームはGitLab CIによって提供されるAuto DevOpsを使い、HelmとKubernetesでアプリケーションのデプロイを成功させる方法を学びます。\n最初のステップは[gitops-demoグループのREADME.mdファイル](https://gitlab.com/gitops-demo/readme)を開いてgitops-demoグループの構造を確認することです。いくつかのプロジェクトと、インフラストラクチャと[アプリケーション](https://gitlab.com/gitops-demo/apps)という2つのサブグループがあります。\n",{"id":76},"multicloud-deployments-using-git-ops-and-git-lab",{"type":68,"componentName":68,"componentContent":78},{"header":43,"text":79,"config":80},"このデモでは、my-asp-net-app1、my-spring-app2、my-ruby-app3、my-python-app4の4つのアプリケーションと、それぞれが異なるクラウド環境に対応する3つのKubernetesクラスタであるMicrosoft Azure (AKS)、Amazon (EKS)、Google Cloud (GKE)が用意されています。左隅のKubernetesボタンをクリックすると、すべてのクラスターがGitLabに登録されていることがわかります。 環境スコープは、各クラウドにデプロイされるアプリケーションを表します。\n",{"id":81},"inside-the-applications-folder",{"type":68,"componentName":68,"componentContent":83},{"header":47,"text":84,"config":85},"### AutoDevOpsの実践\n\n[最初の例](https://gitlab.com/gitops-demo/apps/my-asp-net-app1)はASP.NETアプリケーションです。これはHello, Worldと同様のアプリです。 [アプリケーションCIファイル](https://gitlab.com/gitops-demo/apps/my-asp-net-app1/blob/master/.gitlab-ci.yml)には、このアプリケーションのデプロイ方法特有の複数の修正があります。\n\n最初のステップは、いくつかの変数を設定してメインのAuto DevOpsテンプレートをインポートすることです。次に.netコードに適用しやすいいくつかのコマンドをステージ用に上書きし、最後に本番環境をAKSにデプロイするように自動的に設定することが重要となります。\n\n```yaml\ninclude:\n  - template: Auto-DevOps.gitlab-ci.yml\n\nvariables:\n  DEPENDENCY_SCANNING_DISABLED: \"true\"\n\ntest:\n  stage: test\n  image: microsoft/dotnet:latest\n  script:\n    - 'dotnet test --no-restore'\n\nlicense_management:\n  stage: test\n  before_script:\n    - sudo apt-get update\n    - sudo apt-get install -y dotnet-runtime-2.2 dotnet-sdk-2.2\n\nproduction:\n  environment:\n    name: aks/production\n    url: http://$CI_PROJECT_PATH_SLUG.$KUBE_INGRESS_BASE_DOMAIN\n```\n{: .language-yaml}\n\nパイプラインは自動的に実行され、正常にデプロイされます。[パイプライン](https://gitlab.com/gitops-demo/apps/my-asp-net-app1/pipelines/88314435)を表示することで、デプロイの仕組みを確認することができます。\nASP.NETアプリケーションのビルドから本番環境までのパイプラインの流れ。\n{:.note.text-center}パイプラインの\n\n内部を簡単に見ると、すべてのジョブが正常に渡されたことがわかります。 Auto DevOps機能はビルドステージを開始し、[Docker](/blog/docker-hub-rate-limit-monitoring/){data-ga-name=\"docker\" data-ga-location=\"body\"}コンテナを作成して組み込みのDockerレジストリにアップロードします。テストフェーズは包括的で、[コンテナスキャン](/blog/container-security-in-gitlab/){data-ga-name=\"container scanning\" data-ga-location=\"body\"}、ライセンス管理、SAST、ユニットテストが含まれます。テスト結果を詳しく見るには、セキュリティタブとライセンスタブをクリックします。アプリケーションはパイプラインの最終段階で本番環境にデプロイされます。\n\n### AKSクラスターの内部\n\nASP.NETアプリケーションはAKSクラスターにデプロイします。「オペレーション」>「環境」の順に進み、このアプリケーション用に設定された環境を確認します。 [Prometheus](/blog/anomaly-detection-using-prometheus/){data-ga-name=\"prometheus\" data-ga-location=\"body\"}はすでにGitLabのKubernetesクラスターに統合されているため、HTTPエラーレート、レイテンシレート、スループットなどのメトリックが利用できます。\n\n環境はライブURLをクリックして直接起動でき、AKSで実行されているアプリケーションを確認できます。GitLabで既に構成されているものを超えて、アプリケーションに展開方法を指示する追加のコードはほとんどありません。 Auto DevOps機能は、Helmチャートを作成し、KubernetesとAKSにデプロイします。\n",{"id":86},"aspnet-application-on-aks",{"type":68,"componentName":68,"componentContent":88},{"header":51,"text":89,"config":90},"このデモでは、Dockerfileを使用して、[Springアプリケーション]( https://gitlab.com/gitops-demo/apps/my-spring-app2)をASP.NETアプリケーションと同様に構成する方法を学習します。[Dockerfile]( https://gitlab.com/gitops-demo/apps/my-spring-app2/blob/master/Dockerfile)は、リポジトリのルートディレクトリに配置されます。\n\n''' docker\nROM maven: 3 - jdk -8- alpine\nWORKDIR/usr/src/app\nCOPY . / usr/src/app\nRUN mvn package\nENV PORT 5000\nEXPOSE $PORT\nCMD [\" sh \", \"- c \", \"mvn -Dserver.port=${PORT} spring-boot:run\"]\n'''\n\nSpringアプリケーションのデプロイは、ASP.NETアプリケーションとは1つの点で異なります。AutoDevOpsテンプレートへの上書きは必要ありません。これは、デフォルトテンプレートを使用し、AKSの代わりにGoogle Kubernetes Engine（GKE）にデプロイするためです。アプリケーションのデプロイのワークフローは、アプリケーションがどのクラウドにデプロイされているかに関係なく同じです。これにより、[マルチクラウド](/blog/gitlab-ci-cd-is-for-multi-cloud/){data-ga-name=\"multicloud\" data-ga-location=\"body\"}が簡単になります。\n\nこの環境では、同様のビルド、テスト、および本番実行を生成することが重要です。このステップを実行することで、チームは同じメトリクス、エラー率、レイテンシー、スループットを得ることができます。この場合、アプリケーションはGoogle Kubernetes Engine（GKE）クラスターのKubernetes上のコンテナで自動的に実行されます。\n",{"id":91},"java-spring-application-on-gke",{"type":68,"componentName":68,"componentContent":93},{"header":55,"text":94,"config":95},"最後の例は、EKSにデプロイする[Pythonアプリケーション]( https://gitlab.com/gitops-demo/apps/my-python-app4)です。コンポーネントは上記の例と似ており、[gitlab-ci.ymlを使用して本番環境をEKSに変更](https://gitlab.com/gitops-demo/apps/my-python-app4/blob/master/.gitlab-ci.yml)し、Dockerfileを使用してHelmチャートを作成します。いくつかの上書きもあります。\n\n```yaml\ninclude:\n  - template: Auto-DevOps.gitlab-ci.yml\ntest:\n  image: python:3.7\n  script:\n    - pip install -r requirements.txt\n    - pip install pylint\n    - pylint main.py\nproduction:\n  environment:\n    name: eks/production\n    url: http://$CI_PROJECT_PATH_SLUG.$ KUBE_INGRESS_BASE_DOMAIN\n'''\n\nGitLab CIファイルは、EKSにデプロイするようにアプリケーションに指示します。\n{:.note.text-center}\n\n'```docker\nFROM python:3.7\nWORKDIR /app\nADD . /app/\nRUN pip install -r requirements.txt\nEXPOSE 5000\nCMD [\"python\", \"/app/main.py\"\n```\n[Dockerfile](https://gitlab.com/gitops-demo/apps/my-python-app4/blob/master/Dockerfile)はHelmチャートを準備します。\n{:.note.text-center}\n\n上記の例と同様に、[パイプライン](https://gitlab.com/gitops-demo/apps/my-python-app4/pipelines/88314654)は、ビルド、テスト、および本番フェーズの他のアプリケーションと同様に実行されます。アプリケーションがEKSにデプロイされると、ライブリンクを開き、ブラウザウィンドウにPythonアプリケーションを表示できます。\n\nGitLabは、真のマルチクラウドソリューションであり、優れたGitOpsプラクティスを維持しながら、異なるワークフローなしに、使用したいクラウドプロバイダーを決定することを可能にします。これらはすべて、同じワークフローを持つ一貫したインターフェースであり、GitLabと統合されたKubernetesを実行する主要なクラウドへのデプロイを簡単にします。\n",{"id":96},"python-application-on-eks",{"type":68,"componentName":68,"componentContent":98},{"header":59,"text":99,"config":100},"GitOpsの良いプラクティスのひとつとして、Gitリポジトリをすべてのコードの信頼できる唯一の情報源にするという点があります。GitOpsの手順にはGitリポジトリで十分ですが、GitOpsの中核となるコラボレーション、プロセスの透明性、[バージョン管理](/blog/migrating-your-version-control-to-git/){data-ga-name=\"version control\" data-ga-location=\"body\"}といったDevOpsツールはほとんどありません。\n\nGitLabの要点である[エピック](/blog/epics-three-features-accelerate-your-workflow/){data-ga-name=\"epics\" data-ga-location=\"body\"}、イシュー、[マージリクエスト](/blog/merge-trains-explained/){data-ga-name=\"merge requests\" data-ga-location=\"body\"}などのツールを使用して、チーム間のコミュニケーションと透明性を促進します。インフラストラクチャチームは、GitLabでTerraformまたは[Ansibleテンプレート](/ blog/2019/07/01/using-ansible-and-gitlab-as-infrastructure -for-code/){data- ga-name=\"ansible\" data-ga-location=\"body\"}を使用してコードを構築し、GitLab CIを使用してクラウドにデプロイできます。GitLabは真のマルチクラウドソリューションであり、ワークフローを大幅に強化することなく、GitLab CIとKubernetesを使用してあらゆるクラウドサービスにアプリケーションをデプロイすることができます。\n",{"id":101},"git-lab-for-git-ops",{"type":68,"componentName":68,"componentContent":103},{"header":63,"text":104,"config":105},"* [GitOpsとは](/topics/gitops/){data-ga-name=\"gitops\" data-ga-location=\"body\"}\n* [GitLabがGitOpsワークフローを強化する方法を見る](/solutions/gitops/){data-ga-name=\"strengthens gitops workflows\" data-ga-location=\"body\"}\n* [業界リーダーが語るGitOpsの未来](/why/gitops-infrastructure-automation/){data-ga-name=\"future of gitops\" data-ga-location=\"body\"}\n* [GitOps初心者向けガイドをダウンロード](https://page.gitlab.com/resources-ebook-beginner-guide-gitops.html)\n",{"id":106},"ready-to-learn-more-about-git-ops",{"type":108,"componentName":108},"CommonNextSteps","content:ja-jp:topics:gitops:gitops-multicloud-deployments-gitlab:index.yml","yaml","content","ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab/index.yml","ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab/index","yml",{"_path":116,"_dir":117,"_draft":6,"_partial":6,"_locale":7,"data":118,"_id":528,"_type":110,"title":529,"_source":111,"_file":530,"_stem":531,"_extension":114},"/shared/ja-jp/main-navigation","ja-jp",{"logo":119,"freeTrial":124,"sales":129,"login":134,"items":139,"search":472,"minimal":506,"duo":519},{"config":120},{"href":121,"dataGaName":122,"dataGaLocation":123},"/ja-jp/","gitlab logo","header",{"text":125,"config":126},"無料トライアルを開始",{"href":127,"dataGaName":128,"dataGaLocation":123},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":130,"config":131},"お問い合わせ",{"href":132,"dataGaName":133,"dataGaLocation":123},"/ja-jp/sales/","sales",{"text":135,"config":136},"サインイン",{"href":137,"dataGaName":138,"dataGaLocation":123},"https://gitlab.com/users/sign_in/","sign in",[140,184,283,288,394,454],{"text":141,"config":142,"cards":144,"footer":167},"プラットフォーム",{"dataNavLevelOne":143},"platform",[145,151,159],{"title":141,"description":146,"link":147},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":148,"config":149},"プラットフォームを詳しく見る",{"href":150,"dataGaName":143,"dataGaLocation":123},"/ja-jp/platform/",{"title":152,"description":153,"link":154},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":155,"config":156},"GitLab Duoのご紹介",{"href":157,"dataGaName":158,"dataGaLocation":123},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":160,"description":161,"link":162},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":163,"config":164},"詳細はこちら",{"href":165,"dataGaName":166,"dataGaLocation":123},"/ja-jp/why-gitlab/","why gitlab",{"title":168,"items":169},"利用を開始：",[170,175,180],{"text":171,"config":172},"プラットフォームエンジニアリング",{"href":173,"dataGaName":174,"dataGaLocation":123},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":176,"config":177},"開発者の経験",{"href":178,"dataGaName":179,"dataGaLocation":123},"/ja-jp/developer-experience/","Developer experience",{"text":181,"config":182},"MLOps",{"href":183,"dataGaName":181,"dataGaLocation":123},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":185,"left":186,"config":187,"link":189,"lists":193,"footer":265},"製品",true,{"dataNavLevelOne":188},"solutions",{"text":190,"config":191},"すべてのソリューションを表示",{"href":192,"dataGaName":188,"dataGaLocation":123},"/ja-jp/solutions/",[194,220,243],{"title":195,"description":196,"link":197,"items":202},"自動化","CI/CDと自動化でデプロイを加速",{"config":198},{"icon":199,"href":200,"dataGaName":201,"dataGaLocation":123},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[203,207,211,216],{"text":204,"config":205},"CI/CD",{"href":206,"dataGaLocation":123,"dataGaName":204},"/ja-jp/solutions/continuous-integration/",{"text":208,"config":209},"AIアシストによる開発",{"href":157,"dataGaLocation":123,"dataGaName":210},"AI assisted development",{"text":212,"config":213},"ソースコード管理",{"href":214,"dataGaLocation":123,"dataGaName":215},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":217,"config":218},"自動化されたソフトウェアデリバリー",{"href":200,"dataGaLocation":123,"dataGaName":219},"Automated software delivery",{"title":221,"description":222,"link":223,"items":228},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":224},{"href":225,"dataGaName":226,"dataGaLocation":123,"icon":227},"/ja-jp/solutions/security-compliance/","security and compliance","ShieldCheckLight",[229,234,239],{"text":230,"config":231},"Application Security Testing",{"href":232,"dataGaName":233,"dataGaLocation":123},"/solutions/application-security-testing/","Application security testing",{"text":235,"config":236},"ソフトウェアサプライチェーンの安全性",{"href":237,"dataGaLocation":123,"dataGaName":238},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":240,"config":241},"Software Compliance",{"href":242,"dataGaName":240,"dataGaLocation":123},"/solutions/software-compliance/",{"title":244,"link":245,"items":250},"測定",{"config":246},{"icon":247,"href":248,"dataGaName":249,"dataGaLocation":123},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[251,255,260],{"text":252,"config":253},"可視性と測定",{"href":248,"dataGaLocation":123,"dataGaName":254},"Visibility and Measurement",{"text":256,"config":257},"バリューストリーム管理",{"href":258,"dataGaLocation":123,"dataGaName":259},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":261,"config":262},"分析とインサイト",{"href":263,"dataGaLocation":123,"dataGaName":264},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":266,"items":267},"GitLabが活躍する場所",[268,273,278],{"text":269,"config":270},"Enterprise",{"href":271,"dataGaLocation":123,"dataGaName":272},"/ja-jp/enterprise/","enterprise",{"text":274,"config":275},"スモールビジネス",{"href":276,"dataGaLocation":123,"dataGaName":277},"/ja-jp/small-business/","small business",{"text":279,"config":280},"公共機関",{"href":281,"dataGaLocation":123,"dataGaName":282},"/ja-jp/solutions/public-sector/","public sector",{"text":284,"config":285},"価格",{"href":286,"dataGaName":287,"dataGaLocation":123,"dataNavLevelOne":287},"/ja-jp/pricing/","pricing",{"text":289,"config":290,"link":292,"lists":296,"feature":381},"関連リソース",{"dataNavLevelOne":291},"resources",{"text":293,"config":294},"すべてのリソースを表示",{"href":295,"dataGaName":291,"dataGaLocation":123},"/ja-jp/resources/",[297,330,353],{"title":298,"items":299},"はじめに",[300,305,310,315,320,325],{"text":301,"config":302},"インストール",{"href":303,"dataGaName":304,"dataGaLocation":123},"/ja-jp/install/","install",{"text":306,"config":307},"クイックスタートガイド",{"href":308,"dataGaName":309,"dataGaLocation":123},"/ja-jp/get-started/","quick setup checklists",{"text":311,"config":312},"学ぶ",{"href":313,"dataGaLocation":123,"dataGaName":314},"https://university.gitlab.com/","learn",{"text":316,"config":317},"製品ドキュメント",{"href":318,"dataGaName":319,"dataGaLocation":123},"https://docs.gitlab.com/","product documentation",{"text":321,"config":322},"ベストプラクティスビデオ",{"href":323,"dataGaName":324,"dataGaLocation":123},"/ja-jp/getting-started-videos/","best practice videos",{"text":326,"config":327},"インテグレーション",{"href":328,"dataGaName":329,"dataGaLocation":123},"/ja-jp/integrations/","integrations",{"title":331,"items":332},"検索する",[333,338,343,348],{"text":334,"config":335},"お客様成功事例",{"href":336,"dataGaName":337,"dataGaLocation":123},"/ja-jp/customers/","customer success stories",{"text":339,"config":340},"ブログ",{"href":341,"dataGaName":342,"dataGaLocation":123},"/ja-jp/blog/","blog",{"text":344,"config":345},"リモート",{"href":346,"dataGaName":347,"dataGaLocation":123},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":349,"config":350},"TeamOps",{"href":351,"dataGaName":352,"dataGaLocation":123},"/ja-jp/teamops/","teamops",{"title":354,"items":355},"つなげる",[356,361,366,371,376],{"text":357,"config":358},"GitLabサービス",{"href":359,"dataGaName":360,"dataGaLocation":123},"/ja-jp/services/","services",{"text":362,"config":363},"コミュニティ",{"href":364,"dataGaName":365,"dataGaLocation":123},"/community/","community",{"text":367,"config":368},"フォーラム",{"href":369,"dataGaName":370,"dataGaLocation":123},"https://forum.gitlab.com/","forum",{"text":372,"config":373},"イベント",{"href":374,"dataGaName":375,"dataGaLocation":123},"/events/","events",{"text":377,"config":378},"パートナー",{"href":379,"dataGaName":380,"dataGaLocation":123},"/ja-jp/partners/","partners",{"backgroundColor":382,"textColor":383,"text":384,"image":385,"link":389},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":386,"config":387},"ソースプロモカード",{"src":388},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":390,"config":391},"最新情報を読む",{"href":392,"dataGaName":393,"dataGaLocation":123},"/ja-jp/the-source/","the source",{"text":395,"config":396,"lists":398},"Company",{"dataNavLevelOne":397},"company",[399],{"items":400},[401,406,412,414,419,424,429,434,439,444,449],{"text":402,"config":403},"GitLabについて",{"href":404,"dataGaName":405,"dataGaLocation":123},"/ja-jp/company/","about",{"text":407,"config":408,"footerGa":411},"採用情報",{"href":409,"dataGaName":410,"dataGaLocation":123},"/jobs/","jobs",{"dataGaName":410},{"text":372,"config":413},{"href":374,"dataGaName":375,"dataGaLocation":123},{"text":415,"config":416},"経営陣",{"href":417,"dataGaName":418,"dataGaLocation":123},"/company/team/e-group/","leadership",{"text":420,"config":421},"チーム",{"href":422,"dataGaName":423,"dataGaLocation":123},"/company/team/","team",{"text":425,"config":426},"ハンドブック",{"href":427,"dataGaName":428,"dataGaLocation":123},"https://handbook.gitlab.com/","handbook",{"text":430,"config":431},"投資家向け情報",{"href":432,"dataGaName":433,"dataGaLocation":123},"https://ir.gitlab.com/","investor relations",{"text":435,"config":436},"トラストセンター",{"href":437,"dataGaName":438,"dataGaLocation":123},"/ja-jp/security/","trust center",{"text":440,"config":441},"AI Transparency Center",{"href":442,"dataGaName":443,"dataGaLocation":123},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":445,"config":446},"ニュースレター",{"href":447,"dataGaName":448,"dataGaLocation":123},"/company/contact/","newsletter",{"text":450,"config":451},"プレス",{"href":452,"dataGaName":453,"dataGaLocation":123},"/press/","press",{"text":130,"config":455,"lists":456},{"dataNavLevelOne":397},[457],{"items":458},[459,462,467],{"text":130,"config":460},{"href":132,"dataGaName":461,"dataGaLocation":123},"talk to sales",{"text":463,"config":464},"サポートを受ける",{"href":465,"dataGaName":466,"dataGaLocation":123},"/support/","get help",{"text":468,"config":469},"カスタマーポータル",{"href":470,"dataGaName":471,"dataGaLocation":123},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":473,"login":474,"suggestions":481},"閉じる",{"text":475,"link":476},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":477,"config":478},"GitLab.com",{"href":137,"dataGaName":479,"dataGaLocation":480},"search login","search",{"text":482,"default":483},"提案",[484,487,492,494,498,502],{"text":152,"config":485},{"href":157,"dataGaName":486,"dataGaLocation":480},"GitLab Duo (AI)",{"text":488,"config":489},"コード提案（AI）",{"href":490,"dataGaName":491,"dataGaLocation":480},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":204,"config":493},{"href":206,"dataGaName":204,"dataGaLocation":480},{"text":495,"config":496},"GitLab on AWS",{"href":497,"dataGaName":495,"dataGaLocation":480},"/ja-jp/partners/technology-partners/aws/",{"text":499,"config":500},"GitLab on Google Cloud",{"href":501,"dataGaName":499,"dataGaLocation":480},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":503,"config":504},"GitLabを選ぶ理由",{"href":165,"dataGaName":505,"dataGaLocation":480},"Why GitLab?",{"freeTrial":507,"mobileIcon":511,"desktopIcon":516},{"text":125,"config":508},{"href":509,"dataGaName":128,"dataGaLocation":510},"https://gitlab.com/-/trials/new/","nav",{"altText":512,"config":513},"GitLabアイコン",{"src":514,"dataGaName":515,"dataGaLocation":510},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":512,"config":517},{"src":518,"dataGaName":515,"dataGaLocation":510},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":520,"mobileIcon":524,"desktopIcon":526},{"text":521,"config":522},"GitLab Duoの詳細について",{"href":157,"dataGaName":523,"dataGaLocation":510},"gitlab duo",{"altText":512,"config":525},{"src":514,"dataGaName":515,"dataGaLocation":510},{"altText":512,"config":527},{"src":518,"dataGaName":515,"dataGaLocation":510},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":533,"_dir":117,"_draft":6,"_partial":6,"_locale":7,"title":534,"button":535,"config":540,"_id":542,"_type":110,"_source":111,"_file":543,"_stem":544,"_extension":114},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":536,"config":537},"ベータ版を試す",{"href":538,"dataGaName":539,"dataGaLocation":123},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":541},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":546,"_dir":117,"_draft":6,"_partial":6,"_locale":7,"data":547,"_id":749,"_type":110,"title":750,"_source":111,"_file":751,"_stem":752,"_extension":114},"/shared/ja-jp/main-footer",{"text":548,"source":549,"edit":555,"contribute":560,"config":565,"items":570,"minimal":741},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":550,"config":551},"ページのソースを表示",{"href":552,"dataGaName":553,"dataGaLocation":554},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":556,"config":557},"このページを編集",{"href":558,"dataGaName":559,"dataGaLocation":554},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":561,"config":562},"ご協力をお願いします",{"href":563,"dataGaName":564,"dataGaLocation":554},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":566,"facebook":567,"youtube":568,"linkedin":569},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[571,594,646,679,713],{"title":141,"links":572,"subMenu":577},[573],{"text":574,"config":575},"DevSecOpsプラットフォーム",{"href":150,"dataGaName":576,"dataGaLocation":554},"devsecops platform",[578],{"title":284,"links":579},[580,584,589],{"text":581,"config":582},"プランの表示",{"href":286,"dataGaName":583,"dataGaLocation":554},"view plans",{"text":585,"config":586},"Premiumを選ぶ理由",{"href":587,"dataGaName":588,"dataGaLocation":554},"/ja-jp/pricing/premium/","why premium",{"text":590,"config":591},"Ultimateを選ぶ理由",{"href":592,"dataGaName":593,"dataGaLocation":554},"/ja-jp/pricing/ultimate/","why ultimate",{"title":595,"links":596},"ソリューション",[597,602,605,607,612,617,621,624,627,630,632,634,636,641],{"text":598,"config":599},"デジタルトランスフォーメーション",{"href":600,"dataGaName":601,"dataGaLocation":554},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":603,"config":604},"セキュリティとコンプライアンス",{"href":232,"dataGaName":233,"dataGaLocation":554},{"text":217,"config":606},{"href":200,"dataGaName":201,"dataGaLocation":554},{"text":608,"config":609},"アジャイル開発",{"href":610,"dataGaName":611,"dataGaLocation":554},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":613,"config":614},"クラウドトランスフォーメーション",{"href":615,"dataGaName":616,"dataGaLocation":554},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":618,"config":619},"SCM",{"href":214,"dataGaName":620,"dataGaLocation":554},"source code management",{"text":204,"config":622},{"href":206,"dataGaName":623,"dataGaLocation":554},"continuous integration & delivery",{"text":256,"config":625},{"href":258,"dataGaName":626,"dataGaLocation":554},"value stream management",{"text":21,"config":628},{"href":629,"dataGaName":5,"dataGaLocation":554},"/ja-jp/solutions/gitops/",{"text":269,"config":631},{"href":271,"dataGaName":272,"dataGaLocation":554},{"text":274,"config":633},{"href":276,"dataGaName":277,"dataGaLocation":554},{"text":279,"config":635},{"href":281,"dataGaName":282,"dataGaLocation":554},{"text":637,"config":638},"教育",{"href":639,"dataGaName":640,"dataGaLocation":554},"/ja-jp/solutions/education/","education",{"text":642,"config":643},"金融サービス",{"href":644,"dataGaName":645,"dataGaLocation":554},"/ja-jp/solutions/finance/","financial services",{"title":289,"links":647},[648,650,652,654,657,659,663,665,667,669,671,673,675,677],{"text":301,"config":649},{"href":303,"dataGaName":304,"dataGaLocation":554},{"text":306,"config":651},{"href":308,"dataGaName":309,"dataGaLocation":554},{"text":311,"config":653},{"href":313,"dataGaName":314,"dataGaLocation":554},{"text":316,"config":655},{"href":318,"dataGaName":656,"dataGaLocation":554},"docs",{"text":339,"config":658},{"href":341,"dataGaName":342},{"text":660,"config":661},"お客様の成功事例",{"href":662,"dataGaLocation":554},"/customers/",{"text":334,"config":664},{"href":336,"dataGaName":337,"dataGaLocation":554},{"text":344,"config":666},{"href":346,"dataGaName":347,"dataGaLocation":554},{"text":357,"config":668},{"href":359,"dataGaName":360,"dataGaLocation":554},{"text":349,"config":670},{"href":351,"dataGaName":352,"dataGaLocation":554},{"text":362,"config":672},{"href":364,"dataGaName":365,"dataGaLocation":554},{"text":367,"config":674},{"href":369,"dataGaName":370,"dataGaLocation":554},{"text":372,"config":676},{"href":374,"dataGaName":375,"dataGaLocation":554},{"text":377,"config":678},{"href":379,"dataGaName":380,"dataGaLocation":554},{"title":395,"links":680},[681,683,685,687,689,691,693,697,702,704,706,708],{"text":402,"config":682},{"href":404,"dataGaName":397,"dataGaLocation":554},{"text":407,"config":684},{"href":409,"dataGaName":410,"dataGaLocation":554},{"text":415,"config":686},{"href":417,"dataGaName":418,"dataGaLocation":554},{"text":420,"config":688},{"href":422,"dataGaName":423,"dataGaLocation":554},{"text":425,"config":690},{"href":427,"dataGaName":428,"dataGaLocation":554},{"text":430,"config":692},{"href":432,"dataGaName":433,"dataGaLocation":554},{"text":694,"config":695},"Sustainability",{"href":696,"dataGaName":694,"dataGaLocation":554},"/sustainability/",{"text":698,"config":699},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":700,"dataGaName":701,"dataGaLocation":554},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":435,"config":703},{"href":437,"dataGaName":438,"dataGaLocation":554},{"text":445,"config":705},{"href":447,"dataGaName":448,"dataGaLocation":554},{"text":450,"config":707},{"href":452,"dataGaName":453,"dataGaLocation":554},{"text":709,"config":710},"現代奴隷制の透明性に関する声明",{"href":711,"dataGaName":712,"dataGaLocation":554},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":130,"links":714},[715,717,719,721,726,731,736],{"text":130,"config":716},{"href":132,"dataGaName":133,"dataGaLocation":554},{"text":463,"config":718},{"href":465,"dataGaName":466,"dataGaLocation":554},{"text":468,"config":720},{"href":470,"dataGaName":471,"dataGaLocation":554},{"text":722,"config":723},"ステータス",{"href":724,"dataGaName":725,"dataGaLocation":554},"https://status.gitlab.com/","status",{"text":727,"config":728},"利用規約",{"href":729,"dataGaName":730,"dataGaLocation":554},"/terms/","terms of use",{"text":732,"config":733},"プライバシーに関する声明",{"href":734,"dataGaName":735,"dataGaLocation":554},"/ja-jp/privacy/","privacy statement",{"text":737,"config":738},"Cookieの設定",{"dataGaName":739,"dataGaLocation":554,"id":740,"isOneTrustButton":186},"cookie preferences","ot-sdk-btn",{"items":742},[743,745,747],{"text":727,"config":744},{"href":729,"dataGaName":730,"dataGaLocation":554},{"text":732,"config":746},{"href":734,"dataGaName":735,"dataGaLocation":554},{"text":737,"config":748},{"dataGaName":739,"dataGaLocation":554,"id":740,"isOneTrustButton":186},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":754,"_dir":117,"_draft":6,"_partial":6,"_locale":7,"header":755,"eyebrow":756,"blurb":757,"button":758,"secondaryButton":762,"_id":764,"_type":110,"title":765,"_source":111,"_file":766,"_stem":767,"_extension":114},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":125,"config":759},{"href":760,"dataGaName":128,"dataGaLocation":761},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":130,"config":763},{"href":132,"dataGaName":133,"dataGaLocation":761},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",1758326302389]