{"id":24362891,"url":"https://github.com/johnbedeir/javawebapp-helm-chart","last_synced_at":"2026-02-26T02:42:20.631Z","repository":{"id":271819747,"uuid":"914666354","full_name":"johnbedeir/javawebapp-helm-chart","owner":"johnbedeir","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-10T05:07:32.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T11:33:08.402Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/johnbedeir.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-10T03:58:28.000Z","updated_at":"2025-01-10T05:07:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"3aa00f69-8941-42a1-acc6-a6f84a09686f","html_url":"https://github.com/johnbedeir/javawebapp-helm-chart","commit_stats":null,"previous_names":["johnbedeir/javawebapp-helm-chart"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/johnbedeir/javawebapp-helm-chart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbedeir%2Fjavawebapp-helm-chart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbedeir%2Fjavawebapp-helm-chart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbedeir%2Fjavawebapp-helm-chart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbedeir%2Fjavawebapp-helm-chart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnbedeir","download_url":"https://codeload.github.com/johnbedeir/javawebapp-helm-chart/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbedeir%2Fjavawebapp-helm-chart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29848634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"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":[],"created_at":"2025-01-18T22:54:13.043Z","updated_at":"2026-02-26T02:42:20.606Z","avatar_url":"https://github.com/johnbedeir.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Java Web App Helm Chart\n\nThis repository contains the Helm chart for deploying the `javawebapp` application to a Kubernetes cluster. Follow the steps below to create, package, and deploy the chart.\n\n---\n\n## Prerequisites\n\n- Helm CLI installed ([Install Helm](https://helm.sh/docs/intro/install/))\n- Kubernetes cluster configured and `kubectl` installed\n- GitHub Pages enabled for this repository\n\n---\n\n## Steps to Use the Helm Chart\n\n### 1. **Create the Helm Chart**\n\nCreate the Helm chart for the `javawebapp` application:\n\n```bash\nmkdir app-helm-chart\ncd app-helm-chart\n```\n\n---\n\n### 2. **Package the Helm Chart**\n\nPackage the chart into a `.tgz` file:\n\n```bash\nhelm package javawebapp\n```\n\n---\n\n### 3. **Commit the Chart to GitHub**\n\nCommit the `.tgz` file to this GitHub repository.\n\n---\n\n### 4. **Index the Chart**\n\nGenerate an `index.yaml` file for the chart:\n\n```bash\nhelm repo index . --url https://\u003cyour-github-username\u003e.github.io/\u003crepo-name\u003e\n```\n\nReplace `\u003cyour-github-username\u003e` with your GitHub username and `\u003crepo-name\u003e` with the name of your repository.\n\n---\n\n### 5. **Enable GitHub Pages**\n\n1. Go to your repository's **Settings**.\n2. Scroll to the **Pages** section.\n3. Select the branch (e.g., `main`) and folder (`/` or `docs`) for GitHub Pages.\n4. Save the settings. Your repository will be served at:\n   ```\n   https://\u003cyour-github-username\u003e.github.io/\u003crepo-name\u003e\n   ```\n\n---\n\n### 6. **Add the Helm Repository**\n\nAdd your GitHub Pages as a Helm repository:\n\n```bash\nhelm repo add javawebapp-repo https://\u003cyour-github-username\u003e.github.io/\u003crepo-name\u003e\n```\n\n---\n\n### 7. **Update the Helm Repository**\n\nUpdate your Helm repositories to fetch the latest charts:\n\n```bash\nhelm repo update\n```\n\n---\n\n### 8. **Deploy the Application**\n\nInstall the Helm chart to your Kubernetes cluster:\n\n```bash\nhelm install javawebapp javawebapp-repo/javawebapp\n```\n\n---\n\n### 9. **Uninstall the Application**\n\nTo remove the application from your cluster:\n\n```bash\nhelm uninstall javawebapp\n```\n\n---\n\n## Notes\n\n- Replace `\u003cyour-github-username\u003e` and `\u003crepo-name\u003e` with your actual GitHub username and repository name where applicable.\n- Ensure your Kubernetes cluster is configured and accessible before deploying the chart.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbedeir%2Fjavawebapp-helm-chart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnbedeir%2Fjavawebapp-helm-chart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbedeir%2Fjavawebapp-helm-chart/lists"}