Skip to content

Kubernetes resource provisioning

Kubernetes resource provisioning is the workflow involved in preparing and deploying an application to run within a Kubernetes cluster^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].

Workflow Process

The provisioning process follows a linear sequence of steps, starting from code modification and ending with resource allocation^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].

  1. Code Modification: The process begins by modifying the application's source code^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
  2. Image Creation: With the help of a Dockerfile, a new Docker Container Image is generated from the source code^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
  3. Deployment: The new version of the application is deployed to the Kubernetes cluster^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
  4. Resource Creation: Kubernetes uses the new Docker Container Image to generate the necessary computing resources for the application^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].

Sources

  • 400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md