{"id":15940449,"url":"https://github.com/h3poteto/istio-http-example","last_synced_at":"2026-03-04T08:02:19.855Z","repository":{"id":147905417,"uuid":"168801974","full_name":"h3poteto/istio-http-example","owner":"h3poteto","description":"HTTP server on Istio on kubernetes","archived":false,"fork":false,"pushed_at":"2019-02-03T02:48:23.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-02T01:18:37.698Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/h3poteto.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}},"created_at":"2019-02-02T06:26:01.000Z","updated_at":"2019-02-03T02:48:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"b278e43b-0b8e-4dee-bb46-06c0c3c04563","html_url":"https://github.com/h3poteto/istio-http-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/h3poteto/istio-http-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h3poteto%2Fistio-http-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h3poteto%2Fistio-http-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h3poteto%2Fistio-http-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h3poteto%2Fistio-http-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/h3poteto","download_url":"https://codeload.github.com/h3poteto/istio-http-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h3poteto%2Fistio-http-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30075915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"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":[],"created_at":"2024-10-07T06:41:36.952Z","updated_at":"2026-03-04T08:02:19.838Z","avatar_url":"https://github.com/h3poteto.png","language":null,"readme":"# istio-http-example\n\n## Prepare\n### kubernetes\nYou have to prepare kubernetes cluster. I'm using EKS on AWS.\n\n### istioctl\n\n```bash\n$ curl -L https://git.io/getLatestIstio | sh -\n$ cd istio-1.*\n$ sudo cp bin/istioctl /usr/local/bin/\n```\n\n### helm\n\n```bash\n$ cd istio-1.*\n$ kubectl create -f install/kubernetes/helm/helm-service-account.yaml\n$ helm init --service-account tiller\n```\n\n### istio\n\n```bash\n$ kubectl create namespace istio-system\n$ cd istio-1.*\n$ helm install \\\n--wait \\\n--name istio \\\n--namespace istio-system \\\ninstall/kubernetes/helm/istio\n...\n$ helm status istio\nLAST DEPLOYED: Fri Feb  1 22:40:42 2019\nNAMESPACE: istio-system\nSTATUS: DEPLOYED\n...\n```\nIf you can find `istio-sidecar-injector`, istio auto injection is running.\n\n```bash\n$ kubectl get pods -n istio-system\nNAME                                     READY   STATUS    RESTARTS   AGE\nistio-citadel-7dd558dcf-ldb44            1/1     Running   0          17h\nistio-egressgateway-88887488d-bp7qv      1/1     Running   0          17h\nistio-galley-787758f7b8-txr4p            1/1     Running   0          17h\nistio-ingressgateway-58c77897cc-qn554    1/1     Running   0          17h\nistio-pilot-868cdfb5f7-znvjr             2/2     Running   0          17h\nistio-policy-56c4579578-25ztf            2/2     Running   0          17h\nistio-sidecar-injector-d7f98d9cb-gnckv   1/1     Running   0          17h\nistio-telemetry-7fb48dc68b-4826f         2/2     Running   0          17h\nprometheus-76db5fddd5-48zqq              1/1     Running   0          17h\n```\n\n## Run\n\n```bash\n$ kubectl apply -f namespace.yml\n$ kubectl apply -f deployment-backend.yml\n$ kubectl apply -f service-backend.yml\n$ kubectl apply -f deployment-client.yml\n```\n\nIf istio auto injection is running, you can find 2 containers per pod.\n\n```bash\n$ kubectl get pods -n istio-http-example\nNAME                        READY   STATUS    RESTARTS   AGE\nbackend-0-5b4d8b696-2q5d7   2/2     Running   0          1m\nbackend-0-5b4d8b696-r8cvn   2/2     Running   0          1m\nclient-0-796bb44b64-m5rq4   2/2     Running   1          43s\n```\n\nYou can confirm http connection.\n\n```bash\n$ kubectl logs -f client-0-796bb44b64-m5rq4 -n istio-http-example -c client\nHello, World!\nHello, World!\nHello, World!\nHello, World!\nHello, World!\nHello, World!\nHello, World!\nHello, World!\nHello, World!\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh3poteto%2Fistio-http-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fh3poteto%2Fistio-http-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh3poteto%2Fistio-http-example/lists"}