You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
1.8 KiB

  1. # YAML files used to deploy to k8s
  2. This is just a brief enumeration of the configuration files used to create the k8s objects. Use as reference to find where specific object is.
  3. - `deployments.yaml` Contains the definition of all deployments of the eShopOnContainers. Do not contain any infrastructure deployment (so no SQL, Redis, ...).
  4. - `services.yaml` Contains the definition of all services of the eShopOnContainers. Do not contain any infrastructure service (so no SQL, Redis, ...).
  5. - `basket-data.yaml` Contains the definition of the Redis (used by basket.api) deployment and service
  6. - `nosql-data.yaml` Contains the definition of the Mongodb (used by locations and marketing) deployment and service
  7. - `sql-data.yaml` Contains the definition of the SQL server deployment and service
  8. - `rabbitmq.yaml` Contains the definition of the RabbitMQ deployment and service
  9. - `keystore-data.yaml` Contains the deployment and service definition of the Redis used to mantain coherence between all the ASP.NET Identity keystores.
  10. - `conf_local.yaml` Contains the configuration map that configures all the Pods to use "local" containers (that is all containers in k8s)
  11. - `conf_cloud.yaml` Contains the configuration map that configures all the Pods to use "cloud" resources (that is use Azure resources instead infrastructure containers). This file is provided with no valid values, just for example.
  12. - `frontend.yaml` Contains the deployment and service definition of the NGINX frontend used as reverse-proxy
  13. - For more information what kubernetes deployments are, read [Kubernetes help](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/)
  14. - For more information what kubernetes services are, read [Kubernetes help](https://kubernetes.io/docs/concepts/services-networking/service/)