[{"data":1,"prerenderedAt":766},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/pipeline-as-code":3,"navigation-ja-jp":145,"banner-ja-jp":541,"footer-ja-jp":551,"next-steps-ja-jp":757},{"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":531},{"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/ja-jp&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/get-started/","get started",{"freeTrial":523,"mobileIcon":527,"desktopIcon":529},{"text":524,"config":525},"GitLab Duoの詳細について",{"href":185,"dataGaName":526,"dataGaLocation":509},"gitlab duo",{"altText":511,"config":528},{"src":513,"dataGaName":514,"dataGaLocation":509},{"altText":511,"config":530},{"src":517,"dataGaName":514,"dataGaLocation":509},{"freeTrial":532,"mobileIcon":537,"desktopIcon":539},{"text":533,"config":534},"料金ページに戻る",{"href":292,"dataGaName":535,"dataGaLocation":509,"icon":536},"back to pricing","GoBack",{"altText":511,"config":538},{"src":513,"dataGaName":514,"dataGaLocation":509},{"altText":511,"config":540},{"src":517,"dataGaName":514,"dataGaLocation":509},{"title":542,"button":543,"config":548},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":544,"config":545},"GitLab Transcendを今すぐ視聴",{"href":546,"dataGaName":547,"dataGaLocation":151},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":549,"icon":550,"disabled":139},"release","AiStar",{"data":552},{"text":553,"source":554,"edit":560,"contribute":565,"config":570,"items":575,"minimal":749},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":555,"config":556},"ページのソースを表示",{"href":557,"dataGaName":558,"dataGaLocation":559},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":561,"config":562},"このページを編集",{"href":563,"dataGaName":564,"dataGaLocation":559},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":566,"config":567},"ご協力をお願いします",{"href":568,"dataGaName":569,"dataGaLocation":559},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":571,"facebook":572,"youtube":573,"linkedin":574},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[576,599,653,683,718],{"title":169,"links":577,"subMenu":582},[578],{"text":579,"config":580},"DevSecOpsプラットフォーム",{"href":178,"dataGaName":581,"dataGaLocation":559},"devsecops platform",[583],{"title":290,"links":584},[585,589,594],{"text":586,"config":587},"プランの表示",{"href":292,"dataGaName":588,"dataGaLocation":559},"view plans",{"text":590,"config":591},"Premiumを選ぶ理由",{"href":592,"dataGaName":593,"dataGaLocation":559},"/ja-jp/pricing/premium/","why premium",{"text":595,"config":596},"Ultimateを選ぶ理由",{"href":597,"dataGaName":598,"dataGaLocation":559},"/ja-jp/pricing/ultimate/","why ultimate",{"title":600,"links":601},"ソリューション",[602,607,610,612,617,622,626,629,632,637,639,641,643,648],{"text":603,"config":604},"デジタルトランスフォーメーション",{"href":605,"dataGaName":606,"dataGaLocation":559},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":608,"config":609},"セキュリティとコンプライアンス",{"href":232,"dataGaName":239,"dataGaLocation":559},{"text":224,"config":611},{"href":209,"dataGaName":210,"dataGaLocation":559},{"text":613,"config":614},"アジャイル開発",{"href":615,"dataGaName":616,"dataGaLocation":559},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":618,"config":619},"クラウドトランスフォーメーション",{"href":620,"dataGaName":621,"dataGaLocation":559},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":623,"config":624},"SCM",{"href":221,"dataGaName":625,"dataGaLocation":559},"source code management",{"text":17,"config":627},{"href":214,"dataGaName":628,"dataGaLocation":559},"continuous integration & delivery",{"text":262,"config":630},{"href":264,"dataGaName":631,"dataGaLocation":559},"value stream management",{"text":633,"config":634},"GitOps",{"href":635,"dataGaName":636,"dataGaLocation":559},"/ja-jp/solutions/gitops/","gitops",{"text":275,"config":638},{"href":277,"dataGaName":278,"dataGaLocation":559},{"text":280,"config":640},{"href":282,"dataGaName":283,"dataGaLocation":559},{"text":285,"config":642},{"href":287,"dataGaName":288,"dataGaLocation":559},{"text":644,"config":645},"教育",{"href":646,"dataGaName":647,"dataGaLocation":559},"/ja-jp/solutions/education/","education",{"text":649,"config":650},"金融サービス",{"href":651,"dataGaName":652,"dataGaLocation":559},"/ja-jp/solutions/finance/","financial services",{"title":295,"links":654},[655,657,659,661,664,666,669,671,673,675,677,679,681],{"text":306,"config":656},{"href":308,"dataGaName":309,"dataGaLocation":559},{"text":311,"config":658},{"href":313,"dataGaName":314,"dataGaLocation":559},{"text":316,"config":660},{"href":318,"dataGaName":319,"dataGaLocation":559},{"text":321,"config":662},{"href":323,"dataGaName":663,"dataGaLocation":559},"docs",{"text":344,"config":665},{"href":346,"dataGaName":347},{"text":667,"config":668},"お客様の成功事例",{"href":341,"dataGaLocation":559},{"text":339,"config":670},{"href":341,"dataGaName":342,"dataGaLocation":559},{"text":349,"config":672},{"href":351,"dataGaName":352,"dataGaLocation":559},{"text":357,"config":674},{"href":359,"dataGaName":360,"dataGaLocation":559},{"text":362,"config":676},{"href":364,"dataGaName":365,"dataGaLocation":559},{"text":367,"config":678},{"href":369,"dataGaName":370,"dataGaLocation":559},{"text":372,"config":680},{"href":374,"dataGaName":375,"dataGaLocation":559},{"text":377,"config":682},{"href":379,"dataGaName":380,"dataGaLocation":559},{"title":684,"links":685},"Company",[686,688,690,692,694,696,698,702,707,709,711,713],{"text":402,"config":687},{"href":404,"dataGaName":397,"dataGaLocation":559},{"text":407,"config":689},{"href":409,"dataGaName":410,"dataGaLocation":559},{"text":415,"config":691},{"href":417,"dataGaName":418,"dataGaLocation":559},{"text":420,"config":693},{"href":422,"dataGaName":423,"dataGaLocation":559},{"text":425,"config":695},{"href":427,"dataGaName":428,"dataGaLocation":559},{"text":430,"config":697},{"href":432,"dataGaName":433,"dataGaLocation":559},{"text":699,"config":700},"Sustainability",{"href":701,"dataGaName":699,"dataGaLocation":559},"/sustainability/",{"text":703,"config":704},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":705,"dataGaName":706,"dataGaLocation":559},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":435,"config":708},{"href":437,"dataGaName":438,"dataGaLocation":559},{"text":445,"config":710},{"href":447,"dataGaName":448,"dataGaLocation":559},{"text":450,"config":712},{"href":452,"dataGaName":453,"dataGaLocation":559},{"text":714,"config":715},"現代奴隷制の透明性に関する声明",{"href":716,"dataGaName":717,"dataGaLocation":559},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":158,"links":719},[720,722,727,729,734,739,744],{"text":158,"config":721},{"href":160,"dataGaName":161,"dataGaLocation":559},{"text":723,"config":724},"サポートを受ける",{"href":725,"dataGaName":726,"dataGaLocation":559},"https://support.gitlab.com/hc/en-us/articles/11626483177756-GitLab-Support","get help",{"text":468,"config":728},{"href":470,"dataGaName":471,"dataGaLocation":559},{"text":730,"config":731},"ステータス",{"href":732,"dataGaName":733,"dataGaLocation":559},"https://status.gitlab.com/","status",{"text":735,"config":736},"利用規約",{"href":737,"dataGaName":738,"dataGaLocation":559},"/terms/","terms of use",{"text":740,"config":741},"プライバシーに関する声明",{"href":742,"dataGaName":743,"dataGaLocation":559},"/ja-jp/privacy/","privacy statement",{"text":745,"config":746},"Cookieの設定",{"dataGaName":747,"dataGaLocation":559,"id":748,"isOneTrustButton":139},"cookie preferences","ot-sdk-btn",{"items":750},[751,753,755],{"text":735,"config":752},{"href":737,"dataGaName":738,"dataGaLocation":559},{"text":740,"config":754},{"href":742,"dataGaName":743,"dataGaLocation":559},{"text":745,"config":756},{"dataGaName":747,"dataGaLocation":559,"id":748,"isOneTrustButton":139},{"header":758,"blurb":759,"button":760,"secondaryButton":764},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":153,"config":761},{"href":762,"dataGaName":156,"dataGaLocation":763},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":158,"config":765},{"href":160,"dataGaName":161,"dataGaLocation":763},1776454451735]