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