[{"data":1,"prerenderedAt":1058},["ShallowReactive",2],{"/ja-jp/topics/gitops":3,"navigation-ja-jp":260,"banner-ja-jp":674,"footer-ja-jp":687,"next-steps-ja-jp":895,"footer-source-/ja-jp/topics/gitops/":910},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"_id":254,"_type":255,"title":7,"_source":256,"_file":257,"_stem":258,"_extension":259},"/ja-jp/topics/gitops","topics",false,"",{"title":9,"description":10},"GitOpsとは","GitOpsは、Infrastructure as Codeと、Gitやコードレビュー、CI/CDパイプラインなどのソフトウェア開発のベストプラクティスを使用して、ITインフラストラクチャを自動化するプロセスです。",[12,22,32,98,219,252],{"type":13,"componentName":13,"componentContent":14},"CommonBreadcrumbs",{"crumbs":15},[16,20],{"title":17,"config":18},"Industry topics",{"href":19},"/topics/",{"title":21},"GitOps",{"type":23,"componentName":23,"componentContent":24},"CommonArticleHero",{"title":9,"text":25,"config":26,"button":28},"GitOpsは、バージョン管理や共同作業、コンプライアンス、CI/CDなど、アプリケーション開発におけるDevOpsのベストプラクティスを取り入れ、インフラストラクチャの自動化に適用されるオペレーションフレームワークです。\n",{"id":27,"twoColumns":6},"gitopsとは",{"text":29,"config":30},"GitOpsの電子書籍を今すぐダウンロードする",{"href":31},"https://page.gitlab.com/resources-ebook-beginner-guide-gitops.html",{"type":33,"componentName":33,"componentContent":34},"CommonSideNavigationWithTree",{"anchors":35,"components":61},{"text":36,"data":37},"On this page",[38,41,45,49,53,57],{"text":9,"config":39},{"href":40},"#what-is-git-ops",{"text":42,"config":43},"チームがGitOpsを実践する方法",{"href":44},"#how-do-teams-put-git-ops-into-practice",{"text":46,"config":47},"GitOpsの課題",{"href":48},"#git-ops-challenges",{"text":50,"config":51},"GitOpsのメリット",{"href":52},"#git-ops-benefits",{"text":54,"config":55},"GitOpsとDevOpsの違い",{"href":56},"#what-is-the-difference-between-git-ops-and-dev-ops",{"text":58,"config":59},"GitOpsのワークフローとは",{"href":60},"#what-is-a-git-ops-workflow",[62,68,73,78,83,88,93],{"type":63,"componentName":63,"componentContent":64},"TopicsCopy",{"header":9,"text":65,"config":66},"ソフトウェア開発ライフサイクルの多くは自動化されていますが、インフラストラクチャに関しては大部分が、専門チームの手を必要とするマニュアルプロセスのままです。今日のインフラストラクチャに対する要求に対応するには、インフラストラクチャの自動化を実装することがますます重要になっています。最新のインフラストラクチャは、継続的デプロイに必要なクラウドリソースを効果的に管理できるように、弾力性が必要です。\n\n最新のクラウドネイティブアプリケーションは、スピードとスケールを念頭に置いて開発されています。 成熟したDevOpsカルチャーを持つ組織は、1日に数百回コードを本番環境にデプロイできます。DevOpsチームは、バージョン管理やコードレビュー、テストとデプロイを自動化するCI/CDパイプラインなどの開発のベストプラクティスを通じてこれを達成できます。\n\nGitOpsは、インフラストラクチャ（特に最新のクラウドインフラストラクチャ）のプロビジョニングプロセスを自動化するために使用されます。チームがアプリケーションのソースコードを使用する際と同様に、GitOpsを採用するオペレーションチームは、コードとして保存された設定ファイル（Infrastructure as Code）を使用します。GitOps設定ファイルは、アプリケーションのソースコードがビルドされるたびに同じアプリケーションバイナリを生成するのと同じように、デプロイされるたびに同じインフラストラクチャ環境を生成します。\n",{"id":67},"what-is-git-ops",{"type":63,"componentName":63,"componentContent":69},{"header":42,"text":70,"config":71},"GitOpsは単一の製品、プラグイン、またはプラットフォームではありません。チームがGitOpsを実践するための最善の方法は、チーム固有のニーズと目標によって異なるため、この質問に対する万能な回答はありません。ただし、GitOpsを始めるためのヒントには、すべてのチームメンバーが設定とコードを共有するための専用のGitOpsリポジトリの使用、コード変更のデプロイの自動化、変更が発生したときにチームに通知するためのアラートの設定などがあります。\n\nGitOpsには、次の3つの中核となるコンポーネントが必要です。\n\n### IaC：\nGitOpsは[Gitリポジトリ](/blog/migrating-your-version-control-to-git/){data-ga-name=\"Git repository\" data-ga-location=\"body\"}をインフラストラクチャの定義に関する単一の信頼できるソースとして使用します。Gitは、コード管理の変更をトラッキングするオープンソースバージョン管理システムです。また、Gitリポジトリはプロジェクト内の.gitフォルダーであり、プロジェクト内のファイルに加えられたすべての変更を長期にわたってトラッキングします。[Infrastructure as Code（IaC）](/topics/gitops/infrastructure-as-code/){data-ga-name=\"IaC\" data-ga-location=\"body\"}は、すべてのインフラストラクチャ設定をコードとして保存する方法です。実際に想定する状態（レプリカの数、ポッドなど）はコードとして保存される場合とそうでない場合があります。### マージリクエスト：\nGitOpsは、インフラストラクチャのすべての更新の[変更メカニズム](/blog/merge-request-reviewers/){data-ga-name=\"Change mechanism\" data-ga-location=\"body\"}として、マージリクエスト（MR）またはプルリクエスト（PR）を使用します。MRまたはPRは、チームがレビューやコメントを介してコラボレーションし、正式な承認が行われる場所です。マージは、main（またはトランク）ブランチにコミットされ、監査ログまたは監査証跡として機能します。\n\n### CI/CD：\nGitOpsは、[継続的インテグレーションと継続的デリバリー（CI/CD）](/topics/ci-cd/)を使用したGitワークフローによりインフラストラクチャの更新を自動化します。 新しいコードがマージされると、CI/CDパイプラインは変更を実行に移します。手動での変更やエラーなど、構成ドリフト (サーバーの構成・設定が時間とともにバラバラになる) はGitOpsにより上書きされるため、環境はGitで定義されている想定通りの状態に落ち着きます。GitLabはCI/CD[パイプライン](/blog/pre-filled-variables-feature/)を使用してGitOpsの自動化を管理および実装しますが、定義演算子などの他の形式の自動化も使用できます。\n",{"id":72},"how-do-teams-put-git-ops-into-practice",{"type":63,"componentName":63,"componentContent":74},{"header":46,"text":75,"config":76},"どのような共同作業においても変更は困難であり、GitOpsも例外ではありません。GitOpsはプロセスの変更であり、すべての参加者が規律を守り、新しい方法で物事を行うことに取り組むことが求められます。チームにとって重要なことは、すべてを書き留めておくことです。\n\nGitOpsによって、より大規模なレベルで共同作業を行うことができますが、それは一部の人々や組織にとっては必ずしも簡単にできることではありません。GitOpsの承認プロセスは、デベロッパーがコードに変更を加え、マージリクエストを作成し、承認者がこれらの変更をマージし、変更が展開されるという流れで行われます。この流れにより、インフラストラクチャに「委員会による変更」要素が導入されます。これは、すぐに行える手動での変更に慣れているエンジニアにとっては、時間がかかって面倒に思えるかもしれません。\n\nチームの全員が、マージリクエストやイシューで何が起こっているかを記録することが重要です。 本番環境で直接編集を行ったり、手作業で変更したりしたいという衝動を抑えるのは難しいかもしれませんが、それぞれのデベロッパーが思い思いに作業をするというような野放図な開発が減るほど、GitOpsはうまく機能するようになります。\n",{"id":77},"git-ops-challenges",{"type":63,"componentName":63,"componentContent":79},{"header":50,"text":80,"config":81},"GitOpsには、効率とセキュリティの向上、[デベロッパーの利用体験の向上](https://about.gitlab.com/topics/devops/what-is-developer-experience/)、コストの削減、デプロイの迅速化など、多くのメリットがあります。\n\nGitOpsを使用すると、組織は単一の統合ツールを用いてインフラストラクチャとアプリケーション開発ライフサイクル全体を管理できます。これにより、チーム間のより幅広いコラボレーションと連携が可能になり、結果としてエラーが減り、より迅速に問題を解決できます。\n\nさらに、GitOpsはコンテナとマイクロサービスでKubernetesクラスター設定やDockerイメージ、クラウドインスタンスやオンプレミスまでのインフラストラクチャ全体の一貫性を維持できるよう組織を支援します。\n",{"id":82},"git-ops-benefits",{"type":63,"componentName":63,"componentContent":84},{"header":54,"text":85,"config":86},"GitOpsとDevOpsには、主な違いがいくつかあります。たとえば、GitOpsはコードの変更を管理してデプロイするために自動化とツールに大きく依存しますが、DevOpsはチーム間のコミュニケーションとコラボレーションに重点を置いています。さらに、GitOpsは通常Kubernetesなどのコンテナ化技術と組み合わせて使用されますが、DevOpsはあらゆるタイプのアプリケーションで使用できます。\n\nGitOpsは、Gitコードリポジトリを使用してインフラストラクチャとアプリケーションコードのデプロイを管理することに焦点を当てたDevOpsのブランチです。両者の主な違いは、デプロイ状態の信頼できるソースがGitOpsではGitリポジトリである一方、DevOpsではアプリケーションまたはサーバー設定ファイルであることです。\n",{"id":87},"what-is-the-difference-between-git-ops-and-dev-ops",{"type":63,"componentName":63,"componentContent":89},{"header":58,"text":90,"config":91},"GitOpsワークフローとは、インフラストラクチャとアプリケーションの管理に対する体系的でバージョン管理されたアプローチを指します。コードベースに期待するのと同じ厳密さでシステム運用を扱うことを想像してみてください。GitOpsでは、Gitリポジトリはシステムとインフラストラクチャの設定に関する信頼できる唯一の情報源として機能します。\n\n設定の変更はプルリクエストによって行われ、更新のピアレビューと監査証跡を保証します。自動化されたツールがこれらの変更を実装し、一貫性のある再現可能なデプロイを可能にします。この開発手法は高い速度を可能にするだけでなく、チームメンバー間のコラボレーションを強化し、明確な文書化とトレーサビリティによって運用効率を高めます。\n\n### GitOpsワークフローの主なコンポーネント\n\nGitOpsワークフローは、アプリケーションのデプロイと管理を合理化する上で重要な役割を果たす4つの基本コンポーネントを中心に構築されています。\n\n__1. Gitリポジトリ：__これは基本要素として、アプリケーションのコードと設定の両方の信頼できる唯一の情報源として機能します。すべての重要な情報をGitリポジトリに保存することで、チームは開発ライフサイクル全体で一貫性と透明性を確保できます。\n\n__2. 継続的なデリバリー（CD）パイプライン：__CDパイプラインは、アプリケーションのビルド、テスト、デプロイのプロセスを自動化します。コード開発とデプロイのギャップを埋め、アプリケーションが品質基準を満たしていることを保証しながら、開発環境から本番環境へのスムーズな移行を促進します。\n\n__3. アプリケーションデプロイツール：__このツールは、アプリケーションを目的の環境にデプロイする役割を担います。アプリケーションリソースのオーケストレーションと管理を処理し、Gitリポジトリで定義された設定に従ってアプリケーションが正しく効率的にデプロイされることを保証します。\n\n__4. モニタリングシステム：__モニタリングシステムはアプリケーションの健全性を維持するために不可欠で、アプリケーションのパフォーマンスを詳細に監視します。データを収集し実用的なインサイトとフィードバックを提供することで、開発チームは十分な情報に基づいた決定を下し、潜在的な問題に迅速に対処できるようになります。\n\nこうしたコンポーネントを組み合わせることでアプリケーションのデプロイの効率性と信頼性が高まります。さらに、自動化、モニタリング、継続的な改善を重視することで、最新のDevOpsのプラクティスに沿った整合性のあるGitOpsワークフローが実現します。",{"id":92},"what-is-a-git-ops-workflow",{"type":94,"componentName":94,"componentContent":95},"TopicsCallToAction",{"title":96,"text":97},"GitOpsの仕組み","他の新しいテクノロジー用語と同様、GitOpsは業界全体で明確に同じように定義されているわけではありません。GitOpsの原則は仮想マシンやコンテナを含むすべてのタイプのインフラストラクチャの自動化に適用することができるため、Kubernetesベースのインフラストラクチャを管理しようとするチームにとって非常に有用です。\n\n多くのツールや開発手法がより迅速なデプロイとコードとインフラ間のシームレスな管理を約束する一方、GitOpsはデベロッパー中心の利用体験を重視している点が異なります。GitOpsによるインフラストラクチャ管理はアプリケーション開発と同じバージョン管理システムで行われるため、チームはGitの組み込み機能を活用しながら、一元化された場所でより多くのコラボレーションを行うことができます。",{"type":99,"componentName":99,"componentContent":100},"CommonResourcesContainer",{"header":101,"tabs":102},"関連リンク",[103,148,170,207],{"name":104,"items":105,"config":147},"次のステップ",[106,116,124,132,139],{"header":107,"type":104,"image":108,"link":111},"GitLabがGitOpsワークフローを効率化する方法を学ぶ",{"altText":107,"config":109},{"src":110},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159700/Website/Topics/img-fallback-cards-devops.png",{"text":112,"config":113},"詳細はこちら",{"href":114,"icon":115,"modal":6},"/ja-jp/solutions/gitops/","Articles",{"header":117,"type":104,"image":118,"link":121},"GitLabのコラボレーション技術がGitOpsに不可欠な理由",{"altText":117,"config":119},{"src":120},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159303/Website/Topics/img-fallback-cards-cicd.png",{"text":112,"config":122},{"href":123,"icon":115,"modal":6},"/ja-jp/topics/gitops/gitops-gitlab-collaboration/",{"header":125,"type":104,"image":126,"link":129},"Infrastructure as CodeのためのGitLabとTerraformの使い方",{"altText":125,"config":127},{"src":128},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159707/Website/Topics/img-fallback-cards-gitops.png",{"text":112,"config":130},{"href":131,"icon":115,"modal":6},"/ja-jp/topics/gitops/gitlab-enables-infrastructure-as-code/",{"header":133,"type":104,"image":134,"link":136},"GitLabを使ったGitOpsのためのマルチクラウドデプロイ",{"altText":133,"config":135},{"src":128},{"text":112,"config":137},{"href":138,"icon":115,"modal":6},"/ja-jp/topics/gitops/gitops-multicloud-deployments-gitlab/",{"header":140,"type":104,"image":141,"link":144},"GitOpsワークフローのメリット",{"altText":140,"config":142},{"src":143},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159714/Website/Topics/img-fallback-cards-devsec.png",{"text":112,"config":145},{"href":146,"icon":115,"modal":6},"/ja-jp/topics/gitops/gitops-best-practices/",{"key":104},{"name":149,"items":150,"config":169},"動画",[151,161],{"header":152,"type":149,"image":153,"link":156},"GitOpsとはなぜ重要なのか？始めるには",{"altText":152,"config":154},{"src":155},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159718/Website/Topics/what-is-gitops.jpg",{"text":157,"config":158},"今すぐ視聴",{"href":159,"icon":160,"modal":6},"https://www.youtube.com/embed/videoseries?list=PL05JrBw4t0KoixDjLVMzKwVgx0eNyDOIo","Video",{"header":162,"type":149,"image":163,"link":166},"GitLabをGitOpsに活用してサイロ化を解消し、コラボレーションを促進する",{"altText":162,"config":164},{"src":165},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159722/Website/Topics/using-gitlab-for-gitops.jpg",{"text":157,"config":167},{"href":168,"icon":160,"modal":6},"https://www.youtube.com/embed/videoseries?list=PLFGfElNsQthbno2laLgxeWLla48TpF8Kz",{"key":149},{"name":171,"items":172,"config":206},"ウェブキャスト",[173,182,190,198],{"header":174,"type":171,"image":175,"link":178},"[専門家によるパネルディスカッション] GitOps：インフラストラクチャオートメーションの展望",{"altText":174,"config":176},{"src":177},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749157556/Website/Topics/resources_1.jpg",{"text":112,"config":179},{"href":180,"icon":181,"modal":6},"/why/gitops-infrastructure-automation/","Webcast",{"header":183,"type":171,"image":184,"link":187},"GitLabとAnthosを使用したGitOpsによるインフラスクチャの管理",{"altText":183,"config":185},{"src":186},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158613/Website/Topics/resources_9.jpg",{"text":112,"config":188},{"href":189,"icon":181,"modal":6},"/webcast/gitops-gitlab-anthos/",{"header":191,"type":171,"image":192,"link":195},"GitLabとHashiCorp - GitOpsとクラウドオペレーティングモデルへの総合ガイド",{"altText":191,"config":193},{"src":194},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158599/Website/Topics/resources_3.jpg",{"text":112,"config":196},{"href":197,"icon":181,"modal":6},"/webcast/gitlab-hashicorp-gitops/",{"header":199,"type":171,"image":200,"link":203},"GitLabとTerraformによるクラウドインフラの自動化",{"altText":199,"config":201},{"src":202},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158608/Website/Topics/resources_4.jpg",{"text":112,"config":204},{"href":205,"icon":181,"modal":6},"/webcast/gitops-gitlab-terraform/",{"key":171},{"name":208,"items":209,"config":218},"書籍",[210],{"header":211,"type":208,"image":212,"link":215},"初心者向けGitOpsガイド",{"altText":211,"config":213},{"src":214},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749157557/Website/Topics/resources_10.jpg",{"text":112,"config":216},{"href":31,"icon":217,"modal":6},"Book",{"key":208},{"type":99,"componentName":99,"componentContent":220},{"header":221,"tabs":222},"おすすめのコンテンツ",[223],{"name":224,"items":225,"config":251},"resources",[226,235,243],{"header":227,"type":228,"image":229,"link":232},"GitLabとAnsibleを使用してInfrastructure as Codeを実現する方法","Web",{"altText":227,"config":230},{"src":231},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159735/Website/Topics/gitlab-ansible-cover.png",{"text":112,"config":233},{"href":234,"icon":228,"modal":6},"/ja-jp/blog/using-ansible-and-gitlab-as-infrastructure-for-code/",{"header":236,"type":228,"image":237,"link":240},"GitLabのバージョン管理を使用してGitOpsワークフローを最適化する",{"altText":236,"config":238},{"src":239},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159740/Website/Topics/gitops-image-unsplash.jpg",{"text":112,"config":241},{"href":242,"icon":228,"modal":6},"/blog/optimize-gitops-workflow/",{"header":244,"type":228,"image":245,"link":248},"GitOpsをワークフローとして選択すべき理由",{"altText":244,"config":246},{"src":247},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749159743/Website/Topics/shiro-hatori-WR-ifjFy4CI-unsplash.jpg",{"text":112,"config":249},{"href":250,"icon":228,"modal":6},"/blog/why-gitops-should-be-workflow-of-choice/",{"key":224},{"type":253,"componentName":253},"CommonNextSteps","content:ja-jp:topics:gitops:index.yml","yaml","content","ja-jp/topics/gitops/index.yml","ja-jp/topics/gitops/index","yml",{"_path":261,"_dir":262,"_draft":6,"_partial":6,"_locale":7,"data":263,"_id":670,"_type":255,"title":671,"_source":256,"_file":672,"_stem":673,"_extension":259},"/shared/ja-jp/main-navigation","ja-jp",{"logo":264,"freeTrial":269,"sales":274,"login":279,"items":284,"search":614,"minimal":648,"duo":661},{"config":265},{"href":266,"dataGaName":267,"dataGaLocation":268},"/ja-jp/","gitlab logo","header",{"text":270,"config":271},"無料トライアルを開始",{"href":272,"dataGaName":273,"dataGaLocation":268},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":275,"config":276},"お問い合わせ",{"href":277,"dataGaName":278,"dataGaLocation":268},"/ja-jp/sales/","sales",{"text":280,"config":281},"サインイン",{"href":282,"dataGaName":283,"dataGaLocation":268},"https://gitlab.com/users/sign_in/","sign in",[285,328,426,431,536,596],{"text":286,"config":287,"cards":289,"footer":311},"プラットフォーム",{"dataNavLevelOne":288},"platform",[290,296,304],{"title":286,"description":291,"link":292},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":293,"config":294},"プラットフォームを詳しく見る",{"href":295,"dataGaName":288,"dataGaLocation":268},"/ja-jp/platform/",{"title":297,"description":298,"link":299},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":300,"config":301},"GitLab Duoのご紹介",{"href":302,"dataGaName":303,"dataGaLocation":268},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":305,"description":306,"link":307},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":112,"config":308},{"href":309,"dataGaName":310,"dataGaLocation":268},"/ja-jp/why-gitlab/","why gitlab",{"title":312,"items":313},"利用を開始：",[314,319,324],{"text":315,"config":316},"プラットフォームエンジニアリング",{"href":317,"dataGaName":318,"dataGaLocation":268},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":320,"config":321},"開発者の経験",{"href":322,"dataGaName":323,"dataGaLocation":268},"/ja-jp/developer-experience/","Developer experience",{"text":325,"config":326},"MLOps",{"href":327,"dataGaName":325,"dataGaLocation":268},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":329,"left":330,"config":331,"link":333,"lists":337,"footer":408},"製品",true,{"dataNavLevelOne":332},"solutions",{"text":334,"config":335},"すべてのソリューションを表示",{"href":336,"dataGaName":332,"dataGaLocation":268},"/ja-jp/solutions/",[338,364,386],{"title":339,"description":340,"link":341,"items":346},"自動化","CI/CDと自動化でデプロイを加速",{"config":342},{"icon":343,"href":344,"dataGaName":345,"dataGaLocation":268},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[347,351,355,360],{"text":348,"config":349},"CI/CD",{"href":350,"dataGaLocation":268,"dataGaName":348},"/ja-jp/solutions/continuous-integration/",{"text":352,"config":353},"AIアシストによる開発",{"href":302,"dataGaLocation":268,"dataGaName":354},"AI assisted development",{"text":356,"config":357},"ソースコード管理",{"href":358,"dataGaLocation":268,"dataGaName":359},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":361,"config":362},"自動化されたソフトウェアデリバリー",{"href":344,"dataGaLocation":268,"dataGaName":363},"Automated software delivery",{"title":365,"description":366,"link":367,"items":372},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":368},{"href":369,"dataGaName":370,"dataGaLocation":268,"icon":371},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[373,377,382],{"text":374,"config":375},"Application Security Testing",{"href":369,"dataGaName":376,"dataGaLocation":268},"Application security testing",{"text":378,"config":379},"ソフトウェアサプライチェーンの安全性",{"href":380,"dataGaLocation":268,"dataGaName":381},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":383,"config":384},"Software Compliance",{"href":385,"dataGaName":383,"dataGaLocation":268},"/ja-jp/solutions/software-compliance/",{"title":387,"link":388,"items":393},"測定",{"config":389},{"icon":390,"href":391,"dataGaName":392,"dataGaLocation":268},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[394,398,403],{"text":395,"config":396},"可視性と測定",{"href":391,"dataGaLocation":268,"dataGaName":397},"Visibility and Measurement",{"text":399,"config":400},"バリューストリーム管理",{"href":401,"dataGaLocation":268,"dataGaName":402},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":404,"config":405},"分析とインサイト",{"href":406,"dataGaLocation":268,"dataGaName":407},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":409,"items":410},"GitLabが活躍する場所",[411,416,421],{"text":412,"config":413},"Enterprise",{"href":414,"dataGaLocation":268,"dataGaName":415},"/ja-jp/enterprise/","enterprise",{"text":417,"config":418},"スモールビジネス",{"href":419,"dataGaLocation":268,"dataGaName":420},"/ja-jp/small-business/","small business",{"text":422,"config":423},"公共機関",{"href":424,"dataGaLocation":268,"dataGaName":425},"/ja-jp/solutions/public-sector/","public sector",{"text":427,"config":428},"価格",{"href":429,"dataGaName":430,"dataGaLocation":268,"dataNavLevelOne":430},"/ja-jp/pricing/","pricing",{"text":432,"config":433,"link":434,"lists":438,"feature":523},"関連リソース",{"dataNavLevelOne":224},{"text":435,"config":436},"すべてのリソースを表示",{"href":437,"dataGaName":224,"dataGaLocation":268},"/ja-jp/resources/",[439,472,495],{"title":440,"items":441},"はじめに",[442,447,452,457,462,467],{"text":443,"config":444},"インストール",{"href":445,"dataGaName":446,"dataGaLocation":268},"/ja-jp/install/","install",{"text":448,"config":449},"クイックスタートガイド",{"href":450,"dataGaName":451,"dataGaLocation":268},"/ja-jp/get-started/","quick setup checklists",{"text":453,"config":454},"学ぶ",{"href":455,"dataGaLocation":268,"dataGaName":456},"https://university.gitlab.com/","learn",{"text":458,"config":459},"製品ドキュメント",{"href":460,"dataGaName":461,"dataGaLocation":268},"https://docs.gitlab.com/","product documentation",{"text":463,"config":464},"ベストプラクティスビデオ",{"href":465,"dataGaName":466,"dataGaLocation":268},"/ja-jp/getting-started-videos/","best practice videos",{"text":468,"config":469},"インテグレーション",{"href":470,"dataGaName":471,"dataGaLocation":268},"/ja-jp/integrations/","integrations",{"title":473,"items":474},"検索する",[475,480,485,490],{"text":476,"config":477},"お客様成功事例",{"href":478,"dataGaName":479,"dataGaLocation":268},"/ja-jp/customers/","customer success stories",{"text":481,"config":482},"ブログ",{"href":483,"dataGaName":484,"dataGaLocation":268},"/ja-jp/blog/","blog",{"text":486,"config":487},"リモート",{"href":488,"dataGaName":489,"dataGaLocation":268},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":491,"config":492},"TeamOps",{"href":493,"dataGaName":494,"dataGaLocation":268},"/ja-jp/teamops/","teamops",{"title":496,"items":497},"つなげる",[498,503,508,513,518],{"text":499,"config":500},"GitLabサービス",{"href":501,"dataGaName":502,"dataGaLocation":268},"/ja-jp/services/","services",{"text":504,"config":505},"コミュニティ",{"href":506,"dataGaName":507,"dataGaLocation":268},"/community/","community",{"text":509,"config":510},"フォーラム",{"href":511,"dataGaName":512,"dataGaLocation":268},"https://forum.gitlab.com/","forum",{"text":514,"config":515},"イベント",{"href":516,"dataGaName":517,"dataGaLocation":268},"/events/","events",{"text":519,"config":520},"パートナー",{"href":521,"dataGaName":522,"dataGaLocation":268},"/ja-jp/partners/","partners",{"backgroundColor":524,"textColor":525,"text":526,"image":527,"link":531},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":528,"config":529},"ソースプロモカード",{"src":530},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":532,"config":533},"最新情報を読む",{"href":534,"dataGaName":535,"dataGaLocation":268},"/ja-jp/the-source/","the source",{"text":537,"config":538,"lists":540},"会社情報",{"dataNavLevelOne":539},"company",[541],{"items":542},[543,548,554,556,561,566,571,576,581,586,591],{"text":544,"config":545},"GitLabについて",{"href":546,"dataGaName":547,"dataGaLocation":268},"/ja-jp/company/","about",{"text":549,"config":550,"footerGa":553},"採用情報",{"href":551,"dataGaName":552,"dataGaLocation":268},"/jobs/","jobs",{"dataGaName":552},{"text":514,"config":555},{"href":516,"dataGaName":517,"dataGaLocation":268},{"text":557,"config":558},"経営陣",{"href":559,"dataGaName":560,"dataGaLocation":268},"/company/team/e-group/","leadership",{"text":562,"config":563},"チーム",{"href":564,"dataGaName":565,"dataGaLocation":268},"/company/team/","team",{"text":567,"config":568},"ハンドブック",{"href":569,"dataGaName":570,"dataGaLocation":268},"https://handbook.gitlab.com/","handbook",{"text":572,"config":573},"投資家向け情報",{"href":574,"dataGaName":575,"dataGaLocation":268},"https://ir.gitlab.com/","investor relations",{"text":577,"config":578},"トラストセンター",{"href":579,"dataGaName":580,"dataGaLocation":268},"/ja-jp/security/","trust center",{"text":582,"config":583},"AI Transparency Center",{"href":584,"dataGaName":585,"dataGaLocation":268},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":587,"config":588},"ニュースレター",{"href":589,"dataGaName":590,"dataGaLocation":268},"/company/contact/","newsletter",{"text":592,"config":593},"プレス",{"href":594,"dataGaName":595,"dataGaLocation":268},"/press/","press",{"text":275,"config":597,"lists":598},{"dataNavLevelOne":539},[599],{"items":600},[601,604,609],{"text":275,"config":602},{"href":277,"dataGaName":603,"dataGaLocation":268},"talk to sales",{"text":605,"config":606},"サポートを受ける",{"href":607,"dataGaName":608,"dataGaLocation":268},"/support/","get help",{"text":610,"config":611},"カスタマーポータル",{"href":612,"dataGaName":613,"dataGaLocation":268},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":615,"login":616,"suggestions":623},"閉じる",{"text":617,"link":618},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":619,"config":620},"GitLab.com",{"href":282,"dataGaName":621,"dataGaLocation":622},"search login","search",{"text":624,"default":625},"提案",[626,629,634,636,640,644],{"text":297,"config":627},{"href":302,"dataGaName":628,"dataGaLocation":622},"GitLab Duo (AI)",{"text":630,"config":631},"コード提案（AI）",{"href":632,"dataGaName":633,"dataGaLocation":622},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":348,"config":635},{"href":350,"dataGaName":348,"dataGaLocation":622},{"text":637,"config":638},"GitLab on AWS",{"href":639,"dataGaName":637,"dataGaLocation":622},"/ja-jp/partners/technology-partners/aws/",{"text":641,"config":642},"GitLab on Google Cloud",{"href":643,"dataGaName":641,"dataGaLocation":622},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":645,"config":646},"GitLabを選ぶ理由",{"href":309,"dataGaName":647,"dataGaLocation":622},"Why GitLab?",{"freeTrial":649,"mobileIcon":653,"desktopIcon":658},{"text":270,"config":650},{"href":651,"dataGaName":273,"dataGaLocation":652},"https://gitlab.com/-/trials/new/","nav",{"altText":654,"config":655},"GitLabアイコン",{"src":656,"dataGaName":657,"dataGaLocation":652},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":654,"config":659},{"src":660,"dataGaName":657,"dataGaLocation":652},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":662,"mobileIcon":666,"desktopIcon":668},{"text":663,"config":664},"GitLab Duoの詳細について",{"href":302,"dataGaName":665,"dataGaLocation":652},"gitlab duo",{"altText":654,"config":667},{"src":656,"dataGaName":657,"dataGaLocation":652},{"altText":654,"config":669},{"src":660,"dataGaName":657,"dataGaLocation":652},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":675,"_dir":262,"_draft":6,"_partial":6,"_locale":7,"title":676,"button":677,"config":682,"_id":684,"_type":255,"_source":256,"_file":685,"_stem":686,"_extension":259},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":678,"config":679},"ベータ版を試す",{"href":680,"dataGaName":681,"dataGaLocation":268},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":683},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":688,"_dir":262,"_draft":6,"_partial":6,"_locale":7,"data":689,"_id":891,"_type":255,"title":892,"_source":256,"_file":893,"_stem":894,"_extension":259},"/shared/ja-jp/main-footer",{"text":690,"source":691,"edit":697,"contribute":702,"config":707,"items":712,"minimal":883},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":692,"config":693},"ページのソースを表示",{"href":694,"dataGaName":695,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":698,"config":699},"このページを編集",{"href":700,"dataGaName":701,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":703,"config":704},"ご協力をお願いします",{"href":705,"dataGaName":706,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":708,"facebook":709,"youtube":710,"linkedin":711},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[713,736,788,820,855],{"title":286,"links":714,"subMenu":719},[715],{"text":716,"config":717},"DevSecOpsプラットフォーム",{"href":295,"dataGaName":718,"dataGaLocation":696},"devsecops platform",[720],{"title":427,"links":721},[722,726,731],{"text":723,"config":724},"プランの表示",{"href":429,"dataGaName":725,"dataGaLocation":696},"view plans",{"text":727,"config":728},"Premiumを選ぶ理由",{"href":729,"dataGaName":730,"dataGaLocation":696},"/ja-jp/pricing/premium/","why premium",{"text":732,"config":733},"Ultimateを選ぶ理由",{"href":734,"dataGaName":735,"dataGaLocation":696},"/ja-jp/pricing/ultimate/","why ultimate",{"title":737,"links":738},"ソリューション",[739,744,747,749,754,759,763,766,769,772,774,776,778,783],{"text":740,"config":741},"デジタルトランスフォーメーション",{"href":742,"dataGaName":743,"dataGaLocation":696},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":745,"config":746},"セキュリティとコンプライアンス",{"href":369,"dataGaName":376,"dataGaLocation":696},{"text":361,"config":748},{"href":344,"dataGaName":345,"dataGaLocation":696},{"text":750,"config":751},"アジャイル開発",{"href":752,"dataGaName":753,"dataGaLocation":696},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":755,"config":756},"クラウドトランスフォーメーション",{"href":757,"dataGaName":758,"dataGaLocation":696},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":760,"config":761},"SCM",{"href":358,"dataGaName":762,"dataGaLocation":696},"source code management",{"text":348,"config":764},{"href":350,"dataGaName":765,"dataGaLocation":696},"continuous integration & delivery",{"text":399,"config":767},{"href":401,"dataGaName":768,"dataGaLocation":696},"value stream management",{"text":21,"config":770},{"href":114,"dataGaName":771,"dataGaLocation":696},"gitops",{"text":412,"config":773},{"href":414,"dataGaName":415,"dataGaLocation":696},{"text":417,"config":775},{"href":419,"dataGaName":420,"dataGaLocation":696},{"text":422,"config":777},{"href":424,"dataGaName":425,"dataGaLocation":696},{"text":779,"config":780},"教育",{"href":781,"dataGaName":782,"dataGaLocation":696},"/ja-jp/solutions/education/","education",{"text":784,"config":785},"金融サービス",{"href":786,"dataGaName":787,"dataGaLocation":696},"/ja-jp/solutions/finance/","financial services",{"title":432,"links":789},[790,792,794,796,799,801,804,806,808,810,812,814,816,818],{"text":443,"config":791},{"href":445,"dataGaName":446,"dataGaLocation":696},{"text":448,"config":793},{"href":450,"dataGaName":451,"dataGaLocation":696},{"text":453,"config":795},{"href":455,"dataGaName":456,"dataGaLocation":696},{"text":458,"config":797},{"href":460,"dataGaName":798,"dataGaLocation":696},"docs",{"text":481,"config":800},{"href":483,"dataGaName":484},{"text":802,"config":803},"お客様の成功事例",{"href":478,"dataGaLocation":696},{"text":476,"config":805},{"href":478,"dataGaName":479,"dataGaLocation":696},{"text":486,"config":807},{"href":488,"dataGaName":489,"dataGaLocation":696},{"text":499,"config":809},{"href":501,"dataGaName":502,"dataGaLocation":696},{"text":491,"config":811},{"href":493,"dataGaName":494,"dataGaLocation":696},{"text":504,"config":813},{"href":506,"dataGaName":507,"dataGaLocation":696},{"text":509,"config":815},{"href":511,"dataGaName":512,"dataGaLocation":696},{"text":514,"config":817},{"href":516,"dataGaName":517,"dataGaLocation":696},{"text":519,"config":819},{"href":521,"dataGaName":522,"dataGaLocation":696},{"title":821,"links":822},"Company",[823,825,827,829,831,833,835,839,844,846,848,850],{"text":544,"config":824},{"href":546,"dataGaName":539,"dataGaLocation":696},{"text":549,"config":826},{"href":551,"dataGaName":552,"dataGaLocation":696},{"text":557,"config":828},{"href":559,"dataGaName":560,"dataGaLocation":696},{"text":562,"config":830},{"href":564,"dataGaName":565,"dataGaLocation":696},{"text":567,"config":832},{"href":569,"dataGaName":570,"dataGaLocation":696},{"text":572,"config":834},{"href":574,"dataGaName":575,"dataGaLocation":696},{"text":836,"config":837},"Sustainability",{"href":838,"dataGaName":836,"dataGaLocation":696},"/sustainability/",{"text":840,"config":841},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":842,"dataGaName":843,"dataGaLocation":696},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":577,"config":845},{"href":579,"dataGaName":580,"dataGaLocation":696},{"text":587,"config":847},{"href":589,"dataGaName":590,"dataGaLocation":696},{"text":592,"config":849},{"href":594,"dataGaName":595,"dataGaLocation":696},{"text":851,"config":852},"現代奴隷制の透明性に関する声明",{"href":853,"dataGaName":854,"dataGaLocation":696},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":275,"links":856},[857,859,861,863,868,873,878],{"text":275,"config":858},{"href":277,"dataGaName":278,"dataGaLocation":696},{"text":605,"config":860},{"href":607,"dataGaName":608,"dataGaLocation":696},{"text":610,"config":862},{"href":612,"dataGaName":613,"dataGaLocation":696},{"text":864,"config":865},"ステータス",{"href":866,"dataGaName":867,"dataGaLocation":696},"https://status.gitlab.com/","status",{"text":869,"config":870},"利用規約",{"href":871,"dataGaName":872,"dataGaLocation":696},"/terms/","terms of use",{"text":874,"config":875},"プライバシーに関する声明",{"href":876,"dataGaName":877,"dataGaLocation":696},"/ja-jp/privacy/","privacy statement",{"text":879,"config":880},"Cookieの設定",{"dataGaName":881,"dataGaLocation":696,"id":882,"isOneTrustButton":330},"cookie preferences","ot-sdk-btn",{"items":884},[885,887,889],{"text":869,"config":886},{"href":871,"dataGaName":872,"dataGaLocation":696},{"text":874,"config":888},{"href":876,"dataGaName":877,"dataGaLocation":696},{"text":879,"config":890},{"dataGaName":881,"dataGaLocation":696,"id":882,"isOneTrustButton":330},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":896,"_dir":262,"_draft":6,"_partial":6,"_locale":7,"header":897,"eyebrow":898,"blurb":899,"button":900,"secondaryButton":904,"_id":906,"_type":255,"title":907,"_source":256,"_file":908,"_stem":909,"_extension":259},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":270,"config":901},{"href":902,"dataGaName":273,"dataGaLocation":903},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":275,"config":905},{"href":277,"dataGaName":278,"dataGaLocation":903},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":911,"content":912,"_id":254,"_type":255,"title":7,"_source":256,"_file":257,"_stem":258,"_extension":259},{"title":9,"description":10},[913,919,924,961,1036,1057],{"type":13,"componentName":13,"componentContent":914},{"crumbs":915},[916,918],{"title":17,"config":917},{"href":19},{"title":21},{"type":23,"componentName":23,"componentContent":920},{"title":9,"text":25,"config":921,"button":922},{"id":27,"twoColumns":6},{"text":29,"config":923},{"href":31},{"type":33,"componentName":33,"componentContent":925},{"anchors":926,"components":940},{"text":36,"data":927},[928,930,932,934,936,938],{"text":9,"config":929},{"href":40},{"text":42,"config":931},{"href":44},{"text":46,"config":933},{"href":48},{"text":50,"config":935},{"href":52},{"text":54,"config":937},{"href":56},{"text":58,"config":939},{"href":60},[941,944,947,950,953,956,959],{"type":63,"componentName":63,"componentContent":942},{"header":9,"text":65,"config":943},{"id":67},{"type":63,"componentName":63,"componentContent":945},{"header":42,"text":70,"config":946},{"id":72},{"type":63,"componentName":63,"componentContent":948},{"header":46,"text":75,"config":949},{"id":77},{"type":63,"componentName":63,"componentContent":951},{"header":50,"text":80,"config":952},{"id":82},{"type":63,"componentName":63,"componentContent":954},{"header":54,"text":85,"config":955},{"id":87},{"type":63,"componentName":63,"componentContent":957},{"header":58,"text":90,"config":958},{"id":92},{"type":94,"componentName":94,"componentContent":960},{"title":96,"text":97},{"type":99,"componentName":99,"componentContent":962},{"header":101,"tabs":963},[964,992,1005,1028],{"name":104,"items":965,"config":991},[966,971,976,981,986],{"header":107,"type":104,"image":967,"link":969},{"altText":107,"config":968},{"src":110},{"text":112,"config":970},{"href":114,"icon":115,"modal":6},{"header":117,"type":104,"image":972,"link":974},{"altText":117,"config":973},{"src":120},{"text":112,"config":975},{"href":123,"icon":115,"modal":6},{"header":125,"type":104,"image":977,"link":979},{"altText":125,"config":978},{"src":128},{"text":112,"config":980},{"href":131,"icon":115,"modal":6},{"header":133,"type":104,"image":982,"link":984},{"altText":133,"config":983},{"src":128},{"text":112,"config":985},{"href":138,"icon":115,"modal":6},{"header":140,"type":104,"image":987,"link":989},{"altText":140,"config":988},{"src":143},{"text":112,"config":990},{"href":146,"icon":115,"modal":6},{"key":104},{"name":149,"items":993,"config":1004},[994,999],{"header":152,"type":149,"image":995,"link":997},{"altText":152,"config":996},{"src":155},{"text":157,"config":998},{"href":159,"icon":160,"modal":6},{"header":162,"type":149,"image":1000,"link":1002},{"altText":162,"config":1001},{"src":165},{"text":157,"config":1003},{"href":168,"icon":160,"modal":6},{"key":149},{"name":171,"items":1006,"config":1027},[1007,1012,1017,1022],{"header":174,"type":171,"image":1008,"link":1010},{"altText":174,"config":1009},{"src":177},{"text":112,"config":1011},{"href":180,"icon":181,"modal":6},{"header":183,"type":171,"image":1013,"link":1015},{"altText":183,"config":1014},{"src":186},{"text":112,"config":1016},{"href":189,"icon":181,"modal":6},{"header":191,"type":171,"image":1018,"link":1020},{"altText":191,"config":1019},{"src":194},{"text":112,"config":1021},{"href":197,"icon":181,"modal":6},{"header":199,"type":171,"image":1023,"link":1025},{"altText":199,"config":1024},{"src":202},{"text":112,"config":1026},{"href":205,"icon":181,"modal":6},{"key":171},{"name":208,"items":1029,"config":1035},[1030],{"header":211,"type":208,"image":1031,"link":1033},{"altText":211,"config":1032},{"src":214},{"text":112,"config":1034},{"href":31,"icon":217,"modal":6},{"key":208},{"type":99,"componentName":99,"componentContent":1037},{"header":221,"tabs":1038},[1039],{"name":224,"items":1040,"config":1056},[1041,1046,1051],{"header":227,"type":228,"image":1042,"link":1044},{"altText":227,"config":1043},{"src":231},{"text":112,"config":1045},{"href":234,"icon":228,"modal":6},{"header":236,"type":228,"image":1047,"link":1049},{"altText":236,"config":1048},{"src":239},{"text":112,"config":1050},{"href":242,"icon":228,"modal":6},{"header":244,"type":228,"image":1052,"link":1054},{"altText":244,"config":1053},{"src":247},{"text":112,"config":1055},{"href":250,"icon":228,"modal":6},{"key":224},{"type":253,"componentName":253},1760103657988]