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