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