[{"data":1,"prerenderedAt":829},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/pipeline-as-code":3,"navigation-ja-jp":145,"banner-ja-jp":571,"footer-ja-jp":579,"next-steps-ja-jp":820},{"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},"/ja-jp/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/ja-jp/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/ja-jp/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},"/events/","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","hNfntOFwTxPJgHLpcVd3vUMc1XwBw7FCDpNa-MFXthI",{"logo":146,"freeTrial":151,"sales":156,"login":161,"items":166,"search":491,"minimal":524,"duo":541,"switchNav":550,"pricingDeployment":561},{"config":147},{"href":148,"dataGaName":149,"dataGaLocation":150},"/ja-jp/","gitlab logo","header",{"text":152,"config":153},"無料トライアルを開始",{"href":154,"dataGaName":155,"dataGaLocation":150},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":157,"config":158},"デモをリクエスト",{"href":159,"dataGaName":160,"dataGaLocation":150},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":162,"config":163},"サインイン",{"href":164,"dataGaName":165,"dataGaLocation":150},"https://gitlab.com/users/sign_in/","sign in",[167,195,296,301,413,469],{"text":168,"config":169,"menu":171},"プラットフォーム",{"dataNavLevelOne":170},"platform",{"type":172,"columns":173},"cards",[174,180,188],{"title":168,"description":175,"link":176},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":177,"config":178},"プラットフォームの詳細はこちら",{"href":179,"dataGaName":170,"dataGaLocation":150},"/ja-jp/platform/",{"title":181,"description":182,"link":183},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":184,"config":185},"GitLab Duoのご紹介",{"href":186,"dataGaName":187,"dataGaLocation":150},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":189,"description":190,"link":191},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":61,"config":192},{"href":193,"dataGaName":194,"dataGaLocation":150},"/ja-jp/why-gitlab/","why gitlab",{"text":196,"left":139,"config":197,"menu":199},"製品",{"dataNavLevelOne":198},"solutions",{"type":200,"link":201,"columns":205,"feature":275},"lists",{"text":202,"config":203},"すべてのソリューションを表示",{"href":204,"dataGaName":198,"dataGaLocation":150},"/ja-jp/solutions/",[206,230,253],{"title":207,"description":208,"link":209,"items":214},"自動化","CI/CDと自動化でデプロイを加速",{"config":210},{"icon":211,"href":212,"dataGaName":213,"dataGaLocation":150},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[215,218,221,226],{"text":17,"config":216},{"href":217,"dataGaLocation":150,"dataGaName":17},"/ja-jp/solutions/continuous-integration/",{"text":181,"config":219},{"href":186,"dataGaLocation":150,"dataGaName":220},"gitlab duo agent platform - product menu",{"text":222,"config":223},"ソースコード管理",{"href":224,"dataGaLocation":150,"dataGaName":225},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":227,"config":228},"自動化されたソフトウェアデリバリー",{"href":212,"dataGaLocation":150,"dataGaName":229},"Automated software delivery",{"title":231,"description":232,"link":233,"items":238},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":234},{"href":235,"dataGaName":236,"dataGaLocation":150,"icon":237},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[239,243,248],{"text":240,"config":241},"アプリケーションセキュリティテスト",{"href":235,"dataGaName":242,"dataGaLocation":150},"Application security testing",{"text":244,"config":245},"ソフトウェアサプライチェーンセキュリティ",{"href":246,"dataGaLocation":150,"dataGaName":247},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":249,"config":250},"ソフトウェアコンプライアンス",{"href":251,"dataGaName":252,"dataGaLocation":150},"/ja-jp/solutions/software-compliance/","software compliance",{"title":254,"link":255,"items":260},"測定",{"config":256},{"icon":257,"href":258,"dataGaName":259,"dataGaLocation":150},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[261,265,270],{"text":262,"config":263},"可視性と測定",{"href":258,"dataGaLocation":150,"dataGaName":264},"Visibility and Measurement",{"text":266,"config":267},"バリューストリーム管理",{"href":268,"dataGaLocation":150,"dataGaName":269},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":271,"config":272},"分析とインサイト",{"href":273,"dataGaLocation":150,"dataGaName":274},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":276,"type":200,"items":277},"GitLabが活躍する場所",[278,284,290],{"text":279,"config":280},"大企業",{"icon":281,"href":282,"dataGaLocation":150,"dataGaName":283},"Building","/ja-jp/enterprise/","enterprise",{"text":285,"config":286},"スモールビジネス",{"icon":287,"href":288,"dataGaLocation":150,"dataGaName":289},"Work","/ja-jp/small-business/","small business",{"text":291,"config":292},"公共部門",{"icon":293,"href":294,"dataGaLocation":150,"dataGaName":295},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":297,"config":298},"価格",{"href":299,"dataGaName":300,"dataGaLocation":150,"dataNavLevelOne":300},"/ja-jp/pricing/","pricing",{"text":302,"config":303,"menu":304},"関連リソース",{"dataNavLevelOne":70},{"type":200,"link":305,"columns":309,"feature":402},{"text":306,"config":307},"すべてのリソースを表示",{"href":308,"dataGaName":70,"dataGaLocation":150},"/ja-jp/resources/",[310,343,370],{"title":311,"items":312},"はじめに",[313,318,323,328,333,338],{"text":314,"config":315},"インストール",{"href":316,"dataGaName":317,"dataGaLocation":150},"/ja-jp/install/","install",{"text":319,"config":320},"クイックスタートガイド",{"href":321,"dataGaName":322,"dataGaLocation":150},"/ja-jp/get-started/","quick setup checklists",{"text":324,"config":325},"学ぶ",{"href":326,"dataGaLocation":150,"dataGaName":327},"https://university.gitlab.com/","learn",{"text":329,"config":330},"製品ドキュメント",{"href":331,"dataGaName":332,"dataGaLocation":150},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":334,"config":335},"ベストプラクティスビデオ",{"href":336,"dataGaName":337,"dataGaLocation":150},"/ja-jp/getting-started-videos/","best practice videos",{"text":339,"config":340},"インテグレーション",{"href":341,"dataGaName":342,"dataGaLocation":150},"/ja-jp/integrations/","integrations",{"title":344,"items":345},"検索する",[346,351,356,361,365],{"text":347,"config":348},"お客様成功事例",{"href":349,"dataGaName":350,"dataGaLocation":150},"/ja-jp/customers/","customer success stories",{"text":352,"config":353},"ブログ",{"href":354,"dataGaName":355,"dataGaLocation":150},"/ja-jp/blog/","blog",{"text":357,"config":358},"Demo Hub",{"href":359,"dataGaName":360,"dataGaLocation":150},"/ja-jp/demo-hub/","demo hub",{"text":362,"config":363},"The Source",{"href":364,"dataGaName":355,"dataGaLocation":150},"/ja-jp/the-source/",{"text":366,"config":367},"リモート",{"href":368,"dataGaName":369,"dataGaLocation":150},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":371,"items":372},"つなげる",[373,378,383,388,393,397],{"text":374,"config":375},"GitLabサービス",{"href":376,"dataGaName":377,"dataGaLocation":150},"/ja-jp/services/","services",{"text":379,"config":380},"コントリビュート",{"href":381,"dataGaName":382,"dataGaLocation":150},"https://contributors.gitlab.com","contribute",{"text":384,"config":385},"コミュニティ",{"href":386,"dataGaName":387,"dataGaLocation":150},"/community/","community",{"text":389,"config":390},"フォーラム",{"href":391,"dataGaName":392,"dataGaLocation":150},"https://forum.gitlab.com/","forum",{"text":394,"config":395},"イベント",{"href":80,"dataGaName":396,"dataGaLocation":150},"events",{"text":398,"config":399},"パートナー",{"href":400,"dataGaName":401,"dataGaLocation":150},"/ja-jp/partners/","partners",{"config":403,"title":406,"text":407,"link":408},{"background":404,"textColor":405},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":409,"config":410},"最新情報を読む",{"href":411,"dataGaName":412,"dataGaLocation":150},"/ja-jp/whats-new/","whats new",{"text":414,"config":415,"menu":417},"企業情報",{"dataNavLevelOne":416},"company",{"type":200,"columns":418},[419],{"items":420},[421,426,432,434,439,444,449,454,459,464],{"text":422,"config":423},"GitLabについて",{"href":424,"dataGaName":425,"dataGaLocation":150},"/ja-jp/company/","about",{"text":427,"config":428,"footerGa":431},"採用情報",{"href":429,"dataGaName":430,"dataGaLocation":150},"/jobs/","jobs",{"dataGaName":430},{"text":394,"config":433},{"href":80,"dataGaName":396,"dataGaLocation":150},{"text":435,"config":436},"経営陣",{"href":437,"dataGaName":438,"dataGaLocation":150},"/company/team/e-group/","leadership",{"text":440,"config":441},"ハンドブック",{"href":442,"dataGaName":443,"dataGaLocation":150},"https://handbook.gitlab.com/","handbook",{"text":445,"config":446},"投資家向け情報",{"href":447,"dataGaName":448,"dataGaLocation":150},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":450,"config":451},"トラストセンター",{"href":452,"dataGaName":453,"dataGaLocation":150},"/ja-jp/security/","trust center",{"text":455,"config":456},"AI Transparency Center",{"href":457,"dataGaName":458,"dataGaLocation":150},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":460,"config":461},"ニュースレター",{"href":462,"dataGaName":463,"dataGaLocation":150},"/company/contact/#contact-forms","newsletter",{"text":465,"config":466},"プレス",{"href":467,"dataGaName":468,"dataGaLocation":150},"/press/","press",{"text":470,"config":471,"menu":472},"お問い合わせ",{"dataNavLevelOne":416},{"type":200,"columns":473},[474],{"items":475},[476,481,486],{"text":477,"config":478},"お問い合わせはこちら",{"href":479,"dataGaName":480,"dataGaLocation":150},"/ja-jp/sales/","talk to sales",{"text":482,"config":483},"サポートを受ける",{"href":484,"dataGaName":485,"dataGaLocation":150},"https://support.gitlab.com/hc/en-us","support portal",{"text":487,"config":488},"カスタマーポータル",{"href":489,"dataGaName":490,"dataGaLocation":150},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":492,"login":493,"suggestions":500},"閉じる",{"text":494,"link":495},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":496,"config":497},"GitLab.com",{"href":164,"dataGaName":498,"dataGaLocation":499},"search login","search",{"text":501,"default":502},"提案",[503,505,510,512,516,520],{"text":181,"config":504},{"href":186,"dataGaName":181,"dataGaLocation":499},{"text":506,"config":507},"コード提案（AI）",{"href":508,"dataGaName":509,"dataGaLocation":499},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":17,"config":511},{"href":217,"dataGaName":17,"dataGaLocation":499},{"text":513,"config":514},"GitLab on AWS",{"href":515,"dataGaName":513,"dataGaLocation":499},"/ja-jp/partners/technology-partners/aws/",{"text":517,"config":518},"GitLab on Google Cloud",{"href":519,"dataGaName":517,"dataGaLocation":499},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":521,"config":522},"GitLabを選ぶ理由",{"href":193,"dataGaName":523,"dataGaLocation":499},"Why GitLab?",{"freeTrial":525,"mobileIcon":529,"desktopIcon":534,"secondaryButton":537},{"text":152,"config":526},{"href":527,"dataGaName":155,"dataGaLocation":528},"https://gitlab.com/-/trials/new/","nav",{"altText":530,"config":531},"GitLabアイコン",{"src":532,"dataGaName":533,"dataGaLocation":528},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":530,"config":535},{"src":536,"dataGaName":533,"dataGaLocation":528},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":311,"config":538},{"href":539,"dataGaName":540,"dataGaLocation":528},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":542,"mobileIcon":546,"desktopIcon":548},{"text":543,"config":544},"GitLab Duoの詳細について",{"href":186,"dataGaName":545,"dataGaLocation":528},"gitlab duo",{"altText":530,"config":547},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":549},{"src":536,"dataGaName":533,"dataGaLocation":528},{"button":551,"mobileIcon":556,"desktopIcon":558},{"text":552,"config":553},"/switch",{"href":554,"dataGaName":555,"dataGaLocation":528},"#contact","switch",{"altText":530,"config":557},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":559},{"src":560,"dataGaName":533,"dataGaLocation":528},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":562,"mobileIcon":567,"desktopIcon":569},{"text":563,"config":564},"料金ページに戻る",{"href":299,"dataGaName":565,"dataGaLocation":528,"icon":566},"back to pricing","GoBack",{"altText":530,"config":568},{"src":532,"dataGaName":533,"dataGaLocation":528},{"altText":530,"config":570},{"src":536,"dataGaName":533,"dataGaLocation":528},{"title":572,"button":573,"config":577},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":61,"config":574},{"href":575,"dataGaName":576,"dataGaLocation":150},"/ja-jp/gitlab-orbit/","orbit",{"layout":578,"disabled":29},"release",{"data":580},{"text":581,"source":582,"edit":588,"contribute":593,"config":598,"items":603,"minimal":811},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":583,"config":584},"ページのソースを表示",{"href":585,"dataGaName":586,"dataGaLocation":587},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":589,"config":590},"このページを編集",{"href":591,"dataGaName":592,"dataGaLocation":587},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":594,"config":595},"ご協力をお願いします",{"href":596,"dataGaName":597,"dataGaLocation":587},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":599,"facebook":600,"youtube":601,"linkedin":602},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[604,649,701,744,778],{"title":297,"links":605,"subMenu":620},[606,610,615],{"text":607,"config":608},"プランの表示",{"href":299,"dataGaName":609,"dataGaLocation":587},"view plans",{"text":611,"config":612},"Premiumを選ぶ理由",{"href":613,"dataGaName":614,"dataGaLocation":587},"/ja-jp/pricing/premium/","why premium",{"text":616,"config":617},"Ultimateを選ぶ理由",{"href":618,"dataGaName":619,"dataGaLocation":587},"/ja-jp/pricing/ultimate/","why ultimate",[621],{"title":470,"links":622},[623,625,627,629,634,639,644],{"text":470,"config":624},{"href":479,"dataGaName":160,"dataGaLocation":587},{"text":482,"config":626},{"href":484,"dataGaName":485,"dataGaLocation":587},{"text":487,"config":628},{"href":489,"dataGaName":490,"dataGaLocation":587},{"text":630,"config":631},"ステータス",{"href":632,"dataGaName":633,"dataGaLocation":587},"https://status.gitlab.com/","status",{"text":635,"config":636},"利用規約",{"href":637,"dataGaName":638,"dataGaLocation":587},"/terms/","terms of use",{"text":640,"config":641},"プライバシーに関する声明",{"href":642,"dataGaName":643,"dataGaLocation":587},"/ja-jp/privacy/","privacy statement",{"text":645,"config":646},"Cookie 優先設定",{"dataGaName":647,"dataGaLocation":587,"id":648,"isOneTrustButton":139},"cookie preferences","ot-sdk-btn",{"title":196,"links":650,"subMenu":659},[651,655],{"text":652,"config":653},"DevSecOpsプラットフォーム",{"href":179,"dataGaName":654,"dataGaLocation":587},"devsecops platform",{"text":656,"config":657},"AI支援開発",{"href":186,"dataGaName":658,"dataGaLocation":587},"ai-assisted development",[660],{"title":661,"links":662},"トピック",[663,666,671,676,681,686,691,696],{"text":17,"config":664},{"href":19,"dataGaName":665,"dataGaLocation":587},"cicd",{"text":667,"config":668},"GitOps",{"href":669,"dataGaName":670,"dataGaLocation":587},"/ja-jp/topics/gitops/","gitops",{"text":672,"config":673},"DevOps",{"href":674,"dataGaName":675,"dataGaLocation":587},"/ja-jp/topics/devops/","devops",{"text":677,"config":678},"バージョン管理",{"href":679,"dataGaName":680,"dataGaLocation":587},"/ja-jp/topics/version-control/","version control",{"text":682,"config":683},"DevSecOps",{"href":684,"dataGaName":685,"dataGaLocation":587},"/ja-jp/topics/devsecops/","devsecops",{"text":687,"config":688},"クラウドネイティブ",{"href":689,"dataGaName":690,"dataGaLocation":587},"/ja-jp/topics/cloud-native/","cloud native",{"text":692,"config":693},"コーディングのためのAI",{"href":694,"dataGaName":695,"dataGaLocation":587},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":697,"config":698},"エージェント型AI",{"href":699,"dataGaName":700,"dataGaLocation":587},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":702,"links":703},"ソリューション",[704,707,709,714,718,721,724,727,729,731,734,739],{"text":240,"config":705},{"href":235,"dataGaName":706,"dataGaLocation":587},"Application Security Testing",{"text":227,"config":708},{"href":212,"dataGaName":213,"dataGaLocation":587},{"text":710,"config":711},"アジャイル開発",{"href":712,"dataGaName":713,"dataGaLocation":587},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":715,"config":716},"SCM",{"href":224,"dataGaName":717,"dataGaLocation":587},"source code management",{"text":17,"config":719},{"href":217,"dataGaName":720,"dataGaLocation":587},"continuous integration & delivery",{"text":266,"config":722},{"href":268,"dataGaName":723,"dataGaLocation":587},"value stream management",{"text":667,"config":725},{"href":726,"dataGaName":670,"dataGaLocation":587},"/ja-jp/solutions/gitops/",{"text":279,"config":728},{"href":282,"dataGaName":283,"dataGaLocation":587},{"text":285,"config":730},{"href":288,"dataGaName":289,"dataGaLocation":587},{"text":732,"config":733},"公共機関",{"href":294,"dataGaName":295,"dataGaLocation":587},{"text":735,"config":736},"教育",{"href":737,"dataGaName":738,"dataGaLocation":587},"/ja-jp/solutions/education/","education",{"text":740,"config":741},"金融サービス",{"href":742,"dataGaName":743,"dataGaLocation":587},"/ja-jp/solutions/finance/","financial services",{"title":745,"links":746},"リソース",[747,749,751,753,757,759,762,764,766,768,770,772,774,776],{"text":314,"config":748},{"href":316,"dataGaName":317,"dataGaLocation":587},{"text":319,"config":750},{"href":321,"dataGaName":322,"dataGaLocation":587},{"text":324,"config":752},{"href":326,"dataGaName":327,"dataGaLocation":587},{"text":329,"config":754},{"href":755,"dataGaName":756,"dataGaLocation":587},"https://docs.gitlab.com/ja-jp","docs",{"text":352,"config":758},{"href":354,"dataGaName":355,"dataGaLocation":587},{"text":760,"config":761},"最新リリース",{"href":411,"dataGaName":412,"dataGaLocation":587},{"text":347,"config":763},{"href":349,"dataGaName":350,"dataGaLocation":587},{"text":366,"config":765},{"href":368,"dataGaName":369,"dataGaLocation":587},{"text":374,"config":767},{"href":376,"dataGaName":377,"dataGaLocation":587},{"text":379,"config":769},{"href":381,"dataGaName":382,"dataGaLocation":587},{"text":384,"config":771},{"href":386,"dataGaName":387,"dataGaLocation":587},{"text":389,"config":773},{"href":391,"dataGaName":392,"dataGaLocation":587},{"text":394,"config":775},{"href":80,"dataGaName":396,"dataGaLocation":587},{"text":398,"config":777},{"href":400,"dataGaName":401,"dataGaLocation":587},{"title":779,"links":780},"会社情報",[781,783,785,787,789,791,795,800,802,804,806],{"text":422,"config":782},{"href":424,"dataGaName":416,"dataGaLocation":587},{"text":427,"config":784},{"href":429,"dataGaName":430,"dataGaLocation":587},{"text":435,"config":786},{"href":437,"dataGaName":438,"dataGaLocation":587},{"text":440,"config":788},{"href":442,"dataGaName":443,"dataGaLocation":587},{"text":445,"config":790},{"href":447,"dataGaName":448,"dataGaLocation":587},{"text":792,"config":793},"Sustainability",{"href":794,"dataGaName":792,"dataGaLocation":587},"/sustainability/",{"text":796,"config":797},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":798,"dataGaName":799,"dataGaLocation":587},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":450,"config":801},{"href":452,"dataGaName":453,"dataGaLocation":587},{"text":460,"config":803},{"href":462,"dataGaName":463,"dataGaLocation":587},{"text":465,"config":805},{"href":467,"dataGaName":468,"dataGaLocation":587},{"text":807,"config":808},"現代奴隷制の透明性に関する声明",{"href":809,"dataGaName":810,"dataGaLocation":587},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":812},[813,815,818],{"text":635,"config":814},{"href":637,"dataGaName":638,"dataGaLocation":587},{"text":816,"config":817},"Cookieの設定",{"dataGaName":647,"dataGaLocation":587,"id":648,"isOneTrustButton":139},{"text":640,"config":819},{"href":642,"dataGaName":643,"dataGaLocation":587},{"header":821,"blurb":822,"button":823,"secondaryButton":827},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":152,"config":824},{"href":825,"dataGaName":155,"dataGaLocation":826},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":470,"config":828},{"href":479,"dataGaName":160,"dataGaLocation":826},1786803772643]