![](/rp/kFAqShRrnkQMbH6NYLBYoJ3lq9s.png)
Deployments - Kubernetes
2025年1月30日 · A Deployment provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment, and the Deployment Controller changes the actual state to the desired state at a controlled rate. You can define Deployments to create new ReplicaSets, or to remove existing Deployments and adopt all their resources with new ...
kubectl create deployment | Kubernetes
2024年12月12日 · Synopsis Create a deployment with the specified name. kubectl create deployment NAME --image=image -- [COMMAND] [args...]
Run a Stateless Application Using a Deployment - Kubernetes
2023年8月24日 · This page shows how to run an application using a Kubernetes Deployment object. Objectives Create an nginx deployment. Use kubectl to list information about the deployment. Update the deployment. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.
Deploying Application Using Kubernetes - Full Project Tutorial
2024年2月5日 · In this project, we will deploy a MongoDB database application using Kubernetes in a local Minikube Kubernetes Cluster. Minikube is a one-node Kubernetes cluster where master processes and work processes both run on one node. You can choose any other local Cluster like Kind as per your requirements.
Kubernetes deployment: How it works, tutorial, and best practices
2024年2月16日 · Deployments for Kubernetes (also known as ‘K8s’), work differently to typical deployments. On this page, we explain: The concept and components of a Kubernetes deployment. What a manifest file is and how it deploys to Kubernetes. The difference between the Kubernetes deployment object and pods and ReplicaSets.
Kubernetes Deployment: How It Works and 5 Deployment …
2023年11月8日 · Kubernetes deployment is sometimes taken to mean the general process of deploying applications on Kubernetes. However, in the Kubernetes community, “Kubernetes …
Kubernetes Deployment Examples: Create, Update, Rollback
A Kubernetes deployment is a higher-level abstraction that manages the lifecycle of containerized applications using replica sets and pods. Deployments provide declarative updates for applications, enable automated rollouts and rollbacks, and maintain the desired state for …
Guide to Kubernetes Deployment Types and Concepts
2024年3月20日 · What is a Kubernetes Deployment? A Kubernetes deployment represents the desired state for your application pods and ReplicaSets. These deployments allow you to declare how many replicas of a pod should be running at a given time. If pods fail or need to be updated, the deployment ensures the desired state is maintained by starting new pods.
Deploying an Application on Kubernetes: A Complete Guide!
2023年2月13日 · Today, we will see how to automate simple application deployment on Kubernetes using Harness. We will use our sample application that is already in the GitHub repository. We will use a Kubernetes cluster to deploy our application.
Kubernetes Deployment Tutorial For Beginners - DevOpsCube
2018年11月29日 · Kubernetes deployment is an abstraction layer for the pods. The main purpose of the deployment object is to maintain the resources declared in the deployment configuration in its desired state. A deployment configuration can be of YAML or JSON format. A Deployment can schedule multiple pods. A pod as a unit cannot scale by itself.
- 某些结果已被删除