[{"data":1,"prerenderedAt":1142},["ShallowReactive",2],{"/ja-jp/blog/a-ci-component-builders-journey":3,"navigation-ja-jp":359,"banner-ja-jp":788,"footer-ja-jp":796,"blog-post-authors-ja-jp-Darwin Sanoy":1038,"blog-related-posts-ja-jp-a-ci-component-builders-journey":1055,"blog-promotions-ja-jp":1079,"next-steps-ja-jp":1133},{"id":4,"title":5,"authors":6,"body":8,"category":337,"date":338,"description":339,"extension":340,"externalUrl":341,"faq":341,"featured":342,"heroImage":343,"meta":344,"navigation":345,"path":346,"seo":347,"slug":351,"stem":352,"tags":353,"template":357,"updatedDate":341,"__hash__":358},"blogPosts/ja-jp/blog/a-ci-component-builders-journey.md","CI/CDコンポーネント開発者が歩んだ道",[7],"Darwin Sanoy",{"type":9,"value":10,"toc":311},"minimark",[11,15,18,28,36,39,59,63,66,76,79,88,91,100,108,117,124,133,136,145,148,157,160,169,175,181,184,187,198,201,205,230,234,246,249,271,274,277],[12,13,14],"p",{},"父は重機整備士でしたが、業界にまだ専用ツールが存在しない難しい作業のために、自ら道具を作ってしまうことがよくありました。その姿が、いつも不思議で印象的でした。まさか自分がIT分野でツール作りに情熱を注ぐようになるとは、当時は思いもしませんでしたが、今やそれが長年にわたる喜びの一つになっています。",[12,16,17],{},"GitLab を使い始めてから4年以上、CI/CDのインクルード可能な共有テンプレートを作り続けてきました。これらのテンプレートは、Node.js の NPM、Python の PyPI、.NET の NuGet といったアプリケーション言語の依存関係マネージャーと同様に、他のユーザーが直接依存できる形で設計されています。",[12,19,20,21,27],{},"GitLab 自体も、",[22,23,26],"a",{"href":24,"rel":25},"https://docs.gitlab.com/topics/autodevops/",[],"Auto DevOps"," やセキュリティスキャンツール群を通じて、こうした共有CI依存関係の構築に長年の実績を持っています。",[12,29,30,35],{},[22,31,34],{"href":32,"rel":33},"https://about.gitlab.com/blog/ci-cd-catalog-goes-ga-no-more-building-pipelines-from-scratch/",[],"GitLab CI/CDカタログ","の登場により、この長年のアプローチが正式な仕組みとして整備され、誰もがGitLab CI/CDコンポーネントを世界中のユーザーに向けて公開できるようになりました。",[12,37,38],{},"共有テンプレートアプローチと比較した場合の主なアップグレードポイントは次のとおりです。",[40,41,42,50,53],"ul",{},[43,44,45,49],"li",{},[46,47,48],"strong",{},"コンポーネントの独立バージョン管理","は、コンテナバージョンの継承に依存しない新しいバージョニングの仕組みです。GitLab CI/CDコンポーネントのバージョンは、CIコードと任意の数のコンテナ（またはコンテナなし）を一つのCI/CDコンポーネントバージョンとしてまとめます。本番グレードのDevSecOpsでは、依存関係のバージョンを固定する機能が不可欠です。これは、本番グレードのアプリケーションコードで依存バージョンを固定するのと、まったく同じ理由・メリットによるものです。",[43,51,52],{},"**グローバルな可視性（制御付き）**は、GitLab.comのカタログ（またはセルフマネージドインスタンスでは社内全体）を通じて利用できます。個々のコンポーネントの可視性は、ソースプロジェクトのセキュリティ設定にも依存するため、セキュアなグループにコンポーネントを公開することも可能です。",[43,54,55,58],{},[46,56,57],{},"カタログメタデータ","は、ほとんどのコード共有の仕組みと同様に、どのコンポーネントを使用するかを判断するために必要なデータです。",[60,61,62],"h2",{"id":62},"コードを見てみましょう",[12,64,65],{},"説明よりも実例を示すのが好みなので、いくつかのコンポーネント例を見てみましょう。いずれもソースを公開しています（タイトルをクリックするとコンポーネントにアクセスできます）。",[67,68,70,71],"h3",{"id":69},"_1-hello-world","1. ",[22,72,75],{"href":73,"rel":74},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/hello-world",[],"Hello World",[12,77,78],{},"最小構成のコンポーネントとして、その結果とソースの両方を示せる Hello World コンポーネントがまだ存在しないことに気づいたため、作成しました。この例では、CIコードのみを「コンポーネント化」する方法を示しています。",[67,80,82,83],{"id":81},"_2-hello-world-container","2. ",[22,84,87],{"href":85,"rel":86},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/hello-world-container",[],"Hello World Container",[12,89,90],{},"CI/CDコンポーネントが完全に機能するためにコンテナが必要な場合があります。この例では、コンポーネント自体と同じプロジェクトで公開されるコンテナが含まれています。",[67,92,94,95],{"id":93},"_3-gitversion-ultimate-auto-semversioning","3. ",[22,96,99],{"href":97,"rel":98},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/ultimate-auto-semversioning",[],"GitVersion Ultimate Auto Semversioning",[12,101,102,103,107],{},"このコンポーネントは、老舗の「GitVersion」ユーティリティを自動化するものです。GitVersion は、最後のバージョンを保存することなく、次のセマンティックバージョンを完全に自動で選択します。多くの本番候補が同時に進行しているような忙しいリポジトリでも対応できます。このコンポーネントが従う設計原則の一つは「最小設定」、つまり「設定ゼロで最も有用なことをデフォルトで行う」というものです。プロジェクトに ",[104,105,106],"code",{},"GitVersion.yml"," が存在しない場合、GitVersion に不慣れなユーザーにとって最も有用な出発点となるファイルをコンポーネントが自動生成します。",[67,109,111,112],{"id":110},"_4-amazon-codeguru-secure-sast-scanner","4. ",[22,113,116],{"href":114,"rel":115},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/aws/amazon-codeguru-secure-sast",[],"Amazon CodeGuru Secure SAST Scanner",[12,118,119,120,123],{},"このコンポーネントはセキュリティスキャナーであり、近年実践してきたセキュリティスキャンのベストプラクティスに従っています。たとえば、GitLab Ultimate のライセンスが検出された場合、スキャナーは GitLab の SAST JSON 形式で出力し、ネイティブの GitLab スキャナーと同様にマージリクエストやダッシュボードに結果を統合します。また、セキュリティポリシーによるマージ承認の対象にもなります。GitLab Ultimate のライセンスがない場合は、パイプラインの「テスト結果」タブで基本的な差分なしの検出結果を確認できる JUNIT XML 形式で出力します。さらに、スキャン可能なファイル種別が存在する場合にのみ動作し、GitLab の ",[104,121,122],{},"SAST_DISABLED"," プロパティがオンになっている場合は無効化されます。",[67,125,127,128],{"id":126},"_5-checkov-iac-sast","5. ",[22,129,132],{"href":130,"rel":131},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/checkov-iac-sast",[],"Checkov IaC SAST",[12,134,135],{},"Checkov IaC SAST も同様のセキュリティスキャナーコンポーネントで、上記のセキュリティスキャナー原則に従いつつ、スキャン可能なファイル種別に特化しています。これらのコンポーネントの重要なベストプラクティスの一つは、安定性のためにコンテナタグを固定することです。ただし、デフォルト値を持つ「コンポーネントインプット」を通じて行うことで、コンポーネントユーザーが最後にテストされたバージョンより新しいまたは古いバージョンでテストしたり、特定バージョンに固定したりできるようにしています。つまり、共有依存関係として安定性を提供しつつ、柔軟性も兼ね備えているということです。",[67,137,139,140],{"id":138},"_6-super-linter","6. ",[22,141,144],{"href":142,"rel":143},"https://gitlab.com/guided-explorations/ci-components/super-linter",[],"Super-Linter",[12,146,147],{},"Super-Linter は、多くの言語向けのリンターを集めたコミュニティ主導のコンポーネントです。もともと GitHub Action として始まったため、この例はオープンソースの GitHub Action を GitLab CI/CDコンポーネントに移植する手軽さを示すものでもあります。私のコンポーネントの多くで大切にしているベストプラクティスの一つは、コンポーネントが動作している状態のサンプルコードへのリンクを必ず提供することです。これにより、アップデート時のテストも容易になります。",[67,149,151,152],{"id":150},"_7-kaniko","7. ",[22,153,156],{"href":154,"rel":155},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/kaniko",[],"Kaniko",[12,158,159],{},"Kaniko は、Docker-in-Docker（DinD）の特権モードを必要とせずにコンテナをビルドできるコンテナです。このコンポーネントは、多くの OpenContainers ラベルとマルチアーキテクチャビルドをサポートしています。",[67,161,163,164],{"id":162},"_8-ci-component-publishing-utilities","8. ",[22,165,168],{"href":166,"rel":167},"https://gitlab.com/explore/catalog/guided-explorations/ci-components/ci-component-pub",[],"CI Component Publishing Utilities",[12,170,171,172,174],{},"コンポーネントを作るにつれ、「コンポーネント公開用のCIコード」が何度も重複していることに気づき、それ自体をコンポーネント化する候補になりました。ここに挙げた他のコンポーネントはすべて、このコンポーネントを活用しています。また、このコンポーネント自身もコンポーネントを使用しており、",[46,173,99],{}," を使って次のバージョンを取得しています。",[12,176,177,178,180],{},"なお、CI Component Publishing Utilities は自分自身を公開します。私の多くのコンポーネントでは、標準の「インプット」READMEセクションを「インプットと設定」に拡張し、設定がインプット経由かどうかを示す列を追加しています。インプットを優先するのが原則ですが、変数の方が柔軟性が高い場合や、ユーティリティがすでにサポートしている環境変数を通じてユーザーが主要な設定を行えることを文書化したい場合もあります。CI Component Publishing Utilities は ",[46,179,156],{}," CI コンポーネントも使用しており、プロジェクトのルートに Dockerfile が見つかった場合（または変数でパスを指定した場合）に、同じバージョンのコンテナをビルドします。これにより、コンポーネントとそれをサポートするコンテナのバージョンが同期されます。マルチアーキテクチャのコンテナビルドにも対応しています。詳細は上記のドキュメントをご覧ください！",[60,182,183],{"id":183},"コンポーネントテンプレートを使って始める",[12,185,186],{},"Hello World コンポーネントは、新しいコンポーネントを始める際の個人的なテンプレートとして活用しています。CI Component Publishing Utilities と適切な README が組み込まれています。",[12,188,189,190,193,194,197],{},"CIコードのみのコンポーネントには ",[22,191,75],{"href":73,"rel":192},[]," のソースをコピーして始め、コンテナが必要なものには ",[22,195,87],{"href":85,"rel":196},[]," から始めます。クリーンなコミット履歴を保つため、基本的にソースだけを新しいプロジェクトにコピーしています。",[12,199,200],{},"コンポーネントが安定して十分に開発されたと感じたら、手動でパイプラインを実行し、バージョンを 1.1.0 以上に強制設定します。その後は CI Component Publishing Utilities が自動でバージョンをインクリメントしていきます。",[60,202,204],{"id":203},"ci-コンポーネント開発者のガイドとプラクティス","CI コンポーネント開発者のガイドとプラクティス",[12,206,207,212,213,217,218,223,224,229],{},[22,208,211],{"href":209,"rel":210},"https://gitlab.com/guided-explorations/ci-components/gitlab-profile",[],"Darwin の CI コンポーネント開発者ガイド"," — コンポーネント構築のアプローチを広く公開したいと考え、CI/CDコンポーネントとして公開するという方法を選びました。また、CI/CDコンポーネントのアーキテクチャと ",[22,214,216],{"href":32,"rel":215},[],"CI/CDカタログ","を作成した ",[22,219,222],{"href":220,"rel":221},"https://docs.gitlab.com/ci/components/",[],"GitLab パイプラインオーサリング","チームが、",[22,225,228],{"href":226,"rel":227},"https://docs.gitlab.com/ci/components/#best-practices",[],"CI コンポーネントのベストプラクティス","として優れた内容を公開しています。私のプラクティスはこれらを参照しつつ、自分自身の経験から得た独自のものも多数含まれています。",[60,231,233],{"id":232},"cicdコンポーネントとソースを探す","CI/CDコンポーネントとソースを探す",[12,235,236,239,240,245],{},[22,237,34],{"href":32,"rel":238},[],"の検索機能はまだ改善中ですが、ソースプロジェクトの説明文は自由テキストで検索できます。そこで、すべてのコンポーネントソースプロジェクトの説明に共通テキストを含めることで、",[22,241,244],{"href":242,"rel":243},"https://gitlab.com/explore/catalog?search=Part+of+the+DarwinJS+Builder+Component+Library",[],"カタログ内で作成したコンポーネントを一覧表示","できるようにしました。",[12,247,248],{},"GitLab.com 上の場所にかかわらず、コンポーネントソースを見つけやすくするために次の対策を行っています。",[40,250,251,260],{},[43,252,253,254,259],{},"すべてのプロジェクトに ",[22,255,258],{"href":256,"rel":257},"https://gitlab.com/explore/projects/topics/DarwinJS+Component+Builder+Libary",[],"DarwinJS Component Builder Library"," というリポジトリトピックを追加しています。",[43,261,262,263,270],{},"有機的に発見した ",[22,264,267],{"href":265,"rel":266},"https://gitlab.com/explore/projects/topics/GitLab+CICD+Components",[],[104,268,269],{},"GitLab CICD Components"," タグも付与しています。",[12,272,273],{},"上記の方法はどちらも、コンポーネントとそのソースへのインデックスを提供するのに役立ちます。",[12,275,276],{},"私の CI/CDコンポーネント開発の歩みが、今後の皆さんのお役に立てれば幸いです。",[278,279,280,283],"blockquote",{},[12,281,282],{},"CI/CDカタログとコンポーネントについてさらに詳しく：",[40,284,285,291,298,304],{},[43,286,287],{},[22,288,290],{"href":32,"rel":289},[],"CI/CDカタログがGAに：パイプラインをゼロから作る時代は終わった",[43,292,293],{},[22,294,297],{"href":295,"rel":296},"https://about.gitlab.com/blog/faq-gitlab-ci-cd-catalog/",[],"FAQ: GitLab CI/CDカタログ",[43,299,300],{},[22,301,303],{"href":220,"rel":302},[],"ドキュメント: CI/CDコンポーネントとCI/CDカタログ",[43,305,306],{},[22,307,310],{"href":308,"rel":309},"https://about.gitlab.com/blog/introducing-ci-components/",[],"GitLabのCI/CDコンポーネントの紹介と活用方法",{"title":312,"searchDepth":313,"depth":313,"links":314},"",2,[315,334,335,336],{"id":62,"depth":313,"text":62,"children":316},[317,320,322,324,326,328,330,332],{"id":69,"depth":318,"text":319},3,"1. Hello World",{"id":81,"depth":318,"text":321},"2. Hello World Container",{"id":93,"depth":318,"text":323},"3. GitVersion Ultimate Auto Semversioning",{"id":110,"depth":318,"text":325},"4. Amazon CodeGuru Secure SAST Scanner",{"id":126,"depth":318,"text":327},"5. Checkov IaC SAST",{"id":138,"depth":318,"text":329},"6. Super-Linter",{"id":150,"depth":318,"text":331},"7. Kaniko",{"id":162,"depth":318,"text":333},"8. CI Component Publishing Utilities",{"id":183,"depth":313,"text":183},{"id":203,"depth":313,"text":204},{"id":232,"depth":313,"text":233},"open-source","2024-06-04","共有可能なインクルード型テンプレートを作成してきた開発者が、テンプレートをGitLab CI/CDコンポーネントとCI/CDカタログへ移行した実体験をご紹介します。独立したバージョン管理やグローバルな可視性など、移行によって得られた具体的なメリットも解説します。","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663857/Blog/Hero%20Images/blog-image-template-1800x945__12_.png",{},true,"/ja-jp/blog/a-ci-component-builders-journey",{"title":5,"description":339,"ogTitle":5,"ogDescription":339,"noIndex":342,"ogImage":343,"ogUrl":348,"ogSiteName":349,"ogType":350,"canonicalUrls":348},"https://about.gitlab.com/blog/a-ci-component-builders-journey","https://about.gitlab.com","article","a-ci-component-builders-journey","ja-jp/blog/a-ci-component-builders-journey",[354,355,356],"CI/CD","CI","CD","BlogPost","0ERkHybxfgKfM7u8XEJ-Sx8pTruHzuXhertmef7b9VE",{"logo":360,"freeTrial":365,"sales":370,"login":375,"items":380,"search":708,"minimal":741,"duo":758,"switchNav":767,"pricingDeployment":778},{"config":361},{"href":362,"dataGaName":363,"dataGaLocation":364},"/ja-jp/","gitlab logo","header",{"text":366,"config":367},"無料トライアルを開始",{"href":368,"dataGaName":369,"dataGaLocation":364},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":371,"config":372},"デモをリクエスト",{"href":373,"dataGaName":374,"dataGaLocation":364},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":376,"config":377},"サインイン",{"href":378,"dataGaName":379,"dataGaLocation":364},"https://gitlab.com/users/sign_in/","sign in",[381,410,511,516,630,686],{"text":382,"config":383,"menu":385},"プラットフォーム",{"dataNavLevelOne":384},"platform",{"type":386,"columns":387},"cards",[388,394,402],{"title":382,"description":389,"link":390},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":391,"config":392},"プラットフォームの詳細はこちら",{"href":393,"dataGaName":384,"dataGaLocation":364},"/ja-jp/platform/",{"title":395,"description":396,"link":397},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":398,"config":399},"GitLab Duoのご紹介",{"href":400,"dataGaName":401,"dataGaLocation":364},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":403,"description":404,"link":405},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":406,"config":407},"詳細はこちら",{"href":408,"dataGaName":409,"dataGaLocation":364},"/ja-jp/why-gitlab/","why gitlab",{"text":411,"left":345,"config":412,"menu":414},"製品",{"dataNavLevelOne":413},"solutions",{"type":415,"link":416,"columns":420,"feature":490},"lists",{"text":417,"config":418},"すべてのソリューションを表示",{"href":419,"dataGaName":413,"dataGaLocation":364},"/ja-jp/solutions/",[421,445,468],{"title":422,"description":423,"link":424,"items":429},"自動化","CI/CDと自動化でデプロイを加速",{"config":425},{"icon":426,"href":427,"dataGaName":428,"dataGaLocation":364},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[430,433,436,441],{"text":354,"config":431},{"href":432,"dataGaLocation":364,"dataGaName":354},"/ja-jp/solutions/continuous-integration/",{"text":395,"config":434},{"href":400,"dataGaLocation":364,"dataGaName":435},"gitlab duo agent platform - product menu",{"text":437,"config":438},"ソースコード管理",{"href":439,"dataGaLocation":364,"dataGaName":440},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":442,"config":443},"自動化されたソフトウェアデリバリー",{"href":427,"dataGaLocation":364,"dataGaName":444},"Automated software delivery",{"title":446,"description":447,"link":448,"items":453},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":449},{"href":450,"dataGaName":451,"dataGaLocation":364,"icon":452},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[454,458,463],{"text":455,"config":456},"アプリケーションセキュリティテスト",{"href":450,"dataGaName":457,"dataGaLocation":364},"Application security testing",{"text":459,"config":460},"ソフトウェアサプライチェーンセキュリティ",{"href":461,"dataGaLocation":364,"dataGaName":462},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":464,"config":465},"ソフトウェアコンプライアンス",{"href":466,"dataGaName":467,"dataGaLocation":364},"/ja-jp/solutions/software-compliance/","software compliance",{"title":469,"link":470,"items":475},"測定",{"config":471},{"icon":472,"href":473,"dataGaName":474,"dataGaLocation":364},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[476,480,485],{"text":477,"config":478},"可視性と測定",{"href":473,"dataGaLocation":364,"dataGaName":479},"Visibility and Measurement",{"text":481,"config":482},"バリューストリーム管理",{"href":483,"dataGaLocation":364,"dataGaName":484},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":486,"config":487},"分析とインサイト",{"href":488,"dataGaLocation":364,"dataGaName":489},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":491,"type":415,"items":492},"GitLabが活躍する場所",[493,499,505],{"text":494,"config":495},"大企業",{"icon":496,"href":497,"dataGaLocation":364,"dataGaName":498},"Building","/ja-jp/enterprise/","enterprise",{"text":500,"config":501},"スモールビジネス",{"icon":502,"href":503,"dataGaLocation":364,"dataGaName":504},"Work","/ja-jp/small-business/","small business",{"text":506,"config":507},"公共部門",{"icon":508,"href":509,"dataGaLocation":364,"dataGaName":510},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":512,"config":513},"価格",{"href":514,"dataGaName":515,"dataGaLocation":364,"dataNavLevelOne":515},"/ja-jp/pricing/","pricing",{"text":517,"config":518,"menu":520},"関連リソース",{"dataNavLevelOne":519},"resources",{"type":415,"link":521,"columns":525,"feature":619},{"text":522,"config":523},"すべてのリソースを表示",{"href":524,"dataGaName":519,"dataGaLocation":364},"/ja-jp/resources/",[526,559,586],{"title":527,"items":528},"はじめに",[529,534,539,544,549,554],{"text":530,"config":531},"インストール",{"href":532,"dataGaName":533,"dataGaLocation":364},"/ja-jp/install/","install",{"text":535,"config":536},"クイックスタートガイド",{"href":537,"dataGaName":538,"dataGaLocation":364},"/ja-jp/get-started/","quick setup checklists",{"text":540,"config":541},"学ぶ",{"href":542,"dataGaLocation":364,"dataGaName":543},"https://university.gitlab.com/","learn",{"text":545,"config":546},"製品ドキュメント",{"href":547,"dataGaName":548,"dataGaLocation":364},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":550,"config":551},"ベストプラクティスビデオ",{"href":552,"dataGaName":553,"dataGaLocation":364},"/ja-jp/getting-started-videos/","best practice videos",{"text":555,"config":556},"インテグレーション",{"href":557,"dataGaName":558,"dataGaLocation":364},"/ja-jp/integrations/","integrations",{"title":560,"items":561},"検索する",[562,567,572,577,581],{"text":563,"config":564},"お客様成功事例",{"href":565,"dataGaName":566,"dataGaLocation":364},"/ja-jp/customers/","customer success stories",{"text":568,"config":569},"ブログ",{"href":570,"dataGaName":571,"dataGaLocation":364},"/ja-jp/blog/","blog",{"text":573,"config":574},"Demo Hub",{"href":575,"dataGaName":576,"dataGaLocation":364},"/ja-jp/demo-hub/","demo hub",{"text":578,"config":579},"The Source",{"href":580,"dataGaName":571,"dataGaLocation":364},"/ja-jp/the-source/",{"text":582,"config":583},"リモート",{"href":584,"dataGaName":585,"dataGaLocation":364},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":587,"items":588},"つなげる",[589,594,599,604,609,614],{"text":590,"config":591},"GitLabサービス",{"href":592,"dataGaName":593,"dataGaLocation":364},"/ja-jp/services/","services",{"text":595,"config":596},"コントリビュート",{"href":597,"dataGaName":598,"dataGaLocation":364},"https://contributors.gitlab.com","contribute",{"text":600,"config":601},"コミュニティ",{"href":602,"dataGaName":603,"dataGaLocation":364},"/community/","community",{"text":605,"config":606},"フォーラム",{"href":607,"dataGaName":608,"dataGaLocation":364},"https://forum.gitlab.com/","forum",{"text":610,"config":611},"イベント",{"href":612,"dataGaName":613,"dataGaLocation":364},"/events/","events",{"text":615,"config":616},"パートナー",{"href":617,"dataGaName":618,"dataGaLocation":364},"/ja-jp/partners/","partners",{"config":620,"title":623,"text":624,"link":625},{"background":621,"textColor":622},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":626,"config":627},"最新情報を読む",{"href":628,"dataGaName":629,"dataGaLocation":364},"/ja-jp/whats-new/","whats new",{"text":631,"config":632,"menu":634},"企業情報",{"dataNavLevelOne":633},"company",{"type":415,"columns":635},[636],{"items":637},[638,643,649,651,656,661,666,671,676,681],{"text":639,"config":640},"GitLabについて",{"href":641,"dataGaName":642,"dataGaLocation":364},"/ja-jp/company/","about",{"text":644,"config":645,"footerGa":648},"採用情報",{"href":646,"dataGaName":647,"dataGaLocation":364},"/jobs/","jobs",{"dataGaName":647},{"text":610,"config":650},{"href":612,"dataGaName":613,"dataGaLocation":364},{"text":652,"config":653},"経営陣",{"href":654,"dataGaName":655,"dataGaLocation":364},"/company/team/e-group/","leadership",{"text":657,"config":658},"ハンドブック",{"href":659,"dataGaName":660,"dataGaLocation":364},"https://handbook.gitlab.com/","handbook",{"text":662,"config":663},"投資家向け情報",{"href":664,"dataGaName":665,"dataGaLocation":364},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":667,"config":668},"トラストセンター",{"href":669,"dataGaName":670,"dataGaLocation":364},"/ja-jp/security/","trust center",{"text":672,"config":673},"AI Transparency Center",{"href":674,"dataGaName":675,"dataGaLocation":364},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":677,"config":678},"ニュースレター",{"href":679,"dataGaName":680,"dataGaLocation":364},"/company/contact/#contact-forms","newsletter",{"text":682,"config":683},"プレス",{"href":684,"dataGaName":685,"dataGaLocation":364},"/press/","press",{"text":687,"config":688,"menu":689},"お問い合わせ",{"dataNavLevelOne":633},{"type":415,"columns":690},[691],{"items":692},[693,698,703],{"text":694,"config":695},"お問い合わせはこちら",{"href":696,"dataGaName":697,"dataGaLocation":364},"/ja-jp/sales/","talk to sales",{"text":699,"config":700},"サポートを受ける",{"href":701,"dataGaName":702,"dataGaLocation":364},"https://support.gitlab.com/hc/en-us","support portal",{"text":704,"config":705},"カスタマーポータル",{"href":706,"dataGaName":707,"dataGaLocation":364},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":709,"login":710,"suggestions":717},"閉じる",{"text":711,"link":712},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":713,"config":714},"GitLab.com",{"href":378,"dataGaName":715,"dataGaLocation":716},"search login","search",{"text":718,"default":719},"提案",[720,722,727,729,733,737],{"text":395,"config":721},{"href":400,"dataGaName":395,"dataGaLocation":716},{"text":723,"config":724},"コード提案（AI）",{"href":725,"dataGaName":726,"dataGaLocation":716},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":354,"config":728},{"href":432,"dataGaName":354,"dataGaLocation":716},{"text":730,"config":731},"GitLab on AWS",{"href":732,"dataGaName":730,"dataGaLocation":716},"/ja-jp/partners/technology-partners/aws/",{"text":734,"config":735},"GitLab on Google Cloud",{"href":736,"dataGaName":734,"dataGaLocation":716},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":738,"config":739},"GitLabを選ぶ理由",{"href":408,"dataGaName":740,"dataGaLocation":716},"Why GitLab?",{"freeTrial":742,"mobileIcon":746,"desktopIcon":751,"secondaryButton":754},{"text":366,"config":743},{"href":744,"dataGaName":369,"dataGaLocation":745},"https://gitlab.com/-/trials/new/","nav",{"altText":747,"config":748},"GitLabアイコン",{"src":749,"dataGaName":750,"dataGaLocation":745},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":747,"config":752},{"src":753,"dataGaName":750,"dataGaLocation":745},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":527,"config":755},{"href":756,"dataGaName":757,"dataGaLocation":745},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":759,"mobileIcon":763,"desktopIcon":765},{"text":760,"config":761},"GitLab Duoの詳細について",{"href":400,"dataGaName":762,"dataGaLocation":745},"gitlab duo",{"altText":747,"config":764},{"src":749,"dataGaName":750,"dataGaLocation":745},{"altText":747,"config":766},{"src":753,"dataGaName":750,"dataGaLocation":745},{"button":768,"mobileIcon":773,"desktopIcon":775},{"text":769,"config":770},"/switch",{"href":771,"dataGaName":772,"dataGaLocation":745},"#contact","switch",{"altText":747,"config":774},{"src":749,"dataGaName":750,"dataGaLocation":745},{"altText":747,"config":776},{"src":777,"dataGaName":750,"dataGaLocation":745},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":779,"mobileIcon":784,"desktopIcon":786},{"text":780,"config":781},"料金ページに戻る",{"href":514,"dataGaName":782,"dataGaLocation":745,"icon":783},"back to pricing","GoBack",{"altText":747,"config":785},{"src":749,"dataGaName":750,"dataGaLocation":745},{"altText":747,"config":787},{"src":753,"dataGaName":750,"dataGaLocation":745},{"title":789,"button":790,"config":794},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":406,"config":791},{"href":792,"dataGaName":793,"dataGaLocation":364},"/ja-jp/gitlab-orbit/","orbit",{"layout":795,"disabled":342},"release",{"data":797},{"text":798,"source":799,"edit":805,"contribute":810,"config":815,"items":820,"minimal":1029},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":800,"config":801},"ページのソースを表示",{"href":802,"dataGaName":803,"dataGaLocation":804},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":806,"config":807},"このページを編集",{"href":808,"dataGaName":809,"dataGaLocation":804},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":811,"config":812},"ご協力をお願いします",{"href":813,"dataGaName":814,"dataGaLocation":804},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":816,"facebook":817,"youtube":818,"linkedin":819},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[821,866,919,962,996],{"title":512,"links":822,"subMenu":837},[823,827,832],{"text":824,"config":825},"プランの表示",{"href":514,"dataGaName":826,"dataGaLocation":804},"view plans",{"text":828,"config":829},"Premiumを選ぶ理由",{"href":830,"dataGaName":831,"dataGaLocation":804},"/ja-jp/pricing/premium/","why premium",{"text":833,"config":834},"Ultimateを選ぶ理由",{"href":835,"dataGaName":836,"dataGaLocation":804},"/ja-jp/pricing/ultimate/","why ultimate",[838],{"title":687,"links":839},[840,842,844,846,851,856,861],{"text":687,"config":841},{"href":696,"dataGaName":374,"dataGaLocation":804},{"text":699,"config":843},{"href":701,"dataGaName":702,"dataGaLocation":804},{"text":704,"config":845},{"href":706,"dataGaName":707,"dataGaLocation":804},{"text":847,"config":848},"ステータス",{"href":849,"dataGaName":850,"dataGaLocation":804},"https://status.gitlab.com/","status",{"text":852,"config":853},"利用規約",{"href":854,"dataGaName":855,"dataGaLocation":804},"/terms/","terms of use",{"text":857,"config":858},"プライバシーに関する声明",{"href":859,"dataGaName":860,"dataGaLocation":804},"/ja-jp/privacy/","privacy statement",{"text":862,"config":863},"Cookie 優先設定",{"dataGaName":864,"dataGaLocation":804,"id":865,"isOneTrustButton":345},"cookie preferences","ot-sdk-btn",{"title":411,"links":867,"subMenu":876},[868,872],{"text":869,"config":870},"DevSecOpsプラットフォーム",{"href":393,"dataGaName":871,"dataGaLocation":804},"devsecops platform",{"text":873,"config":874},"AI支援開発",{"href":400,"dataGaName":875,"dataGaLocation":804},"ai-assisted development",[877],{"title":878,"links":879},"トピック",[880,884,889,894,899,904,909,914],{"text":354,"config":881},{"href":882,"dataGaName":883,"dataGaLocation":804},"/ja-jp/topics/ci-cd/","cicd",{"text":885,"config":886},"GitOps",{"href":887,"dataGaName":888,"dataGaLocation":804},"/ja-jp/topics/gitops/","gitops",{"text":890,"config":891},"DevOps",{"href":892,"dataGaName":893,"dataGaLocation":804},"/ja-jp/topics/devops/","devops",{"text":895,"config":896},"バージョン管理",{"href":897,"dataGaName":898,"dataGaLocation":804},"/ja-jp/topics/version-control/","version control",{"text":900,"config":901},"DevSecOps",{"href":902,"dataGaName":903,"dataGaLocation":804},"/ja-jp/topics/devsecops/","devsecops",{"text":905,"config":906},"クラウドネイティブ",{"href":907,"dataGaName":908,"dataGaLocation":804},"/ja-jp/topics/cloud-native/","cloud native",{"text":910,"config":911},"コーディングのためのAI",{"href":912,"dataGaName":913,"dataGaLocation":804},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":915,"config":916},"エージェント型AI",{"href":917,"dataGaName":918,"dataGaLocation":804},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":920,"links":921},"ソリューション",[922,925,927,932,936,939,942,945,947,949,952,957],{"text":455,"config":923},{"href":450,"dataGaName":924,"dataGaLocation":804},"Application Security Testing",{"text":442,"config":926},{"href":427,"dataGaName":428,"dataGaLocation":804},{"text":928,"config":929},"アジャイル開発",{"href":930,"dataGaName":931,"dataGaLocation":804},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":933,"config":934},"SCM",{"href":439,"dataGaName":935,"dataGaLocation":804},"source code management",{"text":354,"config":937},{"href":432,"dataGaName":938,"dataGaLocation":804},"continuous integration & delivery",{"text":481,"config":940},{"href":483,"dataGaName":941,"dataGaLocation":804},"value stream management",{"text":885,"config":943},{"href":944,"dataGaName":888,"dataGaLocation":804},"/ja-jp/solutions/gitops/",{"text":494,"config":946},{"href":497,"dataGaName":498,"dataGaLocation":804},{"text":500,"config":948},{"href":503,"dataGaName":504,"dataGaLocation":804},{"text":950,"config":951},"公共機関",{"href":509,"dataGaName":510,"dataGaLocation":804},{"text":953,"config":954},"教育",{"href":955,"dataGaName":956,"dataGaLocation":804},"/ja-jp/solutions/education/","education",{"text":958,"config":959},"金融サービス",{"href":960,"dataGaName":961,"dataGaLocation":804},"/ja-jp/solutions/finance/","financial services",{"title":963,"links":964},"リソース",[965,967,969,971,975,977,980,982,984,986,988,990,992,994],{"text":530,"config":966},{"href":532,"dataGaName":533,"dataGaLocation":804},{"text":535,"config":968},{"href":537,"dataGaName":538,"dataGaLocation":804},{"text":540,"config":970},{"href":542,"dataGaName":543,"dataGaLocation":804},{"text":545,"config":972},{"href":973,"dataGaName":974,"dataGaLocation":804},"https://docs.gitlab.com/ja-jp","docs",{"text":568,"config":976},{"href":570,"dataGaName":571,"dataGaLocation":804},{"text":978,"config":979},"最新リリース",{"href":628,"dataGaName":629,"dataGaLocation":804},{"text":563,"config":981},{"href":565,"dataGaName":566,"dataGaLocation":804},{"text":582,"config":983},{"href":584,"dataGaName":585,"dataGaLocation":804},{"text":590,"config":985},{"href":592,"dataGaName":593,"dataGaLocation":804},{"text":595,"config":987},{"href":597,"dataGaName":598,"dataGaLocation":804},{"text":600,"config":989},{"href":602,"dataGaName":603,"dataGaLocation":804},{"text":605,"config":991},{"href":607,"dataGaName":608,"dataGaLocation":804},{"text":610,"config":993},{"href":612,"dataGaName":613,"dataGaLocation":804},{"text":615,"config":995},{"href":617,"dataGaName":618,"dataGaLocation":804},{"title":997,"links":998},"会社情報",[999,1001,1003,1005,1007,1009,1013,1018,1020,1022,1024],{"text":639,"config":1000},{"href":641,"dataGaName":633,"dataGaLocation":804},{"text":644,"config":1002},{"href":646,"dataGaName":647,"dataGaLocation":804},{"text":652,"config":1004},{"href":654,"dataGaName":655,"dataGaLocation":804},{"text":657,"config":1006},{"href":659,"dataGaName":660,"dataGaLocation":804},{"text":662,"config":1008},{"href":664,"dataGaName":665,"dataGaLocation":804},{"text":1010,"config":1011},"Sustainability",{"href":1012,"dataGaName":1010,"dataGaLocation":804},"/sustainability/",{"text":1014,"config":1015},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":1016,"dataGaName":1017,"dataGaLocation":804},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":667,"config":1019},{"href":669,"dataGaName":670,"dataGaLocation":804},{"text":677,"config":1021},{"href":679,"dataGaName":680,"dataGaLocation":804},{"text":682,"config":1023},{"href":684,"dataGaName":685,"dataGaLocation":804},{"text":1025,"config":1026},"現代奴隷制の透明性に関する声明",{"href":1027,"dataGaName":1028,"dataGaLocation":804},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1030},[1031,1033,1036],{"text":852,"config":1032},{"href":854,"dataGaName":855,"dataGaLocation":804},{"text":1034,"config":1035},"Cookieの設定",{"dataGaName":864,"dataGaLocation":804,"id":865,"isOneTrustButton":345},{"text":857,"config":1037},{"href":859,"dataGaName":860,"dataGaLocation":804},[1039],{"id":1040,"title":7,"body":341,"config":1041,"content":1043,"description":341,"extension":1049,"meta":1050,"navigation":345,"path":1051,"seo":1052,"stem":1053,"__hash__":1054},"blogAuthors/en-us/blog/authors/darwin-sanoy.yml",{"template":1042},"BlogAuthor",{"role":1044,"name":7,"config":1045},"Field Chief Cloud Architect",{"headshot":1046,"linkedin":1047,"ctfId":1048},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659751/Blog/Author%20Headshots/Darwin-Sanoy-headshot-395-square-gitlab-teampage-avatar.png","https://linkedin.com/in/darwinsanoy","DarwinJS","yml",{},"/en-us/blog/authors/darwin-sanoy",{},"en-us/blog/authors/darwin-sanoy","UkMMwmU5o2e6Y-wBltA9E_z96LvHuB-bG6VW9DsLzIY",[1056,1064,1072],{"title":1057,"description":1058,"heroImage":1059,"category":337,"date":1060,"authors":1061,"slug":1063,"externalUrl":341},"GitLab AIハッカソン2026：受賞者発表","約7,000人の開発者がGitLab Duo Agent Platform上で600以上のAIエージェントとフローを構築したハッカソンの結果をご紹介。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1776457632/llddiylsgwuze0u1rjks.png","2026-04-22",[1062],"Nick Veenhof","gitlab-ai-hackathon-2026-meet-the-winners",{"title":1065,"description":1066,"heroImage":1067,"category":337,"date":1068,"authors":1069,"slug":1071,"externalUrl":341},"git mergeコマンドの基本を徹底解説","この記事では、git mergeコマンドについてコマンドの基本的な使い方からリクエストコードまで解説します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1754287290/averr2ecwl01q2f9lknf.jpg","2025-08-04",[1070],"GitLab Team","git-merge-command-overview",{"title":1073,"description":1074,"heroImage":1075,"category":337,"date":1076,"authors":1077,"slug":1078,"externalUrl":341},"オープンソースソフトウェア（OSS）とは？詳しく解説​","オープンソースの意味や、メリットとデメリットについて、分かりやすく解説します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1752720740/g9x8oi988xuhioglpczi.jpg","2025-07-17",[1070],"what-is-open-source",{"promotions":1080},[1081,1095,1107,1119],{"id":1082,"categories":1083,"header":1085,"text":1086,"button":1087,"image":1092},"ai-modernization",[1084],"ai","AIの真価、組織全体で発揮できていますか？","所要時間は5分以内です",{"text":1088,"config":1089},"AI成熟度スコアを確認する",{"href":1090,"dataGaName":1091,"dataGaLocation":571},"/ja-jp/assessments/ai-modernization-assessment/","modernization assessment",{"config":1093},{"src":1094},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1096,"categories":1097,"header":1099,"text":1086,"button":1100,"image":1104},"devops-modernization",[1098,903],"product","単にツールを管理するだけでなく、イノベーションを提供していますか？",{"text":1101,"config":1102},"DevOps成熟度スコアを確認しましょう",{"href":1103,"dataGaName":1091,"dataGaLocation":571},"/ja-jp/assessments/devops-modernization-assessment/",{"config":1105},{"src":1106},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1108,"categories":1109,"header":1111,"text":1086,"button":1112,"image":1116},"security-modernization",[1110],"security","スピードのためにセキュリティを犠牲にしていませんか？",{"text":1113,"config":1114},"セキュリティ成熟度スコアを確認しましょう",{"href":1115,"dataGaName":1091,"dataGaLocation":571},"/ja-jp/assessments/security-modernization-assessment/",{"config":1117},{"src":1118},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1120,"paths":1121,"header":1124,"text":1125,"button":1126,"image":1131},"github-azure-migration",[1122,1123],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","チームはGitHubのAzure移行に対応できていますか？","GitHubはすでにAzureを基盤として再構築を進めています。それがあなたのチームにとって何を意味するのか、ご確認ください。",{"text":1127,"config":1128},"GitLabとGitHubの比較を見る",{"href":1129,"dataGaName":1130,"dataGaLocation":571},"/ja-jp/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1132},{"src":1106},{"header":1134,"blurb":1135,"button":1136,"secondaryButton":1140},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":366,"config":1137},{"href":1138,"dataGaName":369,"dataGaLocation":1139},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":687,"config":1141},{"href":696,"dataGaName":374,"dataGaLocation":1139},1786803769804]