[{"data":1,"prerenderedAt":802},["ShallowReactive",2],{"/ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab":3,"navigation-ja-jp":115,"banner-ja-jp":545,"footer-ja-jp":553,"next-steps-ja-jp":793},{"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},"/ja-jp/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の未来](/ja-jp/solutions/gitops/){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","ZlQLQc1iR1J_stCqndx5V4thLkUs_LeP8alX887kD5I",{"logo":116,"freeTrial":121,"sales":126,"login":131,"items":136,"search":465,"minimal":498,"duo":515,"switchNav":524,"pricingDeployment":535},{"config":117},{"href":118,"dataGaName":119,"dataGaLocation":120},"/ja-jp/","gitlab logo","header",{"text":122,"config":123},"無料トライアルを開始",{"href":124,"dataGaName":125,"dataGaLocation":120},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":127,"config":128},"デモをリクエスト",{"href":129,"dataGaName":130,"dataGaLocation":120},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":132,"config":133},"サインイン",{"href":134,"dataGaName":135,"dataGaLocation":120},"https://gitlab.com/users/sign_in/","sign in",[137,166,268,273,387,443],{"text":138,"config":139,"menu":141},"プラットフォーム",{"dataNavLevelOne":140},"platform",{"type":142,"columns":143},"cards",[144,150,158],{"title":138,"description":145,"link":146},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":147,"config":148},"プラットフォームの詳細はこちら",{"href":149,"dataGaName":140,"dataGaLocation":120},"/ja-jp/platform/",{"title":151,"description":152,"link":153},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":154,"config":155},"GitLab Duoのご紹介",{"href":156,"dataGaName":157,"dataGaLocation":120},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":159,"description":160,"link":161},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":162,"config":163},"詳細はこちら",{"href":164,"dataGaName":165,"dataGaLocation":120},"/ja-jp/why-gitlab/","why gitlab",{"text":167,"left":109,"config":168,"menu":170},"製品",{"dataNavLevelOne":169},"solutions",{"type":171,"link":172,"columns":176,"feature":247},"lists",{"text":173,"config":174},"すべてのソリューションを表示",{"href":175,"dataGaName":169,"dataGaLocation":120},"/ja-jp/solutions/",[177,202,225],{"title":178,"description":179,"link":180,"items":185},"自動化","CI/CDと自動化でデプロイを加速",{"config":181},{"icon":182,"href":183,"dataGaName":184,"dataGaLocation":120},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[186,190,193,198],{"text":187,"config":188},"CI/CD",{"href":189,"dataGaLocation":120,"dataGaName":187},"/ja-jp/solutions/continuous-integration/",{"text":151,"config":191},{"href":156,"dataGaLocation":120,"dataGaName":192},"gitlab duo agent platform - product menu",{"text":194,"config":195},"ソースコード管理",{"href":196,"dataGaLocation":120,"dataGaName":197},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":199,"config":200},"自動化されたソフトウェアデリバリー",{"href":183,"dataGaLocation":120,"dataGaName":201},"Automated software delivery",{"title":203,"description":204,"link":205,"items":210},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":206},{"href":207,"dataGaName":208,"dataGaLocation":120,"icon":209},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[211,215,220],{"text":212,"config":213},"アプリケーションセキュリティテスト",{"href":207,"dataGaName":214,"dataGaLocation":120},"Application security testing",{"text":216,"config":217},"ソフトウェアサプライチェーンセキュリティ",{"href":218,"dataGaLocation":120,"dataGaName":219},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":221,"config":222},"ソフトウェアコンプライアンス",{"href":223,"dataGaName":224,"dataGaLocation":120},"/ja-jp/solutions/software-compliance/","software compliance",{"title":226,"link":227,"items":232},"測定",{"config":228},{"icon":229,"href":230,"dataGaName":231,"dataGaLocation":120},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[233,237,242],{"text":234,"config":235},"可視性と測定",{"href":230,"dataGaLocation":120,"dataGaName":236},"Visibility and Measurement",{"text":238,"config":239},"バリューストリーム管理",{"href":240,"dataGaLocation":120,"dataGaName":241},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":243,"config":244},"分析とインサイト",{"href":245,"dataGaLocation":120,"dataGaName":246},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":248,"type":171,"items":249},"GitLabが活躍する場所",[250,256,262],{"text":251,"config":252},"大企業",{"icon":253,"href":254,"dataGaLocation":120,"dataGaName":255},"Building","/ja-jp/enterprise/","enterprise",{"text":257,"config":258},"スモールビジネス",{"icon":259,"href":260,"dataGaLocation":120,"dataGaName":261},"Work","/ja-jp/small-business/","small business",{"text":263,"config":264},"公共部門",{"icon":265,"href":266,"dataGaLocation":120,"dataGaName":267},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":269,"config":270},"価格",{"href":271,"dataGaName":272,"dataGaLocation":120,"dataNavLevelOne":272},"/ja-jp/pricing/","pricing",{"text":274,"config":275,"menu":277},"関連リソース",{"dataNavLevelOne":276},"resources",{"type":171,"link":278,"columns":282,"feature":376},{"text":279,"config":280},"すべてのリソースを表示",{"href":281,"dataGaName":276,"dataGaLocation":120},"/ja-jp/resources/",[283,316,343],{"title":284,"items":285},"はじめに",[286,291,296,301,306,311],{"text":287,"config":288},"インストール",{"href":289,"dataGaName":290,"dataGaLocation":120},"/ja-jp/install/","install",{"text":292,"config":293},"クイックスタートガイド",{"href":294,"dataGaName":295,"dataGaLocation":120},"/ja-jp/get-started/","quick setup checklists",{"text":297,"config":298},"学ぶ",{"href":299,"dataGaLocation":120,"dataGaName":300},"https://university.gitlab.com/","learn",{"text":302,"config":303},"製品ドキュメント",{"href":304,"dataGaName":305,"dataGaLocation":120},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":307,"config":308},"ベストプラクティスビデオ",{"href":309,"dataGaName":310,"dataGaLocation":120},"/ja-jp/getting-started-videos/","best practice videos",{"text":312,"config":313},"インテグレーション",{"href":314,"dataGaName":315,"dataGaLocation":120},"/ja-jp/integrations/","integrations",{"title":317,"items":318},"検索する",[319,324,329,334,338],{"text":320,"config":321},"お客様成功事例",{"href":322,"dataGaName":323,"dataGaLocation":120},"/ja-jp/customers/","customer success stories",{"text":325,"config":326},"ブログ",{"href":327,"dataGaName":328,"dataGaLocation":120},"/ja-jp/blog/","blog",{"text":330,"config":331},"Demo Hub",{"href":332,"dataGaName":333,"dataGaLocation":120},"/ja-jp/demo-hub/","demo hub",{"text":335,"config":336},"The Source",{"href":337,"dataGaName":328,"dataGaLocation":120},"/ja-jp/the-source/",{"text":339,"config":340},"リモート",{"href":341,"dataGaName":342,"dataGaLocation":120},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":344,"items":345},"つなげる",[346,351,356,361,366,371],{"text":347,"config":348},"GitLabサービス",{"href":349,"dataGaName":350,"dataGaLocation":120},"/ja-jp/services/","services",{"text":352,"config":353},"コントリビュート",{"href":354,"dataGaName":355,"dataGaLocation":120},"https://contributors.gitlab.com","contribute",{"text":357,"config":358},"コミュニティ",{"href":359,"dataGaName":360,"dataGaLocation":120},"/community/","community",{"text":362,"config":363},"フォーラム",{"href":364,"dataGaName":365,"dataGaLocation":120},"https://forum.gitlab.com/","forum",{"text":367,"config":368},"イベント",{"href":369,"dataGaName":370,"dataGaLocation":120},"/events/","events",{"text":372,"config":373},"パートナー",{"href":374,"dataGaName":375,"dataGaLocation":120},"/ja-jp/partners/","partners",{"config":377,"title":380,"text":381,"link":382},{"background":378,"textColor":379},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":383,"config":384},"最新情報を読む",{"href":385,"dataGaName":386,"dataGaLocation":120},"/ja-jp/whats-new/","whats new",{"text":388,"config":389,"menu":391},"企業情報",{"dataNavLevelOne":390},"company",{"type":171,"columns":392},[393],{"items":394},[395,400,406,408,413,418,423,428,433,438],{"text":396,"config":397},"GitLabについて",{"href":398,"dataGaName":399,"dataGaLocation":120},"/ja-jp/company/","about",{"text":401,"config":402,"footerGa":405},"採用情報",{"href":403,"dataGaName":404,"dataGaLocation":120},"/jobs/","jobs",{"dataGaName":404},{"text":367,"config":407},{"href":369,"dataGaName":370,"dataGaLocation":120},{"text":409,"config":410},"経営陣",{"href":411,"dataGaName":412,"dataGaLocation":120},"/company/team/e-group/","leadership",{"text":414,"config":415},"ハンドブック",{"href":416,"dataGaName":417,"dataGaLocation":120},"https://handbook.gitlab.com/","handbook",{"text":419,"config":420},"投資家向け情報",{"href":421,"dataGaName":422,"dataGaLocation":120},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":424,"config":425},"トラストセンター",{"href":426,"dataGaName":427,"dataGaLocation":120},"/ja-jp/security/","trust center",{"text":429,"config":430},"AI Transparency Center",{"href":431,"dataGaName":432,"dataGaLocation":120},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":434,"config":435},"ニュースレター",{"href":436,"dataGaName":437,"dataGaLocation":120},"/company/contact/#contact-forms","newsletter",{"text":439,"config":440},"プレス",{"href":441,"dataGaName":442,"dataGaLocation":120},"/press/","press",{"text":444,"config":445,"menu":446},"お問い合わせ",{"dataNavLevelOne":390},{"type":171,"columns":447},[448],{"items":449},[450,455,460],{"text":451,"config":452},"お問い合わせはこちら",{"href":453,"dataGaName":454,"dataGaLocation":120},"/ja-jp/sales/","talk to sales",{"text":456,"config":457},"サポートを受ける",{"href":458,"dataGaName":459,"dataGaLocation":120},"https://support.gitlab.com/hc/en-us","support portal",{"text":461,"config":462},"カスタマーポータル",{"href":463,"dataGaName":464,"dataGaLocation":120},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":466,"login":467,"suggestions":474},"閉じる",{"text":468,"link":469},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":470,"config":471},"GitLab.com",{"href":134,"dataGaName":472,"dataGaLocation":473},"search login","search",{"text":475,"default":476},"提案",[477,479,484,486,490,494],{"text":151,"config":478},{"href":156,"dataGaName":151,"dataGaLocation":473},{"text":480,"config":481},"コード提案（AI）",{"href":482,"dataGaName":483,"dataGaLocation":473},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":187,"config":485},{"href":189,"dataGaName":187,"dataGaLocation":473},{"text":487,"config":488},"GitLab on AWS",{"href":489,"dataGaName":487,"dataGaLocation":473},"/ja-jp/partners/technology-partners/aws/",{"text":491,"config":492},"GitLab on Google Cloud",{"href":493,"dataGaName":491,"dataGaLocation":473},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":495,"config":496},"GitLabを選ぶ理由",{"href":164,"dataGaName":497,"dataGaLocation":473},"Why GitLab?",{"freeTrial":499,"mobileIcon":503,"desktopIcon":508,"secondaryButton":511},{"text":122,"config":500},{"href":501,"dataGaName":125,"dataGaLocation":502},"https://gitlab.com/-/trials/new/","nav",{"altText":504,"config":505},"GitLabアイコン",{"src":506,"dataGaName":507,"dataGaLocation":502},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":504,"config":509},{"src":510,"dataGaName":507,"dataGaLocation":502},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":284,"config":512},{"href":513,"dataGaName":514,"dataGaLocation":502},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":516,"mobileIcon":520,"desktopIcon":522},{"text":517,"config":518},"GitLab Duoの詳細について",{"href":156,"dataGaName":519,"dataGaLocation":502},"gitlab duo",{"altText":504,"config":521},{"src":506,"dataGaName":507,"dataGaLocation":502},{"altText":504,"config":523},{"src":510,"dataGaName":507,"dataGaLocation":502},{"button":525,"mobileIcon":530,"desktopIcon":532},{"text":526,"config":527},"/switch",{"href":528,"dataGaName":529,"dataGaLocation":502},"#contact","switch",{"altText":504,"config":531},{"src":506,"dataGaName":507,"dataGaLocation":502},{"altText":504,"config":533},{"src":534,"dataGaName":507,"dataGaLocation":502},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":536,"mobileIcon":541,"desktopIcon":543},{"text":537,"config":538},"料金ページに戻る",{"href":271,"dataGaName":539,"dataGaLocation":502,"icon":540},"back to pricing","GoBack",{"altText":504,"config":542},{"src":506,"dataGaName":507,"dataGaLocation":502},{"altText":504,"config":544},{"src":510,"dataGaName":507,"dataGaLocation":502},{"title":546,"button":547,"config":551},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":162,"config":548},{"href":549,"dataGaName":550,"dataGaLocation":120},"/ja-jp/gitlab-orbit/","orbit",{"layout":552,"disabled":29},"release",{"data":554},{"text":555,"source":556,"edit":562,"contribute":567,"config":572,"items":577,"minimal":784},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":557,"config":558},"ページのソースを表示",{"href":559,"dataGaName":560,"dataGaLocation":561},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":563,"config":564},"このページを編集",{"href":565,"dataGaName":566,"dataGaLocation":561},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":568,"config":569},"ご協力をお願いします",{"href":570,"dataGaName":571,"dataGaLocation":561},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":573,"facebook":574,"youtube":575,"linkedin":576},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[578,623,674,717,751],{"title":269,"links":579,"subMenu":594},[580,584,589],{"text":581,"config":582},"プランの表示",{"href":271,"dataGaName":583,"dataGaLocation":561},"view plans",{"text":585,"config":586},"Premiumを選ぶ理由",{"href":587,"dataGaName":588,"dataGaLocation":561},"/ja-jp/pricing/premium/","why premium",{"text":590,"config":591},"Ultimateを選ぶ理由",{"href":592,"dataGaName":593,"dataGaLocation":561},"/ja-jp/pricing/ultimate/","why ultimate",[595],{"title":444,"links":596},[597,599,601,603,608,613,618],{"text":444,"config":598},{"href":453,"dataGaName":130,"dataGaLocation":561},{"text":456,"config":600},{"href":458,"dataGaName":459,"dataGaLocation":561},{"text":461,"config":602},{"href":463,"dataGaName":464,"dataGaLocation":561},{"text":604,"config":605},"ステータス",{"href":606,"dataGaName":607,"dataGaLocation":561},"https://status.gitlab.com/","status",{"text":609,"config":610},"利用規約",{"href":611,"dataGaName":612,"dataGaLocation":561},"/terms/","terms of use",{"text":614,"config":615},"プライバシーに関する声明",{"href":616,"dataGaName":617,"dataGaLocation":561},"/ja-jp/privacy/","privacy statement",{"text":619,"config":620},"Cookie 優先設定",{"dataGaName":621,"dataGaLocation":561,"id":622,"isOneTrustButton":109},"cookie preferences","ot-sdk-btn",{"title":167,"links":624,"subMenu":633},[625,629],{"text":626,"config":627},"DevSecOpsプラットフォーム",{"href":149,"dataGaName":628,"dataGaLocation":561},"devsecops platform",{"text":630,"config":631},"AI支援開発",{"href":156,"dataGaName":632,"dataGaLocation":561},"ai-assisted development",[634],{"title":635,"links":636},"トピック",[637,641,644,649,654,659,664,669],{"text":187,"config":638},{"href":639,"dataGaName":640,"dataGaLocation":561},"/ja-jp/topics/ci-cd/","cicd",{"text":17,"config":642},{"href":19,"dataGaName":643,"dataGaLocation":561},"gitops",{"text":645,"config":646},"DevOps",{"href":647,"dataGaName":648,"dataGaLocation":561},"/ja-jp/topics/devops/","devops",{"text":650,"config":651},"バージョン管理",{"href":652,"dataGaName":653,"dataGaLocation":561},"/ja-jp/topics/version-control/","version control",{"text":655,"config":656},"DevSecOps",{"href":657,"dataGaName":658,"dataGaLocation":561},"/ja-jp/topics/devsecops/","devsecops",{"text":660,"config":661},"クラウドネイティブ",{"href":662,"dataGaName":663,"dataGaLocation":561},"/ja-jp/topics/cloud-native/","cloud native",{"text":665,"config":666},"コーディングのためのAI",{"href":667,"dataGaName":668,"dataGaLocation":561},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":670,"config":671},"エージェント型AI",{"href":672,"dataGaName":673,"dataGaLocation":561},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":675,"links":676},"ソリューション",[677,680,682,687,691,694,697,700,702,704,707,712],{"text":212,"config":678},{"href":207,"dataGaName":679,"dataGaLocation":561},"Application Security Testing",{"text":199,"config":681},{"href":183,"dataGaName":184,"dataGaLocation":561},{"text":683,"config":684},"アジャイル開発",{"href":685,"dataGaName":686,"dataGaLocation":561},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":688,"config":689},"SCM",{"href":196,"dataGaName":690,"dataGaLocation":561},"source code management",{"text":187,"config":692},{"href":189,"dataGaName":693,"dataGaLocation":561},"continuous integration & delivery",{"text":238,"config":695},{"href":240,"dataGaName":696,"dataGaLocation":561},"value stream management",{"text":17,"config":698},{"href":699,"dataGaName":643,"dataGaLocation":561},"/ja-jp/solutions/gitops/",{"text":251,"config":701},{"href":254,"dataGaName":255,"dataGaLocation":561},{"text":257,"config":703},{"href":260,"dataGaName":261,"dataGaLocation":561},{"text":705,"config":706},"公共機関",{"href":266,"dataGaName":267,"dataGaLocation":561},{"text":708,"config":709},"教育",{"href":710,"dataGaName":711,"dataGaLocation":561},"/ja-jp/solutions/education/","education",{"text":713,"config":714},"金融サービス",{"href":715,"dataGaName":716,"dataGaLocation":561},"/ja-jp/solutions/finance/","financial services",{"title":718,"links":719},"リソース",[720,722,724,726,730,732,735,737,739,741,743,745,747,749],{"text":287,"config":721},{"href":289,"dataGaName":290,"dataGaLocation":561},{"text":292,"config":723},{"href":294,"dataGaName":295,"dataGaLocation":561},{"text":297,"config":725},{"href":299,"dataGaName":300,"dataGaLocation":561},{"text":302,"config":727},{"href":728,"dataGaName":729,"dataGaLocation":561},"https://docs.gitlab.com/ja-jp","docs",{"text":325,"config":731},{"href":327,"dataGaName":328,"dataGaLocation":561},{"text":733,"config":734},"最新リリース",{"href":385,"dataGaName":386,"dataGaLocation":561},{"text":320,"config":736},{"href":322,"dataGaName":323,"dataGaLocation":561},{"text":339,"config":738},{"href":341,"dataGaName":342,"dataGaLocation":561},{"text":347,"config":740},{"href":349,"dataGaName":350,"dataGaLocation":561},{"text":352,"config":742},{"href":354,"dataGaName":355,"dataGaLocation":561},{"text":357,"config":744},{"href":359,"dataGaName":360,"dataGaLocation":561},{"text":362,"config":746},{"href":364,"dataGaName":365,"dataGaLocation":561},{"text":367,"config":748},{"href":369,"dataGaName":370,"dataGaLocation":561},{"text":372,"config":750},{"href":374,"dataGaName":375,"dataGaLocation":561},{"title":752,"links":753},"会社情報",[754,756,758,760,762,764,768,773,775,777,779],{"text":396,"config":755},{"href":398,"dataGaName":390,"dataGaLocation":561},{"text":401,"config":757},{"href":403,"dataGaName":404,"dataGaLocation":561},{"text":409,"config":759},{"href":411,"dataGaName":412,"dataGaLocation":561},{"text":414,"config":761},{"href":416,"dataGaName":417,"dataGaLocation":561},{"text":419,"config":763},{"href":421,"dataGaName":422,"dataGaLocation":561},{"text":765,"config":766},"Sustainability",{"href":767,"dataGaName":765,"dataGaLocation":561},"/sustainability/",{"text":769,"config":770},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":771,"dataGaName":772,"dataGaLocation":561},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":424,"config":774},{"href":426,"dataGaName":427,"dataGaLocation":561},{"text":434,"config":776},{"href":436,"dataGaName":437,"dataGaLocation":561},{"text":439,"config":778},{"href":441,"dataGaName":442,"dataGaLocation":561},{"text":780,"config":781},"現代奴隷制の透明性に関する声明",{"href":782,"dataGaName":783,"dataGaLocation":561},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":785},[786,788,791],{"text":609,"config":787},{"href":611,"dataGaName":612,"dataGaLocation":561},{"text":789,"config":790},"Cookieの設定",{"dataGaName":621,"dataGaLocation":561,"id":622,"isOneTrustButton":109},{"text":614,"config":792},{"href":616,"dataGaName":617,"dataGaLocation":561},{"header":794,"blurb":795,"button":796,"secondaryButton":800},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":122,"config":797},{"href":798,"dataGaName":125,"dataGaLocation":799},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":444,"config":801},{"href":453,"dataGaName":130,"dataGaLocation":799},1786803772824]