Skip to content

Commit 3932623

Browse files
committed
Index of k8s help files
1 parent c421405 commit 3932623

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

k8s/conf-files.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# YAML files used to deploy to k8s
2+
3+
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.
4+
5+
- `deployments.yaml` Contains the definition of all deployments of the eShopOnContainers. Do not contain any infrastructure deployment (so no SQL, Redis, ...).
6+
- `services.yaml` Contains the definition of all services of the eShopOnContainers. Do not contain any infrastructure service (so no SQL, Redis, ...).
7+
- `basket-data.yaml` Contains the definition of the Redis (used by basket.api) deployment and service
8+
- `nosql-data.yaml` Contains the definition of the Mongodb (used by locations and marketing) deployment and service
9+
- `sql-data.yaml` Contains the definition of the SQL server deployment and service
10+
- `rabbitmq.yaml` Contains the definition of the RabbitMQ deployment and service
11+
- `keystore-data.yaml` Contains the deployment and service definition of the Redis used to mantain coherence between all the ASP.NET Identity keystores.
12+
- `conf_local.yaml` Contains the configuration map that configures all the Pods to use "local" containers (that is all containers in k8s)
13+
- `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.
14+
- `frontend.yaml` Contains the deployment and service definition of the NGINX frontend used as reverse-proxy
15+
16+
- For more information what kubernetes deployments are, read [Kubernetes help](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/)
17+
- For more information what kubernetes services are, read [Kubernetes help](https://kubernetes.io/docs/concepts/services-networking/service/)

k8s/readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ This folder contains files needed to **create** a ACS with Kubernetes in Azure a
77

88
Refer to file [README.k8s.md](./README.k8s.md) for detailed information
99

10-
Refer to file [README.CICD.k8s.md](./README.CICD.k8s.md) for information about how to set a VSTS build for deploying on k8s
10+
Refer to file [README.CICD.k8s.md](./README.CICD.k8s.md) for information about how to set a VSTS build for deploying on k8s
11+
12+
Refer to file [conf-files.md](./conf-files.md) for a brief descriptio of every YAML file in this folder

0 commit comments

Comments
 (0)