[{"data":1,"prerenderedAt":738},["ShallowReactive",2],{"/ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab":3,"navigation-ja-jp":115,"banner-ja-jp":514,"footer-ja-jp":524,"next-steps-ja-jp":729},{"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":504},{"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/ja-jp&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/get-started/","get started",{"freeTrial":496,"mobileIcon":500,"desktopIcon":502},{"text":497,"config":498},"GitLab Duoの詳細について",{"href":155,"dataGaName":499,"dataGaLocation":482},"gitlab duo",{"altText":484,"config":501},{"src":486,"dataGaName":487,"dataGaLocation":482},{"altText":484,"config":503},{"src":490,"dataGaName":487,"dataGaLocation":482},{"freeTrial":505,"mobileIcon":510,"desktopIcon":512},{"text":506,"config":507},"料金ページに戻る",{"href":264,"dataGaName":508,"dataGaLocation":482,"icon":509},"back to pricing","GoBack",{"altText":484,"config":511},{"src":486,"dataGaName":487,"dataGaLocation":482},{"altText":484,"config":513},{"src":490,"dataGaName":487,"dataGaLocation":482},{"title":515,"button":516,"config":521},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":517,"config":518},"GitLab Transcendを今すぐ視聴",{"href":519,"dataGaName":520,"dataGaLocation":121},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":522,"icon":523,"disabled":109},"release","AiStar",{"data":525},{"text":526,"source":527,"edit":533,"contribute":538,"config":543,"items":548,"minimal":721},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":528,"config":529},"ページのソースを表示",{"href":530,"dataGaName":531,"dataGaLocation":532},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":534,"config":535},"このページを編集",{"href":536,"dataGaName":537,"dataGaLocation":532},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":539,"config":540},"ご協力をお願いします",{"href":541,"dataGaName":542,"dataGaLocation":532},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":544,"facebook":545,"youtube":546,"linkedin":547},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[549,572,625,655,690],{"title":139,"links":550,"subMenu":555},[551],{"text":552,"config":553},"DevSecOpsプラットフォーム",{"href":148,"dataGaName":554,"dataGaLocation":532},"devsecops platform",[556],{"title":262,"links":557},[558,562,567],{"text":559,"config":560},"プランの表示",{"href":264,"dataGaName":561,"dataGaLocation":532},"view plans",{"text":563,"config":564},"Premiumを選ぶ理由",{"href":565,"dataGaName":566,"dataGaLocation":532},"/ja-jp/pricing/premium/","why premium",{"text":568,"config":569},"Ultimateを選ぶ理由",{"href":570,"dataGaName":571,"dataGaLocation":532},"/ja-jp/pricing/ultimate/","why ultimate",{"title":573,"links":574},"ソリューション",[575,580,583,585,590,595,599,602,605,609,611,613,615,620],{"text":576,"config":577},"デジタルトランスフォーメーション",{"href":578,"dataGaName":579,"dataGaLocation":532},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":581,"config":582},"セキュリティとコンプライアンス",{"href":204,"dataGaName":211,"dataGaLocation":532},{"text":196,"config":584},{"href":180,"dataGaName":181,"dataGaLocation":532},{"text":586,"config":587},"アジャイル開発",{"href":588,"dataGaName":589,"dataGaLocation":532},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":591,"config":592},"クラウドトランスフォーメーション",{"href":593,"dataGaName":594,"dataGaLocation":532},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":596,"config":597},"SCM",{"href":193,"dataGaName":598,"dataGaLocation":532},"source code management",{"text":184,"config":600},{"href":186,"dataGaName":601,"dataGaLocation":532},"continuous integration & delivery",{"text":234,"config":603},{"href":236,"dataGaName":604,"dataGaLocation":532},"value stream management",{"text":17,"config":606},{"href":607,"dataGaName":608,"dataGaLocation":532},"/ja-jp/solutions/gitops/","gitops",{"text":247,"config":610},{"href":249,"dataGaName":250,"dataGaLocation":532},{"text":252,"config":612},{"href":254,"dataGaName":255,"dataGaLocation":532},{"text":257,"config":614},{"href":259,"dataGaName":260,"dataGaLocation":532},{"text":616,"config":617},"教育",{"href":618,"dataGaName":619,"dataGaLocation":532},"/ja-jp/solutions/education/","education",{"text":621,"config":622},"金融サービス",{"href":623,"dataGaName":624,"dataGaLocation":532},"/ja-jp/solutions/finance/","financial services",{"title":267,"links":626},[627,629,631,633,636,638,641,643,645,647,649,651,653],{"text":279,"config":628},{"href":281,"dataGaName":282,"dataGaLocation":532},{"text":284,"config":630},{"href":286,"dataGaName":287,"dataGaLocation":532},{"text":289,"config":632},{"href":291,"dataGaName":292,"dataGaLocation":532},{"text":294,"config":634},{"href":296,"dataGaName":635,"dataGaLocation":532},"docs",{"text":317,"config":637},{"href":319,"dataGaName":320},{"text":639,"config":640},"お客様の成功事例",{"href":314,"dataGaLocation":532},{"text":312,"config":642},{"href":314,"dataGaName":315,"dataGaLocation":532},{"text":322,"config":644},{"href":324,"dataGaName":325,"dataGaLocation":532},{"text":330,"config":646},{"href":332,"dataGaName":333,"dataGaLocation":532},{"text":335,"config":648},{"href":337,"dataGaName":338,"dataGaLocation":532},{"text":340,"config":650},{"href":342,"dataGaName":343,"dataGaLocation":532},{"text":345,"config":652},{"href":347,"dataGaName":348,"dataGaLocation":532},{"text":350,"config":654},{"href":352,"dataGaName":353,"dataGaLocation":532},{"title":656,"links":657},"Company",[658,660,662,664,666,668,670,674,679,681,683,685],{"text":375,"config":659},{"href":377,"dataGaName":370,"dataGaLocation":532},{"text":380,"config":661},{"href":382,"dataGaName":383,"dataGaLocation":532},{"text":388,"config":663},{"href":390,"dataGaName":391,"dataGaLocation":532},{"text":393,"config":665},{"href":395,"dataGaName":396,"dataGaLocation":532},{"text":398,"config":667},{"href":400,"dataGaName":401,"dataGaLocation":532},{"text":403,"config":669},{"href":405,"dataGaName":406,"dataGaLocation":532},{"text":671,"config":672},"Sustainability",{"href":673,"dataGaName":671,"dataGaLocation":532},"/sustainability/",{"text":675,"config":676},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":677,"dataGaName":678,"dataGaLocation":532},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":408,"config":680},{"href":410,"dataGaName":411,"dataGaLocation":532},{"text":418,"config":682},{"href":420,"dataGaName":421,"dataGaLocation":532},{"text":423,"config":684},{"href":425,"dataGaName":426,"dataGaLocation":532},{"text":686,"config":687},"現代奴隷制の透明性に関する声明",{"href":688,"dataGaName":689,"dataGaLocation":532},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":128,"links":691},[692,694,699,701,706,711,716],{"text":128,"config":693},{"href":130,"dataGaName":131,"dataGaLocation":532},{"text":695,"config":696},"サポートを受ける",{"href":697,"dataGaName":698,"dataGaLocation":532},"https://support.gitlab.com/hc/en-us/articles/11626483177756-GitLab-Support","get help",{"text":441,"config":700},{"href":443,"dataGaName":444,"dataGaLocation":532},{"text":702,"config":703},"ステータス",{"href":704,"dataGaName":705,"dataGaLocation":532},"https://status.gitlab.com/","status",{"text":707,"config":708},"利用規約",{"href":709,"dataGaName":710,"dataGaLocation":532},"/terms/","terms of use",{"text":712,"config":713},"プライバシーに関する声明",{"href":714,"dataGaName":715,"dataGaLocation":532},"/ja-jp/privacy/","privacy statement",{"text":717,"config":718},"Cookieの設定",{"dataGaName":719,"dataGaLocation":532,"id":720,"isOneTrustButton":109},"cookie preferences","ot-sdk-btn",{"items":722},[723,725,727],{"text":707,"config":724},{"href":709,"dataGaName":710,"dataGaLocation":532},{"text":712,"config":726},{"href":714,"dataGaName":715,"dataGaLocation":532},{"text":717,"config":728},{"dataGaName":719,"dataGaLocation":532,"id":720,"isOneTrustButton":109},{"header":730,"blurb":731,"button":732,"secondaryButton":736},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":123,"config":733},{"href":734,"dataGaName":126,"dataGaLocation":735},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":128,"config":737},{"href":130,"dataGaName":131,"dataGaLocation":735},1776436796525]