{"id":49137326,"url":"https://github.com/openinfradev/decapod-base-yaml","last_synced_at":"2026-04-21T22:36:07.255Z","repository":{"id":37096798,"uuid":"269377663","full_name":"openinfradev/decapod-base-yaml","owner":"openinfradev","description":"Yaml for DECAPOD (Declarative Application Orchestration \u0026 Delivery )","archived":false,"fork":false,"pushed_at":"2025-03-28T00:56:22.000Z","size":664,"stargazers_count":7,"open_issues_count":0,"forks_count":8,"subscribers_count":11,"default_branch":"develop","last_synced_at":"2026-04-21T08:35:56.083Z","etag":null,"topics":["decapod","kustomize","yaml","yaml-configuration"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openinfradev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-04T14:12:04.000Z","updated_at":"2025-03-27T07:49:59.000Z","dependencies_parsed_at":"2024-04-17T06:39:41.342Z","dependency_job_id":"829f24eb-1062-434f-a064-39ea54e64e17","html_url":"https://github.com/openinfradev/decapod-base-yaml","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/openinfradev/decapod-base-yaml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openinfradev%2Fdecapod-base-yaml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openinfradev%2Fdecapod-base-yaml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openinfradev%2Fdecapod-base-yaml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openinfradev%2Fdecapod-base-yaml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openinfradev","download_url":"https://codeload.github.com/openinfradev/decapod-base-yaml/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openinfradev%2Fdecapod-base-yaml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32113342,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["decapod","kustomize","yaml","yaml-configuration"],"created_at":"2026-04-21T22:36:06.521Z","updated_at":"2026-04-21T22:36:07.248Z","avatar_url":"https://github.com/openinfradev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# decapod-base-yaml\nThis project provides an easy way to create/maintain complex YAML files using kustomize and kustomize plugin.  \nIt works with [decapod-site](https://github.com/openinfradev/decapod-site) which contain differences between each environment (_e.g. development, staging and production environment_).  \n\n## Features\n* `base-yaml` and `site-yaml` structure\n  * `base-yaml` is containig YAML resources and [overlays](https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#overlay).\n  * `site-yaml` contains a [site value](docs/glossary#site-value) and [variant](https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#variant).\n* Qualified [product](docs/glossary.md#product)\n  * LMA(Logging, Monitoring, Alert)\n  * OpenStack\n  * Cloud Console\n\n## Documents\n* [Quick start](docs/quickstart.md)\n* [Concept](docs/concept.md)\n* [Glossary](docs/glossary.md)\n* [Contribution](docs/contribution.md)\n\n## Layout \nAn example of decapod-base-yaml:\n```\n openstack\n ├── base\n │   ├── kustomization.yaml\n │   ├── resources.yaml\n │   └── site-values.yaml\n ├── image\n │   └── image-values.yaml \n └── storage\n     ├── ceph.yaml\n     └── local-path.yaml\n```\n\nAn example of decapod-site:\n```\n dev // site name\n ├── openstack\n     ├── kustomization.yaml\n     ├── ceph.yaml\n     └── site-values.yaml\n```\n## Example\n\nbase(1) + site(2) =\u003e [variant](https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#variant)(3)\n\n1. _decapod-base-yaml/lma/base/resources.yaml_:\n   ```yaml\n   apiVersion: helm.fluxcd.io/v1\n   kind: HelmRelease\n   metadata:\n   name: elasticsearch-operator\n   spec:\n   chart:\n      repository: https://openinfradev.github.io/helm-repo\n      name: elasticsearch-operator\n      version: 1.0.3\n   releaseName: elasticsearch-operator\n   targetNamespace: elastic-system\n   values:\n      elasticsearchOperator:\n         nodeSelector: {} # TO_BE_FIXED\n   ```\n\n2. _decapod-site/dev/lma/site-values.yaml_:\n   ```yaml\n   apiVersion: openinfradev.github.com/v1\n   kind: HelmValuesTransformer\n   metadata:\n   name: site\n\n   global:\n   nodeSelector:\n      taco-lma: enabled\n\n   charts:\n   - name: elasticsearch-operator\n   override:\n      elasticsearchOperator.nodeSelector: $(nodeSelector)\n   ```\n\n3. _decapod-site/dev/lma/lma-manifest.yaml_:\n   ```yaml\n   apiVersion: helm.fluxcd.io/v1\n   kind: HelmRelease\n   metadata:\n   name: elasticsearch-operator\n   spec:\n   chart:\n      repository: https://openinfradev.github.io/helm-repo\n      name: elasticsearch-operator\n      version: 1.0.3\n   releaseName: elasticsearch-operator\n   targetNamespace: elastic-system\n   values:\n      elasticsearchOperator:\n         nodeSelector:\n         taco-lma: enabled\n   ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopeninfradev%2Fdecapod-base-yaml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopeninfradev%2Fdecapod-base-yaml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopeninfradev%2Fdecapod-base-yaml/lists"}