[{"data":1,"prerenderedAt":922},["ShallowReactive",2],{"/ja-jp/topics/gitops":3,"navigation-ja-jp":260,"banner-ja-jp":669,"footer-ja-jp":679,"next-steps-ja-jp":913},{"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",{"data":261},{"logo":262,"freeTrial":267,"sales":272,"login":277,"items":282,"search":589,"minimal":622,"duo":639,"switchNav":648,"pricingDeployment":659},{"config":263},{"href":264,"dataGaName":265,"dataGaLocation":266},"/ja-jp/","gitlab logo","header",{"text":268,"config":269},"無料トライアルを開始",{"href":270,"dataGaName":271,"dataGaLocation":266},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":273,"config":274},"お問い合わせ",{"href":275,"dataGaName":276,"dataGaLocation":266},"/ja-jp/sales/","sales",{"text":278,"config":279},"サインイン",{"href":280,"dataGaName":281,"dataGaLocation":266},"https://gitlab.com/users/sign_in/","sign in",[283,309,406,411,511,571],{"text":284,"config":285,"cards":287},"プラットフォーム",{"dataNavLevelOne":286},"platform",[288,294,302],{"title":284,"description":289,"link":290},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":291,"config":292},"プラットフォームを探索",{"href":293,"dataGaName":286,"dataGaLocation":266},"/ja-jp/platform/",{"title":295,"description":296,"link":297},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":298,"config":299},"GitLab Duoのご紹介",{"href":300,"dataGaName":301,"dataGaLocation":266},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":303,"description":304,"link":305},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":110,"config":306},{"href":307,"dataGaName":308,"dataGaLocation":266},"/ja-jp/why-gitlab/","why gitlab",{"text":310,"left":254,"config":311,"link":313,"lists":317,"footer":388},"製品",{"dataNavLevelOne":312},"solutions",{"text":314,"config":315},"すべてのソリューションを表示",{"href":316,"dataGaName":312,"dataGaLocation":266},"/ja-jp/solutions/",[318,343,366],{"title":319,"description":320,"link":321,"items":326},"自動化","CI/CDと自動化でデプロイを加速",{"config":322},{"icon":323,"href":324,"dataGaName":325,"dataGaLocation":266},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[327,331,334,339],{"text":328,"config":329},"CI/CD",{"href":330,"dataGaLocation":266,"dataGaName":328},"/ja-jp/solutions/continuous-integration/",{"text":295,"config":332},{"href":300,"dataGaLocation":266,"dataGaName":333},"gitlab duo agent platform - product menu",{"text":335,"config":336},"ソースコード管理",{"href":337,"dataGaLocation":266,"dataGaName":338},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":340,"config":341},"自動化されたソフトウェアデリバリー",{"href":324,"dataGaLocation":266,"dataGaName":342},"Automated software delivery",{"title":344,"description":345,"link":346,"items":351},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":347},{"href":348,"dataGaName":349,"dataGaLocation":266,"icon":350},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[352,356,361],{"text":353,"config":354},"アプリケーションセキュリティテスト",{"href":348,"dataGaName":355,"dataGaLocation":266},"Application security testing",{"text":357,"config":358},"ソフトウェアサプライチェーンの安全性",{"href":359,"dataGaLocation":266,"dataGaName":360},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":362,"config":363},"ソフトウェアコンプライアンス",{"href":364,"dataGaName":365,"dataGaLocation":266},"/ja-jp/solutions/software-compliance/","software compliance",{"title":367,"link":368,"items":373},"測定",{"config":369},{"icon":370,"href":371,"dataGaName":372,"dataGaLocation":266},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[374,378,383],{"text":375,"config":376},"可視性と測定",{"href":371,"dataGaLocation":266,"dataGaName":377},"Visibility and Measurement",{"text":379,"config":380},"バリューストリーム管理",{"href":381,"dataGaLocation":266,"dataGaName":382},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":384,"config":385},"分析とインサイト",{"href":386,"dataGaLocation":266,"dataGaName":387},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":389,"items":390},"GitLabが活躍する場所",[391,396,401],{"text":392,"config":393},"大企業",{"href":394,"dataGaLocation":266,"dataGaName":395},"/ja-jp/enterprise/","enterprise",{"text":397,"config":398},"スモールビジネス",{"href":399,"dataGaLocation":266,"dataGaName":400},"/ja-jp/small-business/","small business",{"text":402,"config":403},"公共部門",{"href":404,"dataGaLocation":266,"dataGaName":405},"/ja-jp/solutions/public-sector/","public sector",{"text":407,"config":408},"価格",{"href":409,"dataGaName":410,"dataGaLocation":266,"dataNavLevelOne":410},"/ja-jp/pricing/","pricing",{"text":412,"config":413,"link":414,"lists":418,"feature":498},"リソース",{"dataNavLevelOne":222},{"text":415,"config":416},"すべてのリソースを表示",{"href":417,"dataGaName":222,"dataGaLocation":266},"/ja-jp/resources/",[419,452,470],{"title":420,"items":421},"はじめに",[422,427,432,437,442,447],{"text":423,"config":424},"インストール",{"href":425,"dataGaName":426,"dataGaLocation":266},"/ja-jp/install/","install",{"text":428,"config":429},"クイックスタートガイド",{"href":430,"dataGaName":431,"dataGaLocation":266},"/ja-jp/get-started/","quick setup checklists",{"text":433,"config":434},"学ぶ",{"href":435,"dataGaLocation":266,"dataGaName":436},"https://university.gitlab.com/","learn",{"text":438,"config":439},"製品ドキュメント",{"href":440,"dataGaName":441,"dataGaLocation":266},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":443,"config":444},"ベストプラクティスビデオ",{"href":445,"dataGaName":446,"dataGaLocation":266},"/ja-jp/getting-started-videos/","best practice videos",{"text":448,"config":449},"インテグレーション",{"href":450,"dataGaName":451,"dataGaLocation":266},"/ja-jp/integrations/","integrations",{"title":453,"items":454},"検索する",[455,460,465],{"text":456,"config":457},"お客様成功事例",{"href":458,"dataGaName":459,"dataGaLocation":266},"/ja-jp/customers/","customer success stories",{"text":461,"config":462},"ブログ",{"href":463,"dataGaName":464,"dataGaLocation":266},"/ja-jp/blog/","blog",{"text":466,"config":467},"リモート",{"href":468,"dataGaName":469,"dataGaLocation":266},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":471,"items":472},"つなげる",[473,478,483,488,493],{"text":474,"config":475},"GitLabサービス",{"href":476,"dataGaName":477,"dataGaLocation":266},"/ja-jp/services/","services",{"text":479,"config":480},"コミュニティ",{"href":481,"dataGaName":482,"dataGaLocation":266},"/community/","community",{"text":484,"config":485},"フォーラム",{"href":486,"dataGaName":487,"dataGaLocation":266},"https://forum.gitlab.com/","forum",{"text":489,"config":490},"イベント",{"href":491,"dataGaName":492,"dataGaLocation":266},"/events/","events",{"text":494,"config":495},"パートナー",{"href":496,"dataGaName":497,"dataGaLocation":266},"/ja-jp/partners/","partners",{"backgroundColor":499,"textColor":500,"text":501,"image":502,"link":506},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":503,"config":504},"ソースプロモカード",{"src":505},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":507,"config":508},"最新情報を読む",{"href":509,"dataGaName":510,"dataGaLocation":266},"/ja-jp/the-source/","the source",{"text":512,"config":513,"lists":515},"会社情報",{"dataNavLevelOne":514},"company",[516],{"items":517},[518,523,529,531,536,541,546,551,556,561,566],{"text":519,"config":520},"GitLabについて",{"href":521,"dataGaName":522,"dataGaLocation":266},"/ja-jp/company/","about",{"text":524,"config":525,"footerGa":528},"採用情報",{"href":526,"dataGaName":527,"dataGaLocation":266},"/jobs/","jobs",{"dataGaName":527},{"text":489,"config":530},{"href":491,"dataGaName":492,"dataGaLocation":266},{"text":532,"config":533},"経営陣",{"href":534,"dataGaName":535,"dataGaLocation":266},"/company/team/e-group/","leadership",{"text":537,"config":538},"チーム",{"href":539,"dataGaName":540,"dataGaLocation":266},"/company/team/","team",{"text":542,"config":543},"ハンドブック",{"href":544,"dataGaName":545,"dataGaLocation":266},"https://handbook.gitlab.com/","handbook",{"text":547,"config":548},"投資家向け情報",{"href":549,"dataGaName":550,"dataGaLocation":266},"https://ir.gitlab.com/","investor relations",{"text":552,"config":553},"トラストセンター",{"href":554,"dataGaName":555,"dataGaLocation":266},"/ja-jp/security/","trust center",{"text":557,"config":558},"AI Transparency Center",{"href":559,"dataGaName":560,"dataGaLocation":266},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":562,"config":563},"ニュースレター",{"href":564,"dataGaName":565,"dataGaLocation":266},"/company/contact/#contact-forms","newsletter",{"text":567,"config":568},"プレス",{"href":569,"dataGaName":570,"dataGaLocation":266},"/press/","press",{"text":273,"config":572,"lists":573},{"dataNavLevelOne":514},[574],{"items":575},[576,579,584],{"text":273,"config":577},{"href":275,"dataGaName":578,"dataGaLocation":266},"talk to sales",{"text":580,"config":581},"サポートを受ける",{"href":582,"dataGaName":583,"dataGaLocation":266},"https://support.gitlab.com","support portal",{"text":585,"config":586},"カスタマーポータル",{"href":587,"dataGaName":588,"dataGaLocation":266},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":590,"login":591,"suggestions":598},"閉じる",{"text":592,"link":593},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":594,"config":595},"GitLab.com",{"href":280,"dataGaName":596,"dataGaLocation":597},"search login","search",{"text":599,"default":600},"提案",[601,603,608,610,614,618],{"text":295,"config":602},{"href":300,"dataGaName":295,"dataGaLocation":597},{"text":604,"config":605},"コード提案（AI）",{"href":606,"dataGaName":607,"dataGaLocation":597},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":328,"config":609},{"href":330,"dataGaName":328,"dataGaLocation":597},{"text":611,"config":612},"GitLab on AWS",{"href":613,"dataGaName":611,"dataGaLocation":597},"/ja-jp/partners/technology-partners/aws/",{"text":615,"config":616},"GitLab on Google Cloud",{"href":617,"dataGaName":615,"dataGaLocation":597},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":619,"config":620},"GitLabを選ぶ理由",{"href":307,"dataGaName":621,"dataGaLocation":597},"Why GitLab?",{"freeTrial":623,"mobileIcon":627,"desktopIcon":632,"secondaryButton":635},{"text":268,"config":624},{"href":625,"dataGaName":271,"dataGaLocation":626},"https://gitlab.com/-/trials/new/","nav",{"altText":628,"config":629},"GitLabアイコン",{"src":630,"dataGaName":631,"dataGaLocation":626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":628,"config":633},{"src":634,"dataGaName":631,"dataGaLocation":626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":420,"config":636},{"href":637,"dataGaName":638,"dataGaLocation":626},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":640,"mobileIcon":644,"desktopIcon":646},{"text":641,"config":642},"GitLab Duoの詳細について",{"href":300,"dataGaName":643,"dataGaLocation":626},"gitlab duo",{"altText":628,"config":645},{"src":630,"dataGaName":631,"dataGaLocation":626},{"altText":628,"config":647},{"src":634,"dataGaName":631,"dataGaLocation":626},{"button":649,"mobileIcon":654,"desktopIcon":656},{"text":650,"config":651},"/switch",{"href":652,"dataGaName":653,"dataGaLocation":626},"#contact","switch",{"altText":628,"config":655},{"src":630,"dataGaName":631,"dataGaLocation":626},{"altText":628,"config":657},{"src":658,"dataGaName":631,"dataGaLocation":626},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":660,"mobileIcon":665,"desktopIcon":667},{"text":661,"config":662},"料金ページに戻る",{"href":409,"dataGaName":663,"dataGaLocation":626,"icon":664},"back to pricing","GoBack",{"altText":628,"config":666},{"src":630,"dataGaName":631,"dataGaLocation":626},{"altText":628,"config":668},{"src":634,"dataGaName":631,"dataGaLocation":626},{"title":670,"button":671,"config":676},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":672,"config":673},"GitLab Transcendを今すぐ視聴",{"href":674,"dataGaName":675,"dataGaLocation":266},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":677,"icon":678,"disabled":254},"release","AiStar",{"data":680},{"text":681,"source":682,"edit":688,"contribute":693,"config":698,"items":703,"minimal":904},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":683,"config":684},"ページのソースを表示",{"href":685,"dataGaName":686,"dataGaLocation":687},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":689,"config":690},"このページを編集",{"href":691,"dataGaName":692,"dataGaLocation":687},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":694,"config":695},"ご協力をお願いします",{"href":696,"dataGaName":697,"dataGaLocation":687},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":699,"facebook":700,"youtube":701,"linkedin":702},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[704,749,801,843,870],{"title":407,"links":705,"subMenu":720},[706,710,715],{"text":707,"config":708},"プランの表示",{"href":409,"dataGaName":709,"dataGaLocation":687},"view plans",{"text":711,"config":712},"Premiumを選ぶ理由",{"href":713,"dataGaName":714,"dataGaLocation":687},"/ja-jp/pricing/premium/","why premium",{"text":716,"config":717},"Ultimateを選ぶ理由",{"href":718,"dataGaName":719,"dataGaLocation":687},"/ja-jp/pricing/ultimate/","why ultimate",[721],{"title":273,"links":722},[723,725,727,729,734,739,744],{"text":273,"config":724},{"href":275,"dataGaName":276,"dataGaLocation":687},{"text":580,"config":726},{"href":582,"dataGaName":583,"dataGaLocation":687},{"text":585,"config":728},{"href":587,"dataGaName":588,"dataGaLocation":687},{"text":730,"config":731},"ステータス",{"href":732,"dataGaName":733,"dataGaLocation":687},"https://status.gitlab.com/","status",{"text":735,"config":736},"利用規約",{"href":737,"dataGaName":738,"dataGaLocation":687},"/terms/","terms of use",{"text":740,"config":741},"プライバシーに関する声明",{"href":742,"dataGaName":743,"dataGaLocation":687},"/ja-jp/privacy/","privacy statement",{"text":745,"config":746},"Cookie 優先設定",{"dataGaName":747,"dataGaLocation":687,"id":748,"isOneTrustButton":254},"cookie preferences","ot-sdk-btn",{"title":310,"links":750,"subMenu":759},[751,755],{"text":752,"config":753},"DevSecOpsプラットフォーム",{"href":293,"dataGaName":754,"dataGaLocation":687},"devsecops platform",{"text":756,"config":757},"AI支援開発",{"href":300,"dataGaName":758,"dataGaLocation":687},"ai-assisted development",[760],{"title":761,"links":762},"トピック",[763,767,771,776,781,786,791,796],{"text":328,"config":764},{"href":765,"dataGaName":766,"dataGaLocation":687},"/ja-jp/topics/ci-cd/","cicd",{"text":17,"config":768},{"href":769,"dataGaName":770,"dataGaLocation":687},"/ja-jp/topics/gitops/","gitops",{"text":772,"config":773},"DevOps",{"href":774,"dataGaName":775,"dataGaLocation":687},"/ja-jp/topics/devops/","devops",{"text":777,"config":778},"バージョン管理",{"href":779,"dataGaName":780,"dataGaLocation":687},"/ja-jp/topics/version-control/","version control",{"text":782,"config":783},"DevSecOps",{"href":784,"dataGaName":785,"dataGaLocation":687},"/ja-jp/topics/devsecops/","devsecops",{"text":787,"config":788},"クラウドネイティブ",{"href":789,"dataGaName":790,"dataGaLocation":687},"/ja-jp/topics/cloud-native/","cloud native",{"text":792,"config":793},"コーディングのためのAI",{"href":794,"dataGaName":795,"dataGaLocation":687},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":797,"config":798},"エージェント型AI",{"href":799,"dataGaName":800,"dataGaLocation":687},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":802,"links":803},"ソリューション",[804,807,809,814,818,821,824,826,828,830,833,838],{"text":353,"config":805},{"href":348,"dataGaName":806,"dataGaLocation":687},"Application Security Testing",{"text":340,"config":808},{"href":324,"dataGaName":325,"dataGaLocation":687},{"text":810,"config":811},"アジャイル開発",{"href":812,"dataGaName":813,"dataGaLocation":687},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":815,"config":816},"SCM",{"href":337,"dataGaName":817,"dataGaLocation":687},"source code management",{"text":328,"config":819},{"href":330,"dataGaName":820,"dataGaLocation":687},"continuous integration & delivery",{"text":379,"config":822},{"href":381,"dataGaName":823,"dataGaLocation":687},"value stream management",{"text":17,"config":825},{"href":112,"dataGaName":770,"dataGaLocation":687},{"text":392,"config":827},{"href":394,"dataGaName":395,"dataGaLocation":687},{"text":397,"config":829},{"href":399,"dataGaName":400,"dataGaLocation":687},{"text":831,"config":832},"公共機関",{"href":404,"dataGaName":405,"dataGaLocation":687},{"text":834,"config":835},"教育",{"href":836,"dataGaName":837,"dataGaLocation":687},"/ja-jp/solutions/education/","education",{"text":839,"config":840},"金融サービス",{"href":841,"dataGaName":842,"dataGaLocation":687},"/ja-jp/solutions/finance/","financial services",{"title":412,"links":844},[845,847,849,851,854,856,858,860,862,864,866,868],{"text":423,"config":846},{"href":425,"dataGaName":426,"dataGaLocation":687},{"text":428,"config":848},{"href":430,"dataGaName":431,"dataGaLocation":687},{"text":433,"config":850},{"href":435,"dataGaName":436,"dataGaLocation":687},{"text":438,"config":852},{"href":440,"dataGaName":853,"dataGaLocation":687},"docs",{"text":461,"config":855},{"href":463,"dataGaName":464,"dataGaLocation":687},{"text":456,"config":857},{"href":458,"dataGaName":459,"dataGaLocation":687},{"text":466,"config":859},{"href":468,"dataGaName":469,"dataGaLocation":687},{"text":474,"config":861},{"href":476,"dataGaName":477,"dataGaLocation":687},{"text":479,"config":863},{"href":481,"dataGaName":482,"dataGaLocation":687},{"text":484,"config":865},{"href":486,"dataGaName":487,"dataGaLocation":687},{"text":489,"config":867},{"href":491,"dataGaName":492,"dataGaLocation":687},{"text":494,"config":869},{"href":496,"dataGaName":497,"dataGaLocation":687},{"title":512,"links":871},[872,874,876,878,880,882,884,888,893,895,897,899],{"text":519,"config":873},{"href":521,"dataGaName":514,"dataGaLocation":687},{"text":524,"config":875},{"href":526,"dataGaName":527,"dataGaLocation":687},{"text":532,"config":877},{"href":534,"dataGaName":535,"dataGaLocation":687},{"text":537,"config":879},{"href":539,"dataGaName":540,"dataGaLocation":687},{"text":542,"config":881},{"href":544,"dataGaName":545,"dataGaLocation":687},{"text":547,"config":883},{"href":549,"dataGaName":550,"dataGaLocation":687},{"text":885,"config":886},"Sustainability",{"href":887,"dataGaName":885,"dataGaLocation":687},"/sustainability/",{"text":889,"config":890},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":891,"dataGaName":892,"dataGaLocation":687},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":552,"config":894},{"href":554,"dataGaName":555,"dataGaLocation":687},{"text":562,"config":896},{"href":564,"dataGaName":565,"dataGaLocation":687},{"text":567,"config":898},{"href":569,"dataGaName":570,"dataGaLocation":687},{"text":900,"config":901},"現代奴隷制の透明性に関する声明",{"href":902,"dataGaName":903,"dataGaLocation":687},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":905},[906,908,911],{"text":735,"config":907},{"href":737,"dataGaName":738,"dataGaLocation":687},{"text":909,"config":910},"Cookieの設定",{"dataGaName":747,"dataGaLocation":687,"id":748,"isOneTrustButton":254},{"text":740,"config":912},{"href":742,"dataGaName":743,"dataGaLocation":687},{"header":914,"blurb":915,"button":916,"secondaryButton":920},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":268,"config":917},{"href":918,"dataGaName":271,"dataGaLocation":919},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":273,"config":921},{"href":275,"dataGaName":276,"dataGaLocation":919},1777394105733]