Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergk/sk-edp-gitops
https://github.com/sergk/sk-edp-gitops
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/sergk/sk-edp-gitops
- Owner: SergK
- Created: 2024-04-25T11:22:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-25T11:22:18.000Z (9 months ago)
- Last Synced: 2024-10-10T14:17:29.173Z (3 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitOps
This repository contains the GitOps configuration for the `Applications` that are deployed in the cluster. One can override the default values of the applications helm-chart by creating a file with the name `-values.yaml` in the respective folder. Check for more details in the [platform documentation](https://epam.github.io/edp-install/user-guide/gitops/#gitops-usage)
Structure of the repository is as follows:
```bash
//-values.yaml
```For example:
```bash
├── delivery
│ ├── qa
│ │ ├── cart-service-values.yaml
│ │ ├── frontend-values.yaml
│ │ ├── payment-gateway-service-values.yaml
│ │ └── user-service-values.yaml
│ ├── sit
│ │ ├── cart-service-values.yaml
│ │ ├── frontend-values.yaml
│ │ ├── payment-gateway-service-values.yaml
│ │ └── user-service-values.yaml
│ └── uat
│ ├── cart-service-values.yaml
│ ├── frontend-values.yaml
│ ├── payment-gateway-service-values.yaml
│ └── user-service-values.yaml
├── feature1
│ ├── dev
│ │ ├── payment-gateway-service-values.yaml
│ │ └── user-service-values.yaml
│ ├── qa
│ │ ├── payment-gateway-service-values.yaml
│ │ └── user-service-values.yaml
│ └── uat
│ ├── payment-gateway-service-values.yaml
│ └── user-service-values.yaml
└── mypipeline
├── dev
│ ├── cart-service-values.yaml
│ ├── frontend-values.yaml
├── qa
│ ├── cart-service-values.yaml
│ ├── frontend-values.yaml
├── sit
│ ├── cart-service-values.yaml
│ ├── frontend-values.yaml
└── uat
├── cart-service-values.yaml
└── frontend-values.yaml
```