0Pricing
Docker & Kubernetes for Developers · Ders

Özel Kaynak Tanımları (CRD'ler)

Alana özgü nesneleri yönetmek üzere kendi özel kaynaklarınızı tanımlayarak Kubernetes işlevlerini genişletin.

Özel Kaynak Tanımları (CRD'ler), CoddyKit'te ücretsiz bir Docker & Kubernetes for Developers dersidir. Bu, 4 dersinin 1. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Docker & Kubernetes for Developers öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Docker & Kubernetes for Developers kursu toplamda 4 dersten oluşur.

Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.

Extend Kubernetes API

Welcome! In this lesson, we'll explore Custom Resource Definitions (CRDs). CRDs allow you to extend Kubernetes by defining your own custom resource types.

Think of it as teaching Kubernetes new words and concepts, so it can manage application-specific objects just like it manages built-in ones like Pods or Deployments.

Why Custom Resources?

Kubernetes provides powerful primitives like Pods, Deployments, and Services. But what if your application needs to manage a unique kind of object, like a database cluster, a serverless function, or a custom build pipeline?

  • Domain-Specific Objects: Define resources tailored to your application's unique needs.
  • Abstraction: Simplify complex application deployments into a single, manageable resource.
  • Kubernetes Native: Leverage Kubernetes's declarative API, tooling (kubectl), and watch mechanisms for your custom objects.

Core vs. Custom Resources

Kubernetes comes with many built-in or 'core' resources you already know:

  • Core Resources: Pod, Deployment, Service, ConfigMap. These are part of the standard Kubernetes API.
  • Custom Resources: These are resources you define using CRDs. They behave just like core resources but represent your own application-specific concepts.

Once a CRD is created, you can create and manage instances of your custom resource using kubectl, just like any other Kubernetes object.

Anatomy of a CRD: Basics

A CRD is itself a Kubernetes resource defined in YAML. Here's what some key fields mean:

  • apiVersion: apiextensions.k8s.io/v1: Specifies the API version for the CRD itself.
  • kind: CustomResourceDefinition: Identifies this YAML as a CRD definition.
  • metadata.name: The unique name for your CRD, typically in the format <plural>.<group>.

Let's look at defining the core specification next.

CRD Anatomy: Group & Versions

The spec section of a CRD defines the custom resource's properties:

  • spec.group: The API group for your custom resource (e.g., example.com). This helps organize your custom resources.
  • spec.versions: A list of supported versions for your custom resource (e.g., v1alpha1, v1). Each version can have its own schema.
  • spec.scope: Defines if your custom resource is Namespaced (like Pods) or Cluster (like Nodes).

CRD Anatomy: Names & Schema

More important fields in the spec:

  • spec.names: Defines how your custom resource will be referred to:
    • plural: The plural name used in kubectl get (e.g., webservers).
    • singular: The singular name (e.g., webserver).
    • kind: The CamelCase name for the resource object (e.g., WebServer).
    • shortNames: Optional, short aliases (e.g., ws).
  • spec.versions[].schema.openAPIV3Schema: This is crucial! It defines the structure and validation rules for your custom resource's data.

Defining a Simple WebServer CRD

Here's a basic CRD for a WebServer resource. Notice how it defines the group, versions, names, and a simple schema for its properties (like image and replicas).

apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: webservers.example.com
spec:
  group: example.com
  versions:
    - name: v1
      served: true
      storage: true
      schema:
        openAPIV3Schema:
          type: object
          properties:
            spec:
              type: object
              properties:
                image:
                  type: string
                replicas:
                  type: integer
              required:
                - image
  scope: Namespaced
  names:
    plural: webservers
    singular: webserver
    kind: WebServer
    shortNames:
      - ws

Applying Your CRD

Once you have your CRD YAML file (e.g., webserver-crd.yaml), you can apply it to your Kubernetes cluster using kubectl. This registers your new resource type with Kubernetes.

It might take a few seconds for the API server to fully acknowledge the new type.

kubectl apply -f webserver-crd.yaml

Creating a Custom Resource

After the CRD is applied, you can create instances of your WebServer custom resource. This YAML defines a specific WebServer object with its own image and replicas values, conforming to the schema you defined.

You can manage this object just like any other Kubernetes resource.

apiVersion: example.com/v1
kind: WebServer
metadata:
  name: my-first-webserver
spec:
  image: nginx:latest
  replicas: 3

Interacting with Custom Resources

Now that you've defined a CRD and created an instance, you can use standard kubectl commands to interact with your custom resources:

  • kubectl get webservers: List all WebServer objects.
  • kubectl get ws: Use the short name.
  • kubectl describe webserver my-first-webserver: Get detailed information about a specific WebServer instance.

This seamless integration is a key benefit of CRDs!

Check Your CRD Knowledge

Which of the following are benefits of using Custom Resource Definitions (CRDs) in Kubernetes?

Recap: Extending Kubernetes

Great job! You've learned about Custom Resource Definitions!

  • CRDs allow you to extend the Kubernetes API with your own custom resource types.
  • They enable Kubernetes to manage domain-specific objects using its native API and tooling.
  • A CRD defines the schema and properties of your custom resource.
  • Once defined, you can create and interact with instances of your custom resource using kubectl.

Next, we'll see how Operators leverage CRDs to automate complex application management!

Sıkça Sorulan Sorular

“Özel Kaynak Tanımları (CRD'ler)” dersi ücretsiz mi?

Evet — “Özel Kaynak Tanımları (CRD'ler)” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Docker & Kubernetes for Developers kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Docker & Kubernetes for Developers kursu toplamda 4 dersten oluşur.

“Özel Kaynak Tanımları (CRD'ler)” dersinde ne öğreneceğim?

Alana özgü nesneleri yönetmek üzere kendi özel kaynaklarınızı tanımlayarak Kubernetes işlevlerini genişletin. Docker & Kubernetes for Developers ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.

Docker & Kubernetes for Developers öğrenmeye başlamak için deneyim gerekli mi?

Önceden deneyim gerekmez. CoddyKit'te Docker & Kubernetes for Developers, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 1. dersidir.

“Özel Kaynak Tanımları (CRD'ler)” dersi ne kadar sürer?

Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.

Bu Docker & Kubernetes for Developers dersinde kod yazıp çalıştırabilir miyim?

Evet. Her Docker & Kubernetes for Developers dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.

Bu kursun tüm dersleri

  1. Özel Kaynak Tanımları (CRD'ler)
  2. Kubernetes'te Operatör deseni
  3. Kubernetes ile sunucusuz yapı (Knative)
  4. Admission Webhook'larıyla API Sunucusunu Genişletme
← Docker & Kubernetes for Developers Sayfasına Dön