{"id":28480496,"url":"https://github.com/giraffacorp/k8s_apptemplate","last_synced_at":"2026-05-18T09:36:10.983Z","repository":{"id":296289555,"uuid":"990053810","full_name":"giraffacorp/k8s_apptemplate","owner":"giraffacorp","description":"argocd app of apps template repo","archived":false,"fork":false,"pushed_at":"2025-07-22T23:14:14.000Z","size":16,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-23T01:11:36.725Z","etag":null,"topics":["argocd","devops","gitops","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/giraffacorp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-25T12:06:50.000Z","updated_at":"2025-07-22T23:14:19.000Z","dependencies_parsed_at":"2025-07-23T01:08:14.152Z","dependency_job_id":"8067584d-888a-4ca2-9892-2660fc7eada1","html_url":"https://github.com/giraffacorp/k8s_apptemplate","commit_stats":null,"previous_names":["giraffacorp/k8s_apptemplate"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/giraffacorp/k8s_apptemplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giraffacorp%2Fk8s_apptemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giraffacorp%2Fk8s_apptemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giraffacorp%2Fk8s_apptemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giraffacorp%2Fk8s_apptemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/giraffacorp","download_url":"https://codeload.github.com/giraffacorp/k8s_apptemplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giraffacorp%2Fk8s_apptemplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269606235,"owners_count":24446147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["argocd","devops","gitops","kubernetes"],"created_at":"2025-06-07T19:06:34.829Z","updated_at":"2026-05-18T09:36:10.978Z","avatar_url":"https://github.com/giraffacorp.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes Application Template Repository\n\nThis repository serves as a template for deploying applications to Kubernetes clusters using ArgoCD's \"App of Apps\" pattern. It provides a structured, maintainable approach to managing Kubernetes applications with built-in support for secrets management via SOPS, automated dependency updates with Renovate, and streamlined workflows through Taskfile.\n\n## Components Overview\n\n- **app1**: description\n- **app2**: description\n\n## Repository Structure\n\n```\n├── .taskfiles/                 # Custom Taskfile scripts modules\n├── apps/                       # Core application configurations\n  ├── argocd/                   # ArgoCD bootrap appset\n│   └── appset.yaml\n├── .envrc                      # Direnv environment variables\n├── .gitattributes              # Git attributes configuration\n├── .gitignore                  # Git ignore rules\n├── .pre-commit-config.yaml     # Pre-commit hooks configuration\n├── .sops.yaml                  # SOPS encryption configuration\n├── gitleaks.toml               # Gitleaks secret scanning configuration\n├── renovate.json               # Renovate dependency management\n├── taskfile.yaml               # Task runner definitions\n└── yamlfmt.yaml                # YAML formatting configuration\n```\n\n## Prerequisites\n\n- [Task](https://taskfile.dev/) - Task runner tool\n- [direnv](https://direnv.net/) - Environment variable management\n- [SOPS](https://github.com/mozilla/sops) - Secret management\n- [age](https://github.com/FiloSottile/age) - Encryption tool\n- [uv](https://docs.astral.sh/uv/) - Python package management\n\n## Usage Instructions\n\n### 1. Initial Setup\n\nClone this repository and run the setup task to prepare your development environment:\n\n```bash\ngit clone \u003cyour-repository-url\u003e\ncd \u003crepository-name\u003e\ntask setup\n```\n\nThis will:\n- Configure direnv for environment variables\n- Install pre-commit hooks for code quality\n- Set up SOPS differ for secure Git diff operations\n\n### 2. SOPS Secret Management Setup\n\nGenerate an Age key for encrypting secrets:\n\n```bash\n# If $SOPS_AGE_KEY_FILE is exported trough direnv, set it first\nage-keygen -o $SOPS_AGE_KEY_FILE\n```\n\nCopy the public key from the output and add it to `.sops.yaml` under the `age:` receivers:\n\n```yaml\nage:\n  - age1haxzj5xhxtpag457wwykd4alk7x0cfdzc0gcfgltlvuh7zfywveqz53gjl # secrets-operator-key\n  - \u003cYOUR-AGE-PUBLIC-KEY-HERE\u003e # Replace this line with your public key\n```\n\n### 3. Configure ArgoCD Integration\n\nUpdate the repository URL in `argocd/appset.yaml`:\n\n```yaml\nspec:\n  source:\n    repoURL: \u003cREPO-URL-HERE\u003e # Replace with your Git repository URL\n```\n\n### 4. Add Your Applications\n\n1. Add your application manifests to the `apps/` directory\n1. Sync apps with `k apply -n argocd -f argocd/appset.yaml`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiraffacorp%2Fk8s_apptemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgiraffacorp%2Fk8s_apptemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiraffacorp%2Fk8s_apptemplate/lists"}