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].
- Code Modification: The process begins by modifying the application's source code^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
- 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]. - Deployment: The new version of the application is deployed to the Kubernetes cluster^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
- Resource Creation: Kubernetes uses the new Docker Container Image to generate the necessary computing resources for the application^[400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md].
Related Concepts¶
- [[Docker]]
- Kubernetes
Sources¶
400-devops__06-Kubernetes__本地開發_Kubernetes_應用程式流程.md