{"id":29961437,"url":"https://github.com/beemi/jaitechltd-common-apps","last_synced_at":"2026-02-13T00:05:29.255Z","repository":{"id":41887951,"uuid":"474652076","full_name":"beemi/jaitechltd-common-apps","owner":"beemi","description":"Helm  releases for all applications","archived":false,"fork":false,"pushed_at":"2023-12-15T20:29:04.000Z","size":106,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-07T11:53:11.376Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Smarty","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beemi.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-27T13:52:20.000Z","updated_at":"2022-03-27T22:45:22.000Z","dependencies_parsed_at":"2025-09-07T11:47:00.505Z","dependency_job_id":"6c17256a-d533-4498-8acf-68e476d39a24","html_url":"https://github.com/beemi/jaitechltd-common-apps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beemi/jaitechltd-common-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fjaitechltd-common-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fjaitechltd-common-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fjaitechltd-common-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fjaitechltd-common-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beemi","download_url":"https://codeload.github.com/beemi/jaitechltd-common-apps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beemi%2Fjaitechltd-common-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29387949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T00:02:39.825Z","status":"ssl_error","status_checked_at":"2026-02-13T00:00:20.807Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-08-03T23:10:44.520Z","updated_at":"2026-02-13T00:05:29.234Z","avatar_url":"https://github.com/beemi.png","language":"Smarty","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jaitechltd-common-apps\nHelm  releases for all applications, The package manager for Kubernetes\n\n## Prerequisites\n### Install Helm\n```shell\nbrew install helm\n```\n### Install kubectl\n```shell\nbrew install kubectl\n```\n### Install kubectx\n```shell\nbrew install kubectx\n```\n### Install kubens\n```shell\nbrew install kubens\n```\n### Install minikube\n```shell\nbrew install minikube\n```\n### Minikube commands\n```shell\nminikube status\nminikube start\nminikube stop\nminikube delete\nminikube logs \nminikube dashboard\n```\n### Install k9s\n\nhttps://k9scli.io/\n\n```shell\nbrew install k9s\n```\n\n## Chart.yaml:\n\nA Chart is a Helm package. It contains all of the resource definitions necessary to run an application, tool, or service inside of a Kubernetes cluster. Think of it like the Kubernetes equivalent of a Homebrew formula, an Apt dpkg, or a Yum RPM file.\n\n## Release:\n\nA Release is an instance of a chart running in a Kubernetes cluster. One chart can often be installed many times into the same cluster. And each time it is installed, a new release is created. Consider a MySQL chart. If you want two databases running in your cluster, you can install that chart twice. Each one will have its own release, which will in turn have its own release name.\n\n\n\n\ncreate a new helm chart with the following command:\n\n```shell\nhelm create latlong-app --namespace=jaitechltd\n```\n\nChart.yaml\n\nvalues.yaml\n\ndeployment.yaml\n\nservice.yaml\n\n\n### Helm template\n\n```shell\nhelm template latlong-app --namespace=jaitechltd \u003e latlong-app.yaml\n```\n```shell\nhelm template latlong-javaservice --namespace=jaitechltd \u003e latlong-javaservice.yaml\n```\n\n### Helm lint\n```shell\nhelm lint latlong-app.yaml\n```\n\n### Helm dry run\n```shell\nhelm install latlong-app --debug --dry-run latlong-app\n```\n\n### Helm install\n\ninstall a chart with the following command:\n\n```shell\nhelm install latlong latlong-app --namespace=jaitechltd\n```\n\n```shell\nhelm install latlong-javaservice latlong-javaservice --namespace=jaitechltd\n```\n\n### Helm get list of releases\n\n```shell\nhelm list --namespace=jaitechltd\n```\n\nDelete a release with the following command:\n\n```shell\nhelm delete latlong --namespace=jaitechltd\n```\n\n```shell\nhelm delete latlong-javaservice --namespace=jaitechltd\n```\n\n# Kubernetes\n\nKubernetes get running nodes from cluster\n\n```shell\nkubectl get nodes -A\n```\n(or)\n```shell\nkubectl get nodes -n \u003cnamespace\u003e\n```\n\nKubernetes get all contexts\n\n```shell\nkubectl config get-contexts\n```\n\nSwitch to a context with the following command:\n\n```shell\nkubectl config use-context \u003ccontext_name\u003e\n```\nExample:\n```shell\nkubectl config use-context minikube\n```\nCreate a new namespace with the following command:\n```shell\nkubectl create namespace \u003cnamespace\u003e\n```\nExample:\n```shell\nkubectl create namespace jaitechltd\n\n```\nGet all namespaces with the following command:\n```shell\n kubectl get namespace\n```\nGet all pods in a namespace with the following command:\n```shell\nkubectl get pods --namespace=jaitechltd\n```\n\nGet all pods in all namespaces with the following command:\n\n```shell\nkubectl get deployments\n```\n\nDelete pods from a namespace\n\n```shell\nkuectl delete pods --all --namespace=jaitechltd\n```\n\n```shell\nkubectl delete pod \u003cpod_name\u003e --namespace=jaitechltd\n```\n\n## :e-mail: Contacts\n\nOwner: [beemi.raja@gmail.com](beemi.raja@gmail.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeemi%2Fjaitechltd-common-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeemi%2Fjaitechltd-common-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeemi%2Fjaitechltd-common-apps/lists"}