You can view the deployment status and changes of all Kubernetes resources when you deploy an application in the Application Center module of the Container Service for Kubernetes (ACK) console. You can choose different methods to deploy applications based on data sources. This topic describes how to create an application by using a Git repository.
Prerequisites
Sample repository address
Application orchestration methods used by Git repositories
- Kubernetes-native manifests
. ├── deployment.yaml ├── ingress.yaml └── service.yaml
- Helm charts
. ├── Chart.yaml ├── templates │ ├── deployment.yaml │ ├── _helpers.tpl │ ├── ingress.yaml │ ├── NOTES.txt │ ├── serviceaccount.yaml │ ├── service.yaml │ └── tests │ └── test-connection.yaml ├── values-pro.yaml └── values.yaml
- Kustomize
. ├── base │ ├── deployment.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ └── service.yaml └── overlays ├── pre │ ├── deployment.yaml │ └── kustomization.yaml └── pro ├── deployment.yaml └── kustomization.yaml