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