[{"data":1,"prerenderedAt":723},["ShallowReactive",2],{"/ja-jp/blog/what-is-kubernetes":3,"navigation-ja-jp":44,"banner-ja-jp":457,"footer-ja-jp":470,"GitLab Japan Team-GitLab":679,"next-steps-ja-jp":702,"footer-source-/ja-jp/blog/what-is-kubernetes/":717},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":16,"config":33,"_id":37,"_type":38,"title":39,"_source":40,"_file":41,"_stem":42,"_extension":43},"/ja-jp/blog/what-is-kubernetes","blog",false,"",{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},"Kubernetes（K8s）とは？その仕組みから利点、使い方まで","Kubernetes（K8s）とは？Kubernetes の読み方から覚えておきたい用語、仕組みやその利点について学びましょう。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749687485/Blog/Hero%20Images/kubernetes.jpg","https://about.gitlab.com/blog/what-is-kubernetes","https://about.gitlab.com","article","\n                        {\n        \"@context\": \"https://schema.org\",\n        \"@type\": \"Article\",\n        \"headline\": \"Kubernetes（K8s）とは？その仕組みから利点、使い方まで\",\n        \"author\": [{\"@type\":\"Person\",\"name\":\"GitLab Japan Team\"},{\"@type\":\"Person\",\"name\":\"GitLab\"}],\n        \"datePublished\": \"2025-04-28\",\n      }",{"title":9,"description":10,"authors":17,"heroImage":11,"date":20,"body":21,"category":22,"tags":23},[18,19],"GitLab Japan Team","GitLab","2025-04-28","## 目次\n\n1. Kubernetesとは？その読み方と用途\n2. Kubernetes（K8s）の基本用語解説\n  - コンテナ、Pod、Node、クラスター\n  - Dockerとの違い\n3. Kubernetesの主な特徴\n  - デプロイの自動化\n  - ハイブリッド / マルチクラウドに対応\n  - 拡張性とプラグインアーキテクチャ\n  - ローリングアップデートとロールバック\n  - 柔軟なスケーラビリティ\n  - リリース後のアプリケーション監視\n4. Kubernetesの利点とは\n  - 生産性の向上\n  - 自己修復機能により障害に耐性\n  - 高い可用性を担保\n  - オンプレミスでも、クラウドでも運用可能\n  - 大量のコンテナを一括管理\n  - DevSecOpsとの親和性が高い\n  - クラウドネイティブなワークロードを安全に保つ\n5. GitLabでKubernetesを統合する\n6. Kubernetes（K8s）のよくある質問\n  - KubernetesとDockerの違いは何ですか？\n  - Kubernetesで何ができますか？\n  - Kubernetesコンテナとは何ですか？\n  - Kubernetesの読み方は？\n\n## Kubernetesとは？その読み方と用途\n\nKubernetesは、「クバネティス」、「クーベネティス」、または「クーバネーティス」と発音します。ギリシャ語のκυβερνήτηςに由来し、「統治者」や「パイロット」といった意味を持ちます。また、K8sと表記されることもあります。  \n\nKubernetesは、一言で表せばソフトウェア開発においてコンテナを操作・管理するもので、コンテナオーケストレーションの役割を果たすオープンソースソフトウェアとして開発されました。Kubernetesは、クラウドネイティブのプログラムの開発に使用します。これを使用することで[マイクロサービス](https://about.gitlab.com/ja-jp/topics/microservices/)アーキテクチャが可能になり、プログラムの開発が高速化できます。  \nでは、Kubernetesについて、もう少し掘り下げて見ていきましょう。\n\n## Kubernetes（K8s）の基本用語解説\n\n### コンテナ、Pod、Node、クラスター\n\nKubernetesは、コンテナをオーケストレーションするためのツールです。オーケストレーションとは、複数のコンピュータシステムやアプリケーション、サービスなどを調整して管理し、頻繁に繰り返される大規模なワークフローやプロセスを実行できるようにすることを指します。では、コンテナとは何でしょう。ソフトウェア開発におけるコンテナ化とは、ソフトウェアのコードをライブラリやフレームワークなどの依存関係にあるすべてのコンポーネントとともにパッケージ化し、それぞれの入れ物、「コンテナ」に隔離することを意味します。コンテナは、完全に機能するポータブルなコンピューティング環境です。また、このコンテナを複数まとめたものがPod、PodをまとめたものがNode、Nodeをまとめたものがクラスタと呼ばれます（以下の図を参照）。\n\n![kubernetesとは](https://res.cloudinary.com/about-gitlab-com/image/upload/v1749687494/Blog/Content%20Images/kubernetes-diagram.svg)\n\n*Kubernetesにおけるコンテナとクラスタの関係を示した図*\n### Dockerとの違い\n\nKuberunetesはコンテナオーケストレーションツールですが、Dockerはコンテナ化ツールの1つです。Dockerはアプリケーションのコンテナ化を行なうとき使用するプラットフォームです。仮想マシンよりも軽量で高速であることや、環境構築が簡単なことから、コンテナ化の主流ツールになっています。\n\n## Kubernetesの主な特徴\n\nKubernetesは、前述したようにコンテナを管理するコンテナオーケストレーションツールで、代表的な機能としては次のようなものが挙げられます。\n\n### デプロイの自動化\n\nKubernetesは、アプリケーションのデプロイ時に、新しいコンテナの作成や既存コンテナの削除を自動で実施します。また、新しく作成したコンテナにも自動でリソースを適用します。\n\n### ハイブリッド / マルチクラウドに対応\n\nクラウドプロバイダーに依存することなく、オンプレミス環境や様々なクラウドサービス（AWS、Azureなど）上で動作します。よって、ハイブリッドクラウドやマルチクラウド環境を簡単に構築、管理することができます。\n\n### 拡張性とプラグインアーキテクチャ\n\n多様なプラグインや拡張機能が利用できます。例えば、CustomResourceDefinitions（CRD）を使って新規にリソースタイプやロジックを追加したり、CNI（Container Network Interface）やCSI（Container Storage Interface）といったプラグインでネットワークやストレージのカスタマイズが可能です。\n\n### ローリングアップデートとロールバック\n\nKubernetesでは、アプリケーションのバージョンを更新する際、ローリングアップデートがそのデフォルトとなります。また、ビルトインでロールバック機構もあります。このため、ライブトラフィックに影響を与えず、ダウンタイムゼロでデプロイを実現できます。\n\n### 柔軟なスケーラビリティ\n\nKubernetesは、大量のコンテナを効率的に管理するためのもので、システムのスケーラビリティが向上できます。スケーラビリティとは、どのくらいシステムの拡張ができるかを示す特性で、Kubernetesではコンテナ化されたアプリケーションの数を増減することでスケーリングします。\n\n### リリース後のアプリケーション監視\n\nPrometheusやGrafanaといった監視ツールを使用することで、アプリケーション固有のメトリクスが監視できます。リリース後のパフォーマンス低下や不具合発見といった事象がアラートされるため、問題に迅速に対処できます。\n\n## Kubernetesの利点とは\n\nKubernetesには次のような7つのメリットがあります。\n\n### 生産性の向上\n\n一つ目のメリットは、アプリケーション開発で生産性が向上できる点にあります。従来の仮想化では、アプリケーションごとにゲストOSを用意する必要がありましたが、Kubernetesでは、アプリケーションを直接コンテナエンジン上にデプロイできるため、サーバーのリソース使用量が抑えられます。\n\n### 自己修復機能により障害に耐性\n\nKubernetesには、PodやNodeに障害が起きた場合、最初の定義（マニフェスト）の状態まで自動修復する機能が備わっています。\n\n### 高い可用性を担保\n\nKubernetesは、複数のNodeの集まりであるクラスターを構成します。あるクラスターで障害が発生した場合、障害が起きたコンテナを自動で再起動させます。また、他のNodeでコンテナを起動させ、処理を引き継ぐ動作も継続できるため、高い可用性が担保できます。\n\n### オンプレミスでも、クラウドでも運用可能\n\nKubernetesは、オンプレミスでも、プライベートクラウド、パブリッククラウドでも利用できます。つまり、自社サーバーでも、クラウドを使っても、どんな環境でも運用可能です。\n\n### 大量のコンテナの一括管理\n\nKubernetesでは、大量のコンテナが一括で管理・運用できます。また、設定ファイルを複数のコンテナ間で共有することによって、設定変更時も正確かつ大量に設定を反映させることが可能です。\n\n### DevSecOpsとの親和性が高い\nDevSecOpsとは、開発と運用を統合するDevOpsにセキュリティを加え、運用を視野に入れながら開発とセキュリティを同時に進め、安心・安全なソフトウェアを迅速にリリースするというコンセプトです。Kubernetesにはアプリケーションの開発と運用の双方に必要とされる機能が多く搭載されているため、DevSecOpsとの親和性が非常に高いという特長があります。\n\n### クラウドネイティブなワークロードを安全に保つ\n\nKubernetesは、クラウドネイティブアーキテクチャに基づいており、クラウドネイティブな情報セキュリティに関するベストプラクティスについて、CNCF（Cloud Native Computing Foundation）からのアドバイスを活用しています。\n\nたとえばKubernetesには、APIやセキュリティコントロールが含まれており、情報セキュリティを管理するポリシーを定義する手段も備わっています。クラウドの利用などでセキュリティ面において懸念が生じても、Kubernetesならユーザーごとにアクセス制限を設定でき、不正アクセスが防止できるため安心です。\n\nまた、Pod Security Standardによりセキュリティに3つのポリシーが定義されています。非常に緩いものから非常に厳しいものまで累積的に定義できます。\n\n## GitLabでKubernetesを統合する\n\nKubernetesクラスターとGitLabを接続すると、アプリの開発・デプロイ・管理・監視ができます。  \nGitLabをKubernetesと連携させる、またはKubernetes内で動作させるには、3つの異なる方法があります。単独で使用することも、組み合わせて使用することもできます。\n\n* GitLabからKubernetesにソフトウェアをデプロイする  \n* Kubernetesを使用してGitLabインスタンスに紐づいたRunnerを管理する  \n* GitLabのアプリケーションとサービスをKubernetesクラスター上で実行する\n\nさらに詳しい情報やお問い合わせは[こちら](https://about.gitlab.com/ja-jp/solutions/kubernetes/)をご覧ください。\n\n## Kubernetes （K8s）のよくある質問\n\n### KubernetesとDockerの違いは何ですか？\n\nDockerはコンテナ化ツールのひとつで、アプリケーションコンテナを構築し、アプリケーションの開発・配布・実行をします。Kubernetesは、より大規模に複数のマイクロサービスを管理するのに使われます。  \nまた、Kubernetesはクラスターで実行され、Dockerはノードで実行されます。Kubernetesの使用目的はコンテナ管理ですが、Dockerの使用目的の一つは、アプリケーションをコンテナに分離することになります。\n\n### Kubernetesで何ができますか？\n\nKubernetesでできることの代表例には下記のようなものが挙げられます。\n\n* 大量のコンテナの一括管理\n* 起動を含めた動作の高速化・軽量化  \n* 自動デプロイ  \n* 自己修復機能により障害に耐性\n* 高い可用性を担保\n* オンプレミスでも、クラウドでも運用可能\n* DevSecOpsとの親和性が高い\n* クラウドネイティブなワークロードを安全に保つ\n\n### Kubernetesコンテナとは何ですか？\n\nソフトウェアのコードをライブラリやフレームワークなどの依存関係にあるすべてのコンポーネントとともにパッケージ化し、それぞれの入れ物、「コンテナ」に隔離することをコンテナ化と言います。Kubernetesコンテナは、完全に機能するポータブルなコンピューティング環境で、さまざまなプラットフォームでデプロイ可能なプログラムとして[マイクロサービス](https://about.gitlab.com/blog/what-are-the-benefits-of-a-microservices-architecture/)アーキテクチャを可能にします（リンクは英語版です）。\n\n### Kubernetesの読み方は？\n\nKubernetesは、「クバネティス」、「クーベネティス」、または「クーバネーティス」と読み、「K8s（ケーエイツ）」と略されます。\n","engineering",[24,25,26,27,28,29,30,31,32],"kubernetes","cloud native","DevOps","CI/CD","GitOps","open source","security","performance","workflow",{"slug":34,"featured":35,"template":36},"what-is-kubernetes",true,"BlogPost","content:ja-jp:blog:what-is-kubernetes.yml","yaml","What Is Kubernetes","content","ja-jp/blog/what-is-kubernetes.yml","ja-jp/blog/what-is-kubernetes","yml",{"_path":45,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"data":47,"_id":453,"_type":38,"title":454,"_source":40,"_file":455,"_stem":456,"_extension":43},"/shared/ja-jp/main-navigation","ja-jp",{"logo":48,"freeTrial":53,"sales":58,"login":63,"items":68,"search":397,"minimal":431,"duo":444},{"config":49},{"href":50,"dataGaName":51,"dataGaLocation":52},"/ja-jp/","gitlab logo","header",{"text":54,"config":55},"無料トライアルを開始",{"href":56,"dataGaName":57,"dataGaLocation":52},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":59,"config":60},"お問い合わせ",{"href":61,"dataGaName":62,"dataGaLocation":52},"/ja-jp/sales/","sales",{"text":64,"config":65},"サインイン",{"href":66,"dataGaName":67,"dataGaLocation":52},"https://gitlab.com/users/sign_in/","sign in",[69,113,209,214,319,379],{"text":70,"config":71,"cards":73,"footer":96},"プラットフォーム",{"dataNavLevelOne":72},"platform",[74,80,88],{"title":70,"description":75,"link":76},"最も包括的かつAIで強化されたDevSecOpsプラットフォーム",{"text":77,"config":78},"プラットフォームを詳しく見る",{"href":79,"dataGaName":72,"dataGaLocation":52},"/ja-jp/platform/",{"title":81,"description":82,"link":83},"GitLab Duo（AI）","開発のすべてのステージでAIを活用し、ソフトウェアをより迅速にビルド",{"text":84,"config":85},"GitLab Duoのご紹介",{"href":86,"dataGaName":87,"dataGaLocation":52},"/ja-jp/gitlab-duo/","gitlab duo ai",{"title":89,"description":90,"link":91},"GitLabが選ばれる理由","GitLabが大企業に選ばれる理由10選",{"text":92,"config":93},"詳細はこちら",{"href":94,"dataGaName":95,"dataGaLocation":52},"/ja-jp/why-gitlab/","why gitlab",{"title":97,"items":98},"利用を開始：",[99,104,109],{"text":100,"config":101},"プラットフォームエンジニアリング",{"href":102,"dataGaName":103,"dataGaLocation":52},"/ja-jp/solutions/platform-engineering/","platform engineering",{"text":105,"config":106},"開発者の経験",{"href":107,"dataGaName":108,"dataGaLocation":52},"/ja-jp/developer-experience/","Developer experience",{"text":110,"config":111},"MLOps",{"href":112,"dataGaName":110,"dataGaLocation":52},"/ja-jp/topics/devops/the-role-of-ai-in-devops/",{"text":114,"left":35,"config":115,"link":117,"lists":121,"footer":191},"製品",{"dataNavLevelOne":116},"solutions",{"text":118,"config":119},"すべてのソリューションを表示",{"href":120,"dataGaName":116,"dataGaLocation":52},"/ja-jp/solutions/",[122,147,169],{"title":123,"description":124,"link":125,"items":130},"自動化","CI/CDと自動化でデプロイを加速",{"config":126},{"icon":127,"href":128,"dataGaName":129,"dataGaLocation":52},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[131,134,138,143],{"text":27,"config":132},{"href":133,"dataGaLocation":52,"dataGaName":27},"/ja-jp/solutions/continuous-integration/",{"text":135,"config":136},"AIアシストによる開発",{"href":86,"dataGaLocation":52,"dataGaName":137},"AI assisted development",{"text":139,"config":140},"ソースコード管理",{"href":141,"dataGaLocation":52,"dataGaName":142},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":144,"config":145},"自動化されたソフトウェアデリバリー",{"href":128,"dataGaLocation":52,"dataGaName":146},"Automated software delivery",{"title":148,"description":149,"link":150,"items":155},"セキュリティ","セキュリティを損なうことなくコードをより迅速に完成",{"config":151},{"href":152,"dataGaName":153,"dataGaLocation":52,"icon":154},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[156,160,165],{"text":157,"config":158},"Application Security Testing",{"href":152,"dataGaName":159,"dataGaLocation":52},"Application security testing",{"text":161,"config":162},"ソフトウェアサプライチェーンの安全性",{"href":163,"dataGaLocation":52,"dataGaName":164},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":166,"config":167},"Software Compliance",{"href":168,"dataGaName":166,"dataGaLocation":52},"/ja-jp/solutions/software-compliance/",{"title":170,"link":171,"items":176},"測定",{"config":172},{"icon":173,"href":174,"dataGaName":175,"dataGaLocation":52},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[177,181,186],{"text":178,"config":179},"可視性と測定",{"href":174,"dataGaLocation":52,"dataGaName":180},"Visibility and Measurement",{"text":182,"config":183},"バリューストリーム管理",{"href":184,"dataGaLocation":52,"dataGaName":185},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":187,"config":188},"分析とインサイト",{"href":189,"dataGaLocation":52,"dataGaName":190},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":192,"items":193},"GitLabが活躍する場所",[194,199,204],{"text":195,"config":196},"Enterprise",{"href":197,"dataGaLocation":52,"dataGaName":198},"/ja-jp/enterprise/","enterprise",{"text":200,"config":201},"スモールビジネス",{"href":202,"dataGaLocation":52,"dataGaName":203},"/ja-jp/small-business/","small business",{"text":205,"config":206},"公共機関",{"href":207,"dataGaLocation":52,"dataGaName":208},"/ja-jp/solutions/public-sector/","public sector",{"text":210,"config":211},"価格",{"href":212,"dataGaName":213,"dataGaLocation":52,"dataNavLevelOne":213},"/ja-jp/pricing/","pricing",{"text":215,"config":216,"link":218,"lists":222,"feature":306},"関連リソース",{"dataNavLevelOne":217},"resources",{"text":219,"config":220},"すべてのリソースを表示",{"href":221,"dataGaName":217,"dataGaLocation":52},"/ja-jp/resources/",[223,256,278],{"title":224,"items":225},"はじめに",[226,231,236,241,246,251],{"text":227,"config":228},"インストール",{"href":229,"dataGaName":230,"dataGaLocation":52},"/ja-jp/install/","install",{"text":232,"config":233},"クイックスタートガイド",{"href":234,"dataGaName":235,"dataGaLocation":52},"/ja-jp/get-started/","quick setup checklists",{"text":237,"config":238},"学ぶ",{"href":239,"dataGaLocation":52,"dataGaName":240},"https://university.gitlab.com/","learn",{"text":242,"config":243},"製品ドキュメント",{"href":244,"dataGaName":245,"dataGaLocation":52},"https://docs.gitlab.com/","product documentation",{"text":247,"config":248},"ベストプラクティスビデオ",{"href":249,"dataGaName":250,"dataGaLocation":52},"/ja-jp/getting-started-videos/","best practice videos",{"text":252,"config":253},"インテグレーション",{"href":254,"dataGaName":255,"dataGaLocation":52},"/ja-jp/integrations/","integrations",{"title":257,"items":258},"検索する",[259,264,268,273],{"text":260,"config":261},"お客様成功事例",{"href":262,"dataGaName":263,"dataGaLocation":52},"/ja-jp/customers/","customer success stories",{"text":265,"config":266},"ブログ",{"href":267,"dataGaName":5,"dataGaLocation":52},"/ja-jp/blog/",{"text":269,"config":270},"リモート",{"href":271,"dataGaName":272,"dataGaLocation":52},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":274,"config":275},"TeamOps",{"href":276,"dataGaName":277,"dataGaLocation":52},"/ja-jp/teamops/","teamops",{"title":279,"items":280},"つなげる",[281,286,291,296,301],{"text":282,"config":283},"GitLabサービス",{"href":284,"dataGaName":285,"dataGaLocation":52},"/ja-jp/services/","services",{"text":287,"config":288},"コミュニティ",{"href":289,"dataGaName":290,"dataGaLocation":52},"/community/","community",{"text":292,"config":293},"フォーラム",{"href":294,"dataGaName":295,"dataGaLocation":52},"https://forum.gitlab.com/","forum",{"text":297,"config":298},"イベント",{"href":299,"dataGaName":300,"dataGaLocation":52},"/events/","events",{"text":302,"config":303},"パートナー",{"href":304,"dataGaName":305,"dataGaLocation":52},"/ja-jp/partners/","partners",{"backgroundColor":307,"textColor":308,"text":309,"image":310,"link":314},"#2f2a6b","#fff","ソフトウェア開発の未来への洞察",{"altText":311,"config":312},"ソースプロモカード",{"src":313},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":315,"config":316},"最新情報を読む",{"href":317,"dataGaName":318,"dataGaLocation":52},"/ja-jp/the-source/","the source",{"text":320,"config":321,"lists":323},"会社情報",{"dataNavLevelOne":322},"company",[324],{"items":325},[326,331,337,339,344,349,354,359,364,369,374],{"text":327,"config":328},"GitLabについて",{"href":329,"dataGaName":330,"dataGaLocation":52},"/ja-jp/company/","about",{"text":332,"config":333,"footerGa":336},"採用情報",{"href":334,"dataGaName":335,"dataGaLocation":52},"/jobs/","jobs",{"dataGaName":335},{"text":297,"config":338},{"href":299,"dataGaName":300,"dataGaLocation":52},{"text":340,"config":341},"経営陣",{"href":342,"dataGaName":343,"dataGaLocation":52},"/company/team/e-group/","leadership",{"text":345,"config":346},"チーム",{"href":347,"dataGaName":348,"dataGaLocation":52},"/company/team/","team",{"text":350,"config":351},"ハンドブック",{"href":352,"dataGaName":353,"dataGaLocation":52},"https://handbook.gitlab.com/","handbook",{"text":355,"config":356},"投資家向け情報",{"href":357,"dataGaName":358,"dataGaLocation":52},"https://ir.gitlab.com/","investor relations",{"text":360,"config":361},"トラストセンター",{"href":362,"dataGaName":363,"dataGaLocation":52},"/ja-jp/security/","trust center",{"text":365,"config":366},"AI Transparency Center",{"href":367,"dataGaName":368,"dataGaLocation":52},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":370,"config":371},"ニュースレター",{"href":372,"dataGaName":373,"dataGaLocation":52},"/company/contact/","newsletter",{"text":375,"config":376},"プレス",{"href":377,"dataGaName":378,"dataGaLocation":52},"/press/","press",{"text":59,"config":380,"lists":381},{"dataNavLevelOne":322},[382],{"items":383},[384,387,392],{"text":59,"config":385},{"href":61,"dataGaName":386,"dataGaLocation":52},"talk to sales",{"text":388,"config":389},"サポートを受ける",{"href":390,"dataGaName":391,"dataGaLocation":52},"/support/","get help",{"text":393,"config":394},"カスタマーポータル",{"href":395,"dataGaName":396,"dataGaLocation":52},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":398,"login":399,"suggestions":406},"閉じる",{"text":400,"link":401},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":402,"config":403},"GitLab.com",{"href":66,"dataGaName":404,"dataGaLocation":405},"search login","search",{"text":407,"default":408},"提案",[409,412,417,419,423,427],{"text":81,"config":410},{"href":86,"dataGaName":411,"dataGaLocation":405},"GitLab Duo (AI)",{"text":413,"config":414},"コード提案（AI）",{"href":415,"dataGaName":416,"dataGaLocation":405},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":27,"config":418},{"href":133,"dataGaName":27,"dataGaLocation":405},{"text":420,"config":421},"GitLab on AWS",{"href":422,"dataGaName":420,"dataGaLocation":405},"/ja-jp/partners/technology-partners/aws/",{"text":424,"config":425},"GitLab on Google Cloud",{"href":426,"dataGaName":424,"dataGaLocation":405},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":428,"config":429},"GitLabを選ぶ理由",{"href":94,"dataGaName":430,"dataGaLocation":405},"Why GitLab?",{"freeTrial":432,"mobileIcon":436,"desktopIcon":441},{"text":54,"config":433},{"href":434,"dataGaName":57,"dataGaLocation":435},"https://gitlab.com/-/trials/new/","nav",{"altText":437,"config":438},"GitLabアイコン",{"src":439,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":437,"config":442},{"src":443,"dataGaName":440,"dataGaLocation":435},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":445,"mobileIcon":449,"desktopIcon":451},{"text":446,"config":447},"GitLab Duoの詳細について",{"href":86,"dataGaName":448,"dataGaLocation":435},"gitlab duo",{"altText":437,"config":450},{"src":439,"dataGaName":440,"dataGaLocation":435},{"altText":437,"config":452},{"src":443,"dataGaName":440,"dataGaLocation":435},"content:shared:ja-jp:main-navigation.yml","Main Navigation","shared/ja-jp/main-navigation.yml","shared/ja-jp/main-navigation",{"_path":458,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"title":459,"button":460,"config":465,"_id":467,"_type":38,"_source":40,"_file":468,"_stem":469,"_extension":43},"/shared/ja-jp/banner","GitLab Duo Agent Platformがパブリックベータ版で利用可能になりました！",{"text":461,"config":462},"ベータ版を試す",{"href":463,"dataGaName":464,"dataGaLocation":52},"/ja-jp/gitlab-duo/agent-platform/","duo banner",{"layout":466},"release","content:shared:ja-jp:banner.yml","shared/ja-jp/banner.yml","shared/ja-jp/banner",{"_path":471,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"data":472,"_id":675,"_type":38,"title":676,"_source":40,"_file":677,"_stem":678,"_extension":43},"/shared/ja-jp/main-footer",{"text":473,"source":474,"edit":480,"contribute":485,"config":490,"items":495,"minimal":667},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":475,"config":476},"ページのソースを表示",{"href":477,"dataGaName":478,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":481,"config":482},"このページを編集",{"href":483,"dataGaName":484,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":486,"config":487},"ご協力をお願いします",{"href":488,"dataGaName":489,"dataGaLocation":479},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":491,"facebook":492,"youtube":493,"linkedin":494},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[496,519,572,604,639],{"title":70,"links":497,"subMenu":502},[498],{"text":499,"config":500},"DevSecOpsプラットフォーム",{"href":79,"dataGaName":501,"dataGaLocation":479},"devsecops platform",[503],{"title":210,"links":504},[505,509,514],{"text":506,"config":507},"プランの表示",{"href":212,"dataGaName":508,"dataGaLocation":479},"view plans",{"text":510,"config":511},"Premiumを選ぶ理由",{"href":512,"dataGaName":513,"dataGaLocation":479},"/ja-jp/pricing/premium/","why premium",{"text":515,"config":516},"Ultimateを選ぶ理由",{"href":517,"dataGaName":518,"dataGaLocation":479},"/ja-jp/pricing/ultimate/","why ultimate",{"title":520,"links":521},"ソリューション",[522,527,530,532,537,542,546,549,552,556,558,560,562,567],{"text":523,"config":524},"デジタルトランスフォーメーション",{"href":525,"dataGaName":526,"dataGaLocation":479},"/ja-jp/topics/digital-transformation/","digital transformation",{"text":528,"config":529},"セキュリティとコンプライアンス",{"href":152,"dataGaName":159,"dataGaLocation":479},{"text":144,"config":531},{"href":128,"dataGaName":129,"dataGaLocation":479},{"text":533,"config":534},"アジャイル開発",{"href":535,"dataGaName":536,"dataGaLocation":479},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":538,"config":539},"クラウドトランスフォーメーション",{"href":540,"dataGaName":541,"dataGaLocation":479},"/ja-jp/topics/cloud-native/","cloud transformation",{"text":543,"config":544},"SCM",{"href":141,"dataGaName":545,"dataGaLocation":479},"source code management",{"text":27,"config":547},{"href":133,"dataGaName":548,"dataGaLocation":479},"continuous integration & delivery",{"text":182,"config":550},{"href":184,"dataGaName":551,"dataGaLocation":479},"value stream management",{"text":28,"config":553},{"href":554,"dataGaName":555,"dataGaLocation":479},"/ja-jp/solutions/gitops/","gitops",{"text":195,"config":557},{"href":197,"dataGaName":198,"dataGaLocation":479},{"text":200,"config":559},{"href":202,"dataGaName":203,"dataGaLocation":479},{"text":205,"config":561},{"href":207,"dataGaName":208,"dataGaLocation":479},{"text":563,"config":564},"教育",{"href":565,"dataGaName":566,"dataGaLocation":479},"/ja-jp/solutions/education/","education",{"text":568,"config":569},"金融サービス",{"href":570,"dataGaName":571,"dataGaLocation":479},"/ja-jp/solutions/finance/","financial services",{"title":215,"links":573},[574,576,578,580,583,585,588,590,592,594,596,598,600,602],{"text":227,"config":575},{"href":229,"dataGaName":230,"dataGaLocation":479},{"text":232,"config":577},{"href":234,"dataGaName":235,"dataGaLocation":479},{"text":237,"config":579},{"href":239,"dataGaName":240,"dataGaLocation":479},{"text":242,"config":581},{"href":244,"dataGaName":582,"dataGaLocation":479},"docs",{"text":265,"config":584},{"href":267,"dataGaName":5},{"text":586,"config":587},"お客様の成功事例",{"href":262,"dataGaLocation":479},{"text":260,"config":589},{"href":262,"dataGaName":263,"dataGaLocation":479},{"text":269,"config":591},{"href":271,"dataGaName":272,"dataGaLocation":479},{"text":282,"config":593},{"href":284,"dataGaName":285,"dataGaLocation":479},{"text":274,"config":595},{"href":276,"dataGaName":277,"dataGaLocation":479},{"text":287,"config":597},{"href":289,"dataGaName":290,"dataGaLocation":479},{"text":292,"config":599},{"href":294,"dataGaName":295,"dataGaLocation":479},{"text":297,"config":601},{"href":299,"dataGaName":300,"dataGaLocation":479},{"text":302,"config":603},{"href":304,"dataGaName":305,"dataGaLocation":479},{"title":605,"links":606},"Company",[607,609,611,613,615,617,619,623,628,630,632,634],{"text":327,"config":608},{"href":329,"dataGaName":322,"dataGaLocation":479},{"text":332,"config":610},{"href":334,"dataGaName":335,"dataGaLocation":479},{"text":340,"config":612},{"href":342,"dataGaName":343,"dataGaLocation":479},{"text":345,"config":614},{"href":347,"dataGaName":348,"dataGaLocation":479},{"text":350,"config":616},{"href":352,"dataGaName":353,"dataGaLocation":479},{"text":355,"config":618},{"href":357,"dataGaName":358,"dataGaLocation":479},{"text":620,"config":621},"Sustainability",{"href":622,"dataGaName":620,"dataGaLocation":479},"/sustainability/",{"text":624,"config":625},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":626,"dataGaName":627,"dataGaLocation":479},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":360,"config":629},{"href":362,"dataGaName":363,"dataGaLocation":479},{"text":370,"config":631},{"href":372,"dataGaName":373,"dataGaLocation":479},{"text":375,"config":633},{"href":377,"dataGaName":378,"dataGaLocation":479},{"text":635,"config":636},"現代奴隷制の透明性に関する声明",{"href":637,"dataGaName":638,"dataGaLocation":479},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":59,"links":640},[641,643,645,647,652,657,662],{"text":59,"config":642},{"href":61,"dataGaName":62,"dataGaLocation":479},{"text":388,"config":644},{"href":390,"dataGaName":391,"dataGaLocation":479},{"text":393,"config":646},{"href":395,"dataGaName":396,"dataGaLocation":479},{"text":648,"config":649},"ステータス",{"href":650,"dataGaName":651,"dataGaLocation":479},"https://status.gitlab.com/","status",{"text":653,"config":654},"利用規約",{"href":655,"dataGaName":656,"dataGaLocation":479},"/terms/","terms of use",{"text":658,"config":659},"プライバシーに関する声明",{"href":660,"dataGaName":661,"dataGaLocation":479},"/ja-jp/privacy/","privacy statement",{"text":663,"config":664},"Cookieの設定",{"dataGaName":665,"dataGaLocation":479,"id":666,"isOneTrustButton":35},"cookie preferences","ot-sdk-btn",{"items":668},[669,671,673],{"text":653,"config":670},{"href":655,"dataGaName":656,"dataGaLocation":479},{"text":658,"config":672},{"href":660,"dataGaName":661,"dataGaLocation":479},{"text":663,"config":674},{"dataGaName":665,"dataGaLocation":479,"id":666,"isOneTrustButton":35},"content:shared:ja-jp:main-footer.yml","Main Footer","shared/ja-jp/main-footer.yml","shared/ja-jp/main-footer",[680,693],{"_path":681,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":683,"config":687,"_id":689,"_type":38,"title":690,"_source":40,"_file":691,"_stem":692,"_extension":43},"/en-us/blog/authors/gitlab-japan-team","authors",{"name":18,"config":684},{"headshot":685,"ctfId":686},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","5YWHF8vG80rluQ41QjgP7V",{"template":688},"BlogAuthor","content:en-us:blog:authors:gitlab-japan-team.yml","Gitlab Japan Team","en-us/blog/authors/gitlab-japan-team.yml","en-us/blog/authors/gitlab-japan-team",{"_path":694,"_dir":682,"_draft":6,"_partial":6,"_locale":7,"content":695,"config":697,"_id":698,"_type":38,"title":699,"_source":40,"_file":700,"_stem":701,"_extension":43},"/en-us/blog/authors/gitlab",{"name":19,"config":696},{"headshot":685,"ctfId":19},{"template":688},"content:en-us:blog:authors:gitlab.yml","Gitlab","en-us/blog/authors/gitlab.yml","en-us/blog/authors/gitlab",{"_path":703,"_dir":46,"_draft":6,"_partial":6,"_locale":7,"header":704,"eyebrow":705,"blurb":706,"button":707,"secondaryButton":711,"_id":713,"_type":38,"title":714,"_source":40,"_file":715,"_stem":716,"_extension":43},"/shared/ja-jp/next-steps","より優れたソフトウェアをより速く提供","フォーチュン100企業の50%以上がGitLabを信頼","インテリジェントなDevSecOpsプラットフォームで\n\n\nチームの可能性を広げましょう。\n",{"text":54,"config":708},{"href":709,"dataGaName":57,"dataGaLocation":710},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":59,"config":712},{"href":61,"dataGaName":62,"dataGaLocation":710},"content:shared:ja-jp:next-steps.yml","Next Steps","shared/ja-jp/next-steps.yml","shared/ja-jp/next-steps",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":718,"content":719,"config":722,"_id":37,"_type":38,"title":39,"_source":40,"_file":41,"_stem":42,"_extension":43},{"title":9,"description":10,"ogTitle":9,"ogDescription":10,"noIndex":6,"ogImage":11,"ogUrl":12,"ogSiteName":13,"ogType":14,"canonicalUrls":12,"schema":15},{"title":9,"description":10,"authors":720,"heroImage":11,"date":20,"body":21,"category":22,"tags":721},[18,19],[24,25,26,27,28,29,30,31,32],{"slug":34,"featured":35,"template":36},1761249137921]