[{"data":1,"prerenderedAt":817},["ShallowReactive",2],{"/ja-jp/topics/ci-cd/pipeline-as-code":3,"navigation-ja-jp":145,"banner-ja-jp":563,"footer-ja-jp":573,"next-steps-ja-jp":808},{"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/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},"/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","JmYQmusvp16VULqg8Eq7OBuF3MrEAfsNerTy4JLptew",{"logo":146,"freeTrial":151,"sales":156,"login":161,"items":166,"search":483,"minimal":516,"duo":533,"switchNav":542,"pricingDeployment":553},{"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/","sales",{"text":162,"config":163},"サインイン",{"href":164,"dataGaName":165,"dataGaLocation":150},"https://gitlab.com/users/sign_in/","sign in",[167,195,296,301,403,464],{"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":389},{"text":306,"config":307},"すべてのリソースを表示",{"href":308,"dataGaName":70,"dataGaLocation":150},"/ja-jp/resources/",[310,343,361],{"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],{"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},"リモート",{"href":359,"dataGaName":360,"dataGaLocation":150},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":362,"items":363},"つなげる",[364,369,374,379,384],{"text":365,"config":366},"GitLabサービス",{"href":367,"dataGaName":368,"dataGaLocation":150},"/ja-jp/services/","services",{"text":370,"config":371},"コミュニティ",{"href":372,"dataGaName":373,"dataGaLocation":150},"/community/","community",{"text":375,"config":376},"フォーラム",{"href":377,"dataGaName":378,"dataGaLocation":150},"https://forum.gitlab.com/","forum",{"text":380,"config":381},"イベント",{"href":382,"dataGaName":383,"dataGaLocation":150},"/events/","events",{"text":385,"config":386},"パートナー",{"href":387,"dataGaName":388,"dataGaLocation":150},"/ja-jp/partners/","partners",{"config":390,"text":393,"image":394,"link":398},{"background":391,"textColor":392},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":395,"config":396},"ソースプロモカード",{"src":397},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":399,"config":400},"最新情報を読む",{"href":401,"dataGaName":402,"dataGaLocation":150},"/ja-jp/the-source/","the source",{"text":404,"config":405,"menu":407},"会社情報",{"dataNavLevelOne":406},"company",{"type":200,"columns":408},[409],{"items":410},[411,416,422,424,429,434,439,444,449,454,459],{"text":412,"config":413},"GitLabについて",{"href":414,"dataGaName":415,"dataGaLocation":150},"/ja-jp/company/","about",{"text":417,"config":418,"footerGa":421},"採用情報",{"href":419,"dataGaName":420,"dataGaLocation":150},"/jobs/","jobs",{"dataGaName":420},{"text":380,"config":423},{"href":382,"dataGaName":383,"dataGaLocation":150},{"text":425,"config":426},"経営陣",{"href":427,"dataGaName":428,"dataGaLocation":150},"/company/team/e-group/","leadership",{"text":430,"config":431},"チーム",{"href":432,"dataGaName":433,"dataGaLocation":150},"/company/team/","team",{"text":435,"config":436},"ハンドブック",{"href":437,"dataGaName":438,"dataGaLocation":150},"https://handbook.gitlab.com/","handbook",{"text":440,"config":441},"投資家向け情報",{"href":442,"dataGaName":443,"dataGaLocation":150},"https://ir.gitlab.com/","investor relations",{"text":445,"config":446},"トラストセンター",{"href":447,"dataGaName":448,"dataGaLocation":150},"/ja-jp/security/","trust center",{"text":450,"config":451},"AI Transparency Center",{"href":452,"dataGaName":453,"dataGaLocation":150},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":455,"config":456},"ニュースレター",{"href":457,"dataGaName":458,"dataGaLocation":150},"/company/contact/#contact-forms","newsletter",{"text":460,"config":461},"プレス",{"href":462,"dataGaName":463,"dataGaLocation":150},"/press/","press",{"text":157,"config":465,"menu":466},{"dataNavLevelOne":406},{"type":200,"columns":467},[468],{"items":469},[470,473,478],{"text":157,"config":471},{"href":159,"dataGaName":472,"dataGaLocation":150},"talk to sales",{"text":474,"config":475},"サポートを受ける",{"href":476,"dataGaName":477,"dataGaLocation":150},"https://support.gitlab.com","support portal",{"text":479,"config":480},"カスタマーポータル",{"href":481,"dataGaName":482,"dataGaLocation":150},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":484,"login":485,"suggestions":492},"閉じる",{"text":486,"link":487},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":488,"config":489},"GitLab.com",{"href":164,"dataGaName":490,"dataGaLocation":491},"search login","search",{"text":493,"default":494},"提案",[495,497,502,504,508,512],{"text":181,"config":496},{"href":186,"dataGaName":181,"dataGaLocation":491},{"text":498,"config":499},"コード提案（AI）",{"href":500,"dataGaName":501,"dataGaLocation":491},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":17,"config":503},{"href":217,"dataGaName":17,"dataGaLocation":491},{"text":505,"config":506},"GitLab on AWS",{"href":507,"dataGaName":505,"dataGaLocation":491},"/ja-jp/partners/technology-partners/aws/",{"text":509,"config":510},"GitLab on Google Cloud",{"href":511,"dataGaName":509,"dataGaLocation":491},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":513,"config":514},"GitLabを選ぶ理由",{"href":193,"dataGaName":515,"dataGaLocation":491},"Why GitLab?",{"freeTrial":517,"mobileIcon":521,"desktopIcon":526,"secondaryButton":529},{"text":152,"config":518},{"href":519,"dataGaName":155,"dataGaLocation":520},"https://gitlab.com/-/trials/new/","nav",{"altText":522,"config":523},"GitLabアイコン",{"src":524,"dataGaName":525,"dataGaLocation":520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":522,"config":527},{"src":528,"dataGaName":525,"dataGaLocation":520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":311,"config":530},{"href":531,"dataGaName":532,"dataGaLocation":520},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":534,"mobileIcon":538,"desktopIcon":540},{"text":535,"config":536},"GitLab Duoの詳細について",{"href":186,"dataGaName":537,"dataGaLocation":520},"gitlab duo",{"altText":522,"config":539},{"src":524,"dataGaName":525,"dataGaLocation":520},{"altText":522,"config":541},{"src":528,"dataGaName":525,"dataGaLocation":520},{"button":543,"mobileIcon":548,"desktopIcon":550},{"text":544,"config":545},"/switch",{"href":546,"dataGaName":547,"dataGaLocation":520},"#contact","switch",{"altText":522,"config":549},{"src":524,"dataGaName":525,"dataGaLocation":520},{"altText":522,"config":551},{"src":552,"dataGaName":525,"dataGaLocation":520},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":554,"mobileIcon":559,"desktopIcon":561},{"text":555,"config":556},"価格ページに戻る",{"href":299,"dataGaName":557,"dataGaLocation":520,"icon":558},"back to pricing","GoBack",{"altText":522,"config":560},{"src":524,"dataGaName":525,"dataGaLocation":520},{"altText":522,"config":562},{"src":528,"dataGaName":525,"dataGaLocation":520},{"title":564,"button":565,"config":570},"エージェント型AIがソフトウェア配信をどのように変革するかをご覧ください",{"text":566,"config":567},"6月10日のGitLab Transcendに申し込む",{"href":568,"dataGaName":569,"dataGaLocation":150},"/ja-jp/releases/whats-new/#sign-up","transcend event",{"layout":571,"icon":572,"disabled":29},"release","AiStar",{"data":574},{"text":575,"source":576,"edit":582,"contribute":587,"config":592,"items":597,"minimal":799},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":577,"config":578},"ページのソースを表示",{"href":579,"dataGaName":580,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":583,"config":584},"このページを編集",{"href":585,"dataGaName":586,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":588,"config":589},"ご協力をお願いします",{"href":590,"dataGaName":591,"dataGaLocation":581},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":593,"facebook":594,"youtube":595,"linkedin":596},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[598,643,695,738,765],{"title":297,"links":599,"subMenu":614},[600,604,609],{"text":601,"config":602},"プランの表示",{"href":299,"dataGaName":603,"dataGaLocation":581},"view plans",{"text":605,"config":606},"Premiumを選ぶ理由",{"href":607,"dataGaName":608,"dataGaLocation":581},"/ja-jp/pricing/premium/","why premium",{"text":610,"config":611},"Ultimateを選ぶ理由",{"href":612,"dataGaName":613,"dataGaLocation":581},"/ja-jp/pricing/ultimate/","why ultimate",[615],{"title":157,"links":616},[617,619,621,623,628,633,638],{"text":157,"config":618},{"href":159,"dataGaName":160,"dataGaLocation":581},{"text":474,"config":620},{"href":476,"dataGaName":477,"dataGaLocation":581},{"text":479,"config":622},{"href":481,"dataGaName":482,"dataGaLocation":581},{"text":624,"config":625},"ステータス",{"href":626,"dataGaName":627,"dataGaLocation":581},"https://status.gitlab.com/","status",{"text":629,"config":630},"利用規約",{"href":631,"dataGaName":632,"dataGaLocation":581},"/terms/","terms of use",{"text":634,"config":635},"プライバシーに関する声明",{"href":636,"dataGaName":637,"dataGaLocation":581},"/ja-jp/privacy/","privacy statement",{"text":639,"config":640},"Cookie 優先設定",{"dataGaName":641,"dataGaLocation":581,"id":642,"isOneTrustButton":139},"cookie preferences","ot-sdk-btn",{"title":196,"links":644,"subMenu":653},[645,649],{"text":646,"config":647},"DevSecOpsプラットフォーム",{"href":179,"dataGaName":648,"dataGaLocation":581},"devsecops platform",{"text":650,"config":651},"AI支援開発",{"href":186,"dataGaName":652,"dataGaLocation":581},"ai-assisted development",[654],{"title":655,"links":656},"トピック",[657,660,665,670,675,680,685,690],{"text":17,"config":658},{"href":19,"dataGaName":659,"dataGaLocation":581},"cicd",{"text":661,"config":662},"GitOps",{"href":663,"dataGaName":664,"dataGaLocation":581},"/ja-jp/topics/gitops/","gitops",{"text":666,"config":667},"DevOps",{"href":668,"dataGaName":669,"dataGaLocation":581},"/ja-jp/topics/devops/","devops",{"text":671,"config":672},"バージョン管理",{"href":673,"dataGaName":674,"dataGaLocation":581},"/ja-jp/topics/version-control/","version control",{"text":676,"config":677},"DevSecOps",{"href":678,"dataGaName":679,"dataGaLocation":581},"/ja-jp/topics/devsecops/","devsecops",{"text":681,"config":682},"クラウドネイティブ",{"href":683,"dataGaName":684,"dataGaLocation":581},"/ja-jp/topics/cloud-native/","cloud native",{"text":686,"config":687},"コーディングのためのAI",{"href":688,"dataGaName":689,"dataGaLocation":581},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":691,"config":692},"エージェント型AI",{"href":693,"dataGaName":694,"dataGaLocation":581},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":696,"links":697},"ソリューション",[698,701,703,708,712,715,718,721,723,725,728,733],{"text":240,"config":699},{"href":235,"dataGaName":700,"dataGaLocation":581},"Application Security Testing",{"text":227,"config":702},{"href":212,"dataGaName":213,"dataGaLocation":581},{"text":704,"config":705},"アジャイル開発",{"href":706,"dataGaName":707,"dataGaLocation":581},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":709,"config":710},"SCM",{"href":224,"dataGaName":711,"dataGaLocation":581},"source code management",{"text":17,"config":713},{"href":217,"dataGaName":714,"dataGaLocation":581},"continuous integration & delivery",{"text":266,"config":716},{"href":268,"dataGaName":717,"dataGaLocation":581},"value stream management",{"text":661,"config":719},{"href":720,"dataGaName":664,"dataGaLocation":581},"/ja-jp/solutions/gitops/",{"text":279,"config":722},{"href":282,"dataGaName":283,"dataGaLocation":581},{"text":285,"config":724},{"href":288,"dataGaName":289,"dataGaLocation":581},{"text":726,"config":727},"公共機関",{"href":294,"dataGaName":295,"dataGaLocation":581},{"text":729,"config":730},"教育",{"href":731,"dataGaName":732,"dataGaLocation":581},"/ja-jp/solutions/education/","education",{"text":734,"config":735},"金融サービス",{"href":736,"dataGaName":737,"dataGaLocation":581},"/ja-jp/solutions/finance/","financial services",{"title":302,"links":739},[740,742,744,746,749,751,753,755,757,759,761,763],{"text":314,"config":741},{"href":316,"dataGaName":317,"dataGaLocation":581},{"text":319,"config":743},{"href":321,"dataGaName":322,"dataGaLocation":581},{"text":324,"config":745},{"href":326,"dataGaName":327,"dataGaLocation":581},{"text":329,"config":747},{"href":331,"dataGaName":748,"dataGaLocation":581},"docs",{"text":352,"config":750},{"href":354,"dataGaName":355,"dataGaLocation":581},{"text":347,"config":752},{"href":349,"dataGaName":350,"dataGaLocation":581},{"text":357,"config":754},{"href":359,"dataGaName":360,"dataGaLocation":581},{"text":365,"config":756},{"href":367,"dataGaName":368,"dataGaLocation":581},{"text":370,"config":758},{"href":372,"dataGaName":373,"dataGaLocation":581},{"text":375,"config":760},{"href":377,"dataGaName":378,"dataGaLocation":581},{"text":380,"config":762},{"href":382,"dataGaName":383,"dataGaLocation":581},{"text":385,"config":764},{"href":387,"dataGaName":388,"dataGaLocation":581},{"title":404,"links":766},[767,769,771,773,775,777,779,783,788,790,792,794],{"text":412,"config":768},{"href":414,"dataGaName":406,"dataGaLocation":581},{"text":417,"config":770},{"href":419,"dataGaName":420,"dataGaLocation":581},{"text":425,"config":772},{"href":427,"dataGaName":428,"dataGaLocation":581},{"text":430,"config":774},{"href":432,"dataGaName":433,"dataGaLocation":581},{"text":435,"config":776},{"href":437,"dataGaName":438,"dataGaLocation":581},{"text":440,"config":778},{"href":442,"dataGaName":443,"dataGaLocation":581},{"text":780,"config":781},"Sustainability",{"href":782,"dataGaName":780,"dataGaLocation":581},"/sustainability/",{"text":784,"config":785},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":786,"dataGaName":787,"dataGaLocation":581},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":445,"config":789},{"href":447,"dataGaName":448,"dataGaLocation":581},{"text":455,"config":791},{"href":457,"dataGaName":458,"dataGaLocation":581},{"text":460,"config":793},{"href":462,"dataGaName":463,"dataGaLocation":581},{"text":795,"config":796},"現代奴隷制の透明性に関する声明",{"href":797,"dataGaName":798,"dataGaLocation":581},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":800},[801,803,806],{"text":629,"config":802},{"href":631,"dataGaName":632,"dataGaLocation":581},{"text":804,"config":805},"Cookieの設定",{"dataGaName":641,"dataGaLocation":581,"id":642,"isOneTrustButton":139},{"text":634,"config":807},{"href":636,"dataGaName":637,"dataGaLocation":581},{"header":809,"blurb":810,"button":811,"secondaryButton":815},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":152,"config":812},{"href":813,"dataGaName":155,"dataGaLocation":814},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":157,"config":816},{"href":159,"dataGaName":160,"dataGaLocation":814},1777934859200]