[{"data":1,"prerenderedAt":792},["ShallowReactive",2],{"/ja-jp/topics/gitops/gitops-workflow":3,"navigation-ja-jp":98,"banner-ja-jp":511,"footer-ja-jp":524,"next-steps-ja-jp":731,"footer-source-/ja-jp/topics/gitops/gitops-workflow/":746},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":11,"_id":92,"_type":93,"title":7,"_source":94,"_file":95,"_stem":96,"_extension":97},"/ja-jp/topics/gitops/gitops-workflow","gitops",false,"",{"title":9,"description":10},"GitOpsのワークフローとは？","GitOpsのワークフローは、Infrastructure as Code、マージリクエスト、CI/CDパイプラインの3つの主要部分で構成されています。",[12,26,32,49,90],{"type":13,"componentName":13,"componentContent":14},"CommonBreadcrumbs",{"crumbs":15},[16,20,24],{"title":17,"config":18},"Industry topics",{"href":19},"/topics/",{"title":21,"config":22},"GitOps",{"href":23},"/ja-jp/topics/gitops/",{"title":25},"GitOps workflow",{"type":27,"componentName":27,"componentContent":28},"CommonArticleHero",{"title":9,"text":29,"config":30},"ITインフラストラクチャの管理は難しいかもしれませんが、バージョン管理、コードレビュー、CI/CDパイプラインなどの有名なソフトウェア開発プラクティスを使用しているチームは、プロセスがより便利になっていると感じています。設定ファイルを使用すると、毎回同じインフラストラクチャ環境がデプロイされます。 多くのチームはこのワークフローで効率性、コラボレーション、安定性を高めることは知っていても、GitOpsを採用することの意味に疑問があるかもしれません。\n",{"id":31,"twoColumns":6},"gitopsのワークフローとは？",{"type":33,"componentName":33,"componentContent":34},"CommonSideNavigationWithTree",{"anchors":35,"components":42},{"text":36,"data":37},"このトピックの詳細",[38],{"text":39,"config":40},"GitOpsワークフローの3つのコンポーネント",{"href":41},"#three-components-of-git-ops-workflows",[43],{"type":44,"componentName":44,"componentContent":45},"TopicsCopy",{"header":39,"text":46,"config":47},"ソフトウェア開発フレームワークとして、GitOpsのワークフローはInfrastructure as Code、マージリクエスト、CI/CDパイプラインの3つの主要部分で構成されています。\n\n### 1. Infrastructure as Code (IaC)\n\nGitOpsワークフローの最初のステップは、すべての[Infrastructure as Code](/topics/gitops/infrastructure-as-code/){data-ga-name=\"IaC\" data-ga-location=\"body\"}の定義です。IaCは、設定ファイルを使用してITインフラストラクチャのプロビジョニングを自動化します。IaCはDevOpsのプラクティスであり、デプロイの摩擦を減らすためにマシン間の一貫性を改善するバージョンインフラストラクチャをサポートしています。インフラストラクチャコードは、継続的インテグレーション、バージョン管理、テスト、継続的デプロイのタッチポイントを持つアプリケーションコードと同様のプロセスを経ることになります。自動化により、さらに[効率的](/blog/why-gitops-should-be-workflow-of-choice/){data-ga-name=\"efficient\" data-ga-location=\"body\"}な開発、一貫性の向上、[よりスピーディな](/blog/production-grade-infra-devsecops-with-five-minute-production/){data-ga-name=\"faster\" data-ga-location=\"body\"}市場投入までの時間が実現します。\n\n[インフラストラクチャ](/blog/lessons-in-iteration-from-new-infrastructure-team/){data-ga-name=\"infrastructure\" data-ga-location=\"body\"}の管理は、従来大規模なチームが物理サーバーを維持する手動プロセスでした。多くの場合、各マシンには独自の構成があり、Snowflake環境につながっていました。Infrastructure as Codeを使用すると、チームの可視性、一貫性、安定性、スケーラビリティが向上します。\n\n### 2. マージリクエスト(MR)\n\nKubernetesのような宣言型ツールは、コードの変更をトラッキングするオープンソースのバージョン管理システムであるGitによって、設定ファイルを[バージョン管理](/blog/migrating-your-version-control-to-git/){data-ga-name=\"version controlled\" data-ga-location=\"body\"}することができます。Gitリポジトリをインフラストラクチャの定義のための信頼できる唯一の情報源として使用すると、GitOpsは堅牢な監査証跡の恩恵を受けることができます。GitOpsワークフローの2つ目の側面は、インフラストラクチャの更新の[変更機能](/blog/merge-request-reviewers/){data-ga-name=\"change function\" data-ga-location=\"body\"}として機能するマージリクエストです。\n\nチームは[コードレビュー](/blog/mr-reviews-with-vs-code/){data-ga-name=\"code reviews\" data-ga-location=\"body\"}、コメント、提案を通じてマージリクエストで協力します。[main](/blog/new-git-default-branch-name/){data-ga-name=\"main\" data-ga-location=\"body\"}ブランチへマージをコミットすると、監査ログとしての役割を果たします。ビルトインのロールバック機能により、チームは希望する状態に自由にリバートでき、困難な課題に取り組むための革新的な方法を模索できます。マージリクエストは実験を促進し、チームメンバーは同僚や特定のトピックの専門家から迅速な[フィードバック](/blog/iteration-and-code-review/){data-ga-name=\"feedback\" data-ga-location=\"body\"}を受け取ることができます。\n\n### 3. 継続的インテグレーションと継続的デプロイ(CI/CD)\n\nGitOpsは、[効果的な](/blog/effective-ci-cd-pipelines/){data-ga-name=\"effective\" data-ga-location=\"body\"}継続的インテグレーションと継続的デプロイと共にGitワークフローを使用してインフラストラクチャ管理を自動化します。コードがメインブランチにマージされると、CI/CDパイプラインは環境で[変更](/blog/pipeline-editor-overview/){data-ga-name=\"change\" data-ga-location=\"body\"}を開始します。手動の変更やヒューマンエラーによって構成ドリフトやSnowflake環境が引き起こされる可能性がありますが、GitOpsの自動化と継続的なデプロイがそれらを上書きするため、環境は常に一貫して希望の状態を[デプロイ](/blog/ci-deployment-and-environments/){data-ga-name=\"deploys\" data-ga-location=\"body\"}します。\n",{"id":48},"three-components-of-git-ops-workflows",{"type":50,"componentName":50,"componentContent":51},"CommonResourcesContainer",{"header":52,"tabs":53},"GitOpsについて詳しく見る",[54],{"name":55,"items":56,"config":89},"resources",[57,68,79],{"header":58,"type":59,"image":60,"link":63},"GitLabがGitOpsワークフローを改善","記事",{"altText":58,"config":61},{"src":62},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158268/Website/Topics/resources_2.jpg",{"text":64,"config":65},"詳細はこちら",{"href":66,"icon":67,"modal":6},"/ja-jp/solutions/gitops/","Article",{"header":69,"type":70,"image":71,"link":74},"インフラストラクチャ自動化の今後の展望","ウェブキャスト",{"altText":69,"config":72},{"src":73},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749157557/Website/Topics/resources_10.jpg",{"text":75,"config":76},"今すぐ視聴",{"href":77,"icon":78,"modal":6},"/why/gitops-infrastructure-automation/","Webcast",{"header":80,"type":81,"image":82,"link":85},"GitOpsにアプローチする3つの方法","ブログ",{"altText":80,"config":83},{"src":84},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749158599/Website/Topics/resources_3.jpg",{"text":64,"config":86},{"href":87,"icon":88,"modal":6},"/blog/gitops-done-3-ways/","Blog",{"key":55},{"type":91,"componentName":91},"CommonNextSteps","content:ja-jp:topics:gitops:gitops-workflow:index.yml","yaml","content","ja-jp/topics/gitops/gitops-workflow/index.yml","ja-jp/topics/gitops/gitops-workflow/index","yml",{"_path":99,"_dir":100,"_draft":6,"_partial":6,"_locale":7,"data":101,"_id":507,"_type":93,"title":508,"_source":94,"_file":509,"_stem":510,"_extension":97},"/shared/ja-jp/main-navigation","ja-jp",{"logo":102,"freeTrial":107,"sales":112,"login":117,"items":122,"search":451,"minimal":485,"duo":498},{"config":103},{"href":104,"dataGaName":105,"dataGaLocation":106},"/ja-jp/","gitlab logo","header",{"text":108,"config":109},"無料トライアルを開始",{"href":110,"dataGaName":111,"dataGaLocation":106},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":113,"config":114},"お問い合わせ",{"href":115,"dataGaName":116,"dataGaLocation":106},"/ja-jp/sales/","sales",{"text":118,"config":119},"サインイン",{"href":120,"dataGaName":121,"dataGaLocation":106},"https://gitlab.com/users/sign_in/","sign in",[123,166,264,269,373,433],{"text":124,"config":125,"cards":127,"footer":149},"プラットフォーム",{"dataNavLevelOne":126},"platform",[128,134,142],{"title":124,"description":129,"link":130},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":131,"config":132},"プラットフォームを詳しく見る",{"href":133,"dataGaName":126,"dataGaLocation":106},"/ja-jp/platform/",{"title":135,"description":136,"link":137},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":138,"config":139},"GitLab Duoのご紹介",{"href":140,"dataGaName":141,"dataGaLocation":106},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":143,"description":144,"link":145},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":64,"config":146},{"href":147,"dataGaName":148,"dataGaLocation":106},"/ja-jp/why-gitlab/","why gitlab",{"title":150,"items":151},"利用を開始：",[152,157,162],{"text":153,"config":154},"プラットフォームエンジニアリング",{"href":155,"dataGaName":156,"dataGaLocation":106},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":158,"config":159},"開発者の経験",{"href":160,"dataGaName":161,"dataGaLocation":106},"/ja-jp/developer-experience/","Developer experience",{"text":163,"config":164},"MLOps",{"href":165,"dataGaName":163,"dataGaLocation":106},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":167,"left":168,"config":169,"link":171,"lists":175,"footer":246},"製品",true,{"dataNavLevelOne":170},"solutions",{"text":172,"config":173},"すべてのソリューションを表示",{"href":174,"dataGaName":170,"dataGaLocation":106},"/ja-jp/solutions/",[176,202,224],{"title":177,"description":178,"link":179,"items":184},"自動化","CI/CDと自動化でデプロイを加速",{"config":180},{"icon":181,"href":182,"dataGaName":183,"dataGaLocation":106},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[185,189,193,198],{"text":186,"config":187},"CI/CD",{"href":188,"dataGaLocation":106,"dataGaName":186},"/ja-jp/solutions/continuous-integration/",{"text":190,"config":191},"AIアシストによる開発",{"href":140,"dataGaLocation":106,"dataGaName":192},"AI assisted development",{"text":194,"config":195},"ソースコード管理",{"href":196,"dataGaLocation":106,"dataGaName":197},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":199,"config":200},"自動化されたソフトウェアデリバリー",{"href":182,"dataGaLocation":106,"dataGaName":201},"Automated software delivery",{"title":203,"description":204,"link":205,"items":210},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":206},{"href":207,"dataGaName":208,"dataGaLocation":106,"icon":209},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[211,215,220],{"text":212,"config":213},"Application Security Testing",{"href":207,"dataGaName":214,"dataGaLocation":106},"Application security testing",{"text":216,"config":217},"ソフトウェアサプライチェーンの安全性",{"href":218,"dataGaLocation":106,"dataGaName":219},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":221,"config":222},"Software Compliance",{"href":223,"dataGaName":221,"dataGaLocation":106},"/ja-jp/solutions/software-compliance/",{"title":225,"link":226,"items":231},"測定",{"config":227},{"icon":228,"href":229,"dataGaName":230,"dataGaLocation":106},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[232,236,241],{"text":233,"config":234},"可視性と測定",{"href":229,"dataGaLocation":106,"dataGaName":235},"Visibility and Measurement",{"text":237,"config":238},"バリューストリーム管理",{"href":239,"dataGaLocation":106,"dataGaName":240},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":242,"config":243},"分析とインサイト",{"href":244,"dataGaLocation":106,"dataGaName":245},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":247,"items":248},"GitLabが活躍する場所",[249,254,259],{"text":250,"config":251},"Enterprise",{"href":252,"dataGaLocation":106,"dataGaName":253},"/ja-jp/enterprise/","enterprise",{"text":255,"config":256},"スモールビジネス",{"href":257,"dataGaLocation":106,"dataGaName":258},"/ja-jp/small-business/","small business",{"text":260,"config":261},"公共機関",{"href":262,"dataGaLocation":106,"dataGaName":263},"/ja-jp/solutions/public-sector/","public sector",{"text":265,"config":266},"価格",{"href":267,"dataGaName":268,"dataGaLocation":106,"dataNavLevelOne":268},"/ja-jp/pricing/","pricing",{"text":270,"config":271,"link":272,"lists":276,"feature":360},"関連リソース",{"dataNavLevelOne":55},{"text":273,"config":274},"すべてのリソースを表示",{"href":275,"dataGaName":55,"dataGaLocation":106},"/ja-jp/resources/",[277,310,332],{"title":278,"items":279},"はじめに",[280,285,290,295,300,305],{"text":281,"config":282},"インストール",{"href":283,"dataGaName":284,"dataGaLocation":106},"/ja-jp/install/","install",{"text":286,"config":287},"クイックスタートガイド",{"href":288,"dataGaName":289,"dataGaLocation":106},"/ja-jp/get-started/","quick setup checklists",{"text":291,"config":292},"学ぶ",{"href":293,"dataGaLocation":106,"dataGaName":294},"https://university.gitlab.com/","learn",{"text":296,"config":297},"製品ドキュメント",{"href":298,"dataGaName":299,"dataGaLocation":106},"https://docs.gitlab.com/","product documentation",{"text":301,"config":302},"ベストプラクティスビデオ",{"href":303,"dataGaName":304,"dataGaLocation":106},"/ja-jp/getting-started-videos/","best practice videos",{"text":306,"config":307},"インテグレーション",{"href":308,"dataGaName":309,"dataGaLocation":106},"/ja-jp/integrations/","integrations",{"title":311,"items":312},"検索する",[313,318,322,327],{"text":314,"config":315},"お客様成功事例",{"href":316,"dataGaName":317,"dataGaLocation":106},"/ja-jp/customers/","customer success stories",{"text":81,"config":319},{"href":320,"dataGaName":321,"dataGaLocation":106},"/ja-jp/blog/","blog",{"text":323,"config":324},"リモート",{"href":325,"dataGaName":326,"dataGaLocation":106},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":328,"config":329},"TeamOps",{"href":330,"dataGaName":331,"dataGaLocation":106},"/ja-jp/teamops/","teamops",{"title":333,"items":334},"つなげる",[335,340,345,350,355],{"text":336,"config":337},"GitLabサービス",{"href":338,"dataGaName":339,"dataGaLocation":106},"/ja-jp/services/","services",{"text":341,"config":342},"コミュニティ",{"href":343,"dataGaName":344,"dataGaLocation":106},"/community/","community",{"text":346,"config":347},"フォーラム",{"href":348,"dataGaName":349,"dataGaLocation":106},"https://forum.gitlab.com/","forum",{"text":351,"config":352},"イベント",{"href":353,"dataGaName":354,"dataGaLocation":106},"/events/","events",{"text":356,"config":357},"パートナー",{"href":358,"dataGaName":359,"dataGaLocation":106},"/ja-jp/partners/","partners",{"backgroundColor":361,"textColor":362,"text":363,"image":364,"link":368},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":365,"config":366},"ソースプロモカード",{"src":367},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":369,"config":370},"最新情報を読む",{"href":371,"dataGaName":372,"dataGaLocation":106},"/ja-jp/the-source/","the source",{"text":374,"config":375,"lists":377},"会社情報",{"dataNavLevelOne":376},"company",[378],{"items":379},[380,385,391,393,398,403,408,413,418,423,428],{"text":381,"config":382},"GitLabについて",{"href":383,"dataGaName":384,"dataGaLocation":106},"/ja-jp/company/","about",{"text":386,"config":387,"footerGa":390},"採用情報",{"href":388,"dataGaName":389,"dataGaLocation":106},"/jobs/","jobs",{"dataGaName":389},{"text":351,"config":392},{"href":353,"dataGaName":354,"dataGaLocation":106},{"text":394,"config":395},"経営陣",{"href":396,"dataGaName":397,"dataGaLocation":106},"/company/team/e-group/","leadership",{"text":399,"config":400},"チーム",{"href":401,"dataGaName":402,"dataGaLocation":106},"/company/team/","team",{"text":404,"config":405},"ハンドブック",{"href":406,"dataGaName":407,"dataGaLocation":106},"https://handbook.gitlab.com/","handbook",{"text":409,"config":410},"投資家向け情報",{"href":411,"dataGaName":412,"dataGaLocation":106},"https://ir.gitlab.com/","investor relations",{"text":414,"config":415},"トラストセンター",{"href":416,"dataGaName":417,"dataGaLocation":106},"/ja-jp/security/","trust center",{"text":419,"config":420},"AI Transparency Center",{"href":421,"dataGaName":422,"dataGaLocation":106},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":424,"config":425},"ニュースレター",{"href":426,"dataGaName":427,"dataGaLocation":106},"/company/contact/","newsletter",{"text":429,"config":430},"プレス",{"href":431,"dataGaName":432,"dataGaLocation":106},"/press/","press",{"text":113,"config":434,"lists":435},{"dataNavLevelOne":376},[436],{"items":437},[438,441,446],{"text":113,"config":439},{"href":115,"dataGaName":440,"dataGaLocation":106},"talk to sales",{"text":442,"config":443},"サポートを受ける",{"href":444,"dataGaName":445,"dataGaLocation":106},"/support/","get help",{"text":447,"config":448},"カスタマーポータル",{"href":449,"dataGaName":450,"dataGaLocation":106},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":452,"login":453,"suggestions":460},"閉じる",{"text":454,"link":455},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":456,"config":457},"GitLab.com",{"href":120,"dataGaName":458,"dataGaLocation":459},"search login","search",{"text":461,"default":462},"提案",[463,466,471,473,477,481],{"text":135,"config":464},{"href":140,"dataGaName":465,"dataGaLocation":459},"GitLab Duo (AI)",{"text":467,"config":468},"コード提案（AI）",{"href":469,"dataGaName":470,"dataGaLocation":459},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":186,"config":472},{"href":188,"dataGaName":186,"dataGaLocation":459},{"text":474,"config":475},"GitLab on AWS",{"href":476,"dataGaName":474,"dataGaLocation":459},"/ja-jp/partners/technology-partners/aws/",{"text":478,"config":479},"GitLab on Google Cloud",{"href":480,"dataGaName":478,"dataGaLocation":459},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":482,"config":483},"GitLabを選ぶ理由",{"href":147,"dataGaName":484,"dataGaLocation":459},"Why GitLab?",{"freeTrial":486,"mobileIcon":490,"desktopIcon":495},{"text":108,"config":487},{"href":488,"dataGaName":111,"dataGaLocation":489},"https://gitlab.com/-/trials/new/","nav",{"altText":491,"config":492},"GitLabアイコン",{"src":493,"dataGaName":494,"dataGaLocation":489},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":491,"config":496},{"src":497,"dataGaName":494,"dataGaLocation":489},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":499,"mobileIcon":503,"desktopIcon":505},{"text":500,"config":501},"GitLab Duoの詳細について",{"href":140,"dataGaName":502,"dataGaLocation":489},"gitlab duo",{"altText":491,"config":504},{"src":493,"dataGaName":494,"dataGaLocation":489},{"altText":491,"config":506},{"src":497,"dataGaName":494,"dataGaLocation":489},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":512,"_dir":100,"_draft":6,"_partial":6,"_locale":7,"title":513,"button":514,"config":519,"_id":521,"_type":93,"_source":94,"_file":522,"_stem":523,"_extension":97},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":515,"config":516},"ベータ版を試す",{"href":517,"dataGaName":518,"dataGaLocation":106},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":520},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":525,"_dir":100,"_draft":6,"_partial":6,"_locale":7,"data":526,"_id":727,"_type":93,"title":728,"_source":94,"_file":729,"_stem":730,"_extension":97},"/shared/ja-jp/main-footer",{"text":527,"source":528,"edit":534,"contribute":539,"config":544,"items":549,"minimal":719},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":529,"config":530},"ページのソースを表示",{"href":531,"dataGaName":532,"dataGaLocation":533},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":535,"config":536},"このページを編集",{"href":537,"dataGaName":538,"dataGaLocation":533},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":540,"config":541},"ご協力をお願いします",{"href":542,"dataGaName":543,"dataGaLocation":533},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":545,"facebook":546,"youtube":547,"linkedin":548},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[550,573,624,656,691],{"title":124,"links":551,"subMenu":556},[552],{"text":553,"config":554},"DevSecOpsプラットフォーム",{"href":133,"dataGaName":555,"dataGaLocation":533},"devsecops platform",[557],{"title":265,"links":558},[559,563,568],{"text":560,"config":561},"プランの表示",{"href":267,"dataGaName":562,"dataGaLocation":533},"view plans",{"text":564,"config":565},"Premiumを選ぶ理由",{"href":566,"dataGaName":567,"dataGaLocation":533},"/ja-jp/pricing/premium/","why premium",{"text":569,"config":570},"Ultimateを選ぶ理由",{"href":571,"dataGaName":572,"dataGaLocation":533},"/ja-jp/pricing/ultimate/","why ultimate",{"title":574,"links":575},"ソリューション",[576,581,584,586,591,596,600,603,606,608,610,612,614,619],{"text":577,"config":578},"デジタルトランスフォーメーション",{"href":579,"dataGaName":580,"dataGaLocation":533},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":582,"config":583},"セキュリティとコンプライアンス",{"href":207,"dataGaName":214,"dataGaLocation":533},{"text":199,"config":585},{"href":182,"dataGaName":183,"dataGaLocation":533},{"text":587,"config":588},"アジャイル開発",{"href":589,"dataGaName":590,"dataGaLocation":533},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":592,"config":593},"クラウドトランスフォーメーション",{"href":594,"dataGaName":595,"dataGaLocation":533},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":597,"config":598},"SCM",{"href":196,"dataGaName":599,"dataGaLocation":533},"source code management",{"text":186,"config":601},{"href":188,"dataGaName":602,"dataGaLocation":533},"continuous integration & delivery",{"text":237,"config":604},{"href":239,"dataGaName":605,"dataGaLocation":533},"value stream management",{"text":21,"config":607},{"href":66,"dataGaName":5,"dataGaLocation":533},{"text":250,"config":609},{"href":252,"dataGaName":253,"dataGaLocation":533},{"text":255,"config":611},{"href":257,"dataGaName":258,"dataGaLocation":533},{"text":260,"config":613},{"href":262,"dataGaName":263,"dataGaLocation":533},{"text":615,"config":616},"教育",{"href":617,"dataGaName":618,"dataGaLocation":533},"/ja-jp/solutions/education/","education",{"text":620,"config":621},"金融サービス",{"href":622,"dataGaName":623,"dataGaLocation":533},"/ja-jp/solutions/finance/","financial services",{"title":270,"links":625},[626,628,630,632,635,637,640,642,644,646,648,650,652,654],{"text":281,"config":627},{"href":283,"dataGaName":284,"dataGaLocation":533},{"text":286,"config":629},{"href":288,"dataGaName":289,"dataGaLocation":533},{"text":291,"config":631},{"href":293,"dataGaName":294,"dataGaLocation":533},{"text":296,"config":633},{"href":298,"dataGaName":634,"dataGaLocation":533},"docs",{"text":81,"config":636},{"href":320,"dataGaName":321},{"text":638,"config":639},"お客様の成功事例",{"href":316,"dataGaLocation":533},{"text":314,"config":641},{"href":316,"dataGaName":317,"dataGaLocation":533},{"text":323,"config":643},{"href":325,"dataGaName":326,"dataGaLocation":533},{"text":336,"config":645},{"href":338,"dataGaName":339,"dataGaLocation":533},{"text":328,"config":647},{"href":330,"dataGaName":331,"dataGaLocation":533},{"text":341,"config":649},{"href":343,"dataGaName":344,"dataGaLocation":533},{"text":346,"config":651},{"href":348,"dataGaName":349,"dataGaLocation":533},{"text":351,"config":653},{"href":353,"dataGaName":354,"dataGaLocation":533},{"text":356,"config":655},{"href":358,"dataGaName":359,"dataGaLocation":533},{"title":657,"links":658},"Company",[659,661,663,665,667,669,671,675,680,682,684,686],{"text":381,"config":660},{"href":383,"dataGaName":376,"dataGaLocation":533},{"text":386,"config":662},{"href":388,"dataGaName":389,"dataGaLocation":533},{"text":394,"config":664},{"href":396,"dataGaName":397,"dataGaLocation":533},{"text":399,"config":666},{"href":401,"dataGaName":402,"dataGaLocation":533},{"text":404,"config":668},{"href":406,"dataGaName":407,"dataGaLocation":533},{"text":409,"config":670},{"href":411,"dataGaName":412,"dataGaLocation":533},{"text":672,"config":673},"Sustainability",{"href":674,"dataGaName":672,"dataGaLocation":533},"/sustainability/",{"text":676,"config":677},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":678,"dataGaName":679,"dataGaLocation":533},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":414,"config":681},{"href":416,"dataGaName":417,"dataGaLocation":533},{"text":424,"config":683},{"href":426,"dataGaName":427,"dataGaLocation":533},{"text":429,"config":685},{"href":431,"dataGaName":432,"dataGaLocation":533},{"text":687,"config":688},"現代奴隷制の透明性に関する声明",{"href":689,"dataGaName":690,"dataGaLocation":533},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":113,"links":692},[693,695,697,699,704,709,714],{"text":113,"config":694},{"href":115,"dataGaName":116,"dataGaLocation":533},{"text":442,"config":696},{"href":444,"dataGaName":445,"dataGaLocation":533},{"text":447,"config":698},{"href":449,"dataGaName":450,"dataGaLocation":533},{"text":700,"config":701},"ステータス",{"href":702,"dataGaName":703,"dataGaLocation":533},"https://status.gitlab.com/","status",{"text":705,"config":706},"利用規約",{"href":707,"dataGaName":708,"dataGaLocation":533},"/terms/","terms of use",{"text":710,"config":711},"プライバシーに関する声明",{"href":712,"dataGaName":713,"dataGaLocation":533},"/ja-jp/privacy/","privacy statement",{"text":715,"config":716},"Cookieの設定",{"dataGaName":717,"dataGaLocation":533,"id":718,"isOneTrustButton":168},"cookie preferences","ot-sdk-btn",{"items":720},[721,723,725],{"text":705,"config":722},{"href":707,"dataGaName":708,"dataGaLocation":533},{"text":710,"config":724},{"href":712,"dataGaName":713,"dataGaLocation":533},{"text":715,"config":726},{"dataGaName":717,"dataGaLocation":533,"id":718,"isOneTrustButton":168},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",{"_path":732,"_dir":100,"_draft":6,"_partial":6,"_locale":7,"header":733,"eyebrow":734,"blurb":735,"button":736,"secondaryButton":740,"_id":742,"_type":93,"title":743,"_source":94,"_file":744,"_stem":745,"_extension":97},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":108,"config":737},{"href":738,"dataGaName":111,"dataGaLocation":739},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":113,"config":741},{"href":115,"dataGaName":116,"dataGaLocation":739},"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":747,"content":748,"_id":92,"_type":93,"title":7,"_source":94,"_file":95,"_stem":96,"_extension":97},{"title":9,"description":10},[749,757,760,770,791],{"type":13,"componentName":13,"componentContent":750},{"crumbs":751},[752,754,756],{"title":17,"config":753},{"href":19},{"title":21,"config":755},{"href":23},{"title":25},{"type":27,"componentName":27,"componentContent":758},{"title":9,"text":29,"config":759},{"id":31,"twoColumns":6},{"type":33,"componentName":33,"componentContent":761},{"anchors":762,"components":766},{"text":36,"data":763},[764],{"text":39,"config":765},{"href":41},[767],{"type":44,"componentName":44,"componentContent":768},{"header":39,"text":46,"config":769},{"id":48},{"type":50,"componentName":50,"componentContent":771},{"header":52,"tabs":772},[773],{"name":55,"items":774,"config":790},[775,780,785],{"header":58,"type":59,"image":776,"link":778},{"altText":58,"config":777},{"src":62},{"text":64,"config":779},{"href":66,"icon":67,"modal":6},{"header":69,"type":70,"image":781,"link":783},{"altText":69,"config":782},{"src":73},{"text":75,"config":784},{"href":77,"icon":78,"modal":6},{"header":80,"type":81,"image":786,"link":788},{"altText":80,"config":787},{"src":84},{"text":64,"config":789},{"href":87,"icon":88,"modal":6},{"key":55},{"type":91,"componentName":91},1761814445678]