Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergk/edp-gitops
https://github.com/sergk/edp-gitops
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sergk/edp-gitops
- Owner: SergK
- Created: 2024-01-19T17:24:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T17:24:54.000Z (about 1 year ago)
- Last Synced: 2024-10-10T14:16:40.989Z (4 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- 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
```