{"id":17344138,"url":"https://github.com/typhoonzero/kubernetes_binaries","last_synced_at":"2026-02-06T15:04:53.549Z","repository":{"id":99429616,"uuid":"61785841","full_name":"typhoonzero/kubernetes_binaries","owner":"typhoonzero","description":"put compiled binaries here as a mirror","archived":false,"fork":false,"pushed_at":"2016-07-08T02:35:40.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-07T02:46:55.102Z","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/typhoonzero.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":"2016-06-23T07:51:36.000Z","updated_at":"2019-03-17T11:39:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"77f66980-1758-4ce9-b1c7-9128f2a2f37e","html_url":"https://github.com/typhoonzero/kubernetes_binaries","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/typhoonzero/kubernetes_binaries","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typhoonzero%2Fkubernetes_binaries","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typhoonzero%2Fkubernetes_binaries/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typhoonzero%2Fkubernetes_binaries/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typhoonzero%2Fkubernetes_binaries/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/typhoonzero","download_url":"https://codeload.github.com/typhoonzero/kubernetes_binaries/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/typhoonzero%2Fkubernetes_binaries/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29165750,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T14:37:12.680Z","status":"ssl_error","status_checked_at":"2026-02-06T14:36:22.973Z","response_time":59,"last_error":"SSL_read: 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-15T16:24:11.616Z","updated_at":"2026-02-06T15:04:53.528Z","avatar_url":"https://github.com/typhoonzero.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# kubernetes_binaries\n\nPut compiled binaries here as a mirror.  See files in the release tab.\n\nv1.2.0: at commit: 672d5a777d5df35cc1e74c8075e3c17a20c4c20b\n\n\n# cloud-config \n\ncloud-config for install kubernetes on coreos.\n\n## setup kubernetes master\n\n1. use ```etcd2_cc.yaml``` to install etcd2 on a cluster. must configure \"name\" and discovery field.\n1. in kubernetes_master_cc.yaml, change \u003cSSH_PUBLIC_KEY\u003e to your own ssh public key.\n1. in kubernetes_master_cc.yaml, change \u003cMY_ETCD_ENDPOINTS\u003e to the etcd cluster endpoints, like ```http:///127.0.0.1:2379```\n1. run ```coreos-cloudinit --from-file kubernetes_master_cc.yaml``` to install and start kubernetes master\n1. skydns.yaml will be under\n\n## Configure TLS\nThe master requires the CA certificate, ```ca.pem```; its own certificate, ```apiserver.pem``` and its private key, ```apiserver-key.pem```. This [CoreOS guide](https://coreos.com/kubernetes/docs/latest/openssl.html) explains how to generate these.\n\n1. Generate the necessary certificates for the master. \n1. Send the three files to your master host (using scp for example).\n1. Move them to the /etc/kubernetes/ssl folder and ensure that only the root user can read the key:\n\n   ```\n   # Move keys\n   sudo mkdir -p /etc/kubernetes/ssl/\n   sudo mv -t /etc/kubernetes/ssl/ ca.pem apiserver.pem apiserver-key.pem\n      \n   # Set Permissions\n   sudo chmod 600 /etc/kubernetes/ssl/apiserver-key.pem\n   sudo chown root:root /etc/kubernetes/ssl/apiserver-key.pem\n   ```\n\n1. Restart the kubelet to pick up the changes:\n\n   ```\n   sudo systemctl restart kubelet\n   ```\n\n## setup worker nodes\n\nUse kubernetes_node_cc.yaml as the cloud config to boot the worker node. Before boot the node, make sure to do the following.\n\n1. ```\u003cHOSTNAME\u003e```: Hostname for this node (e.g. kube-node1, kube-node2)\n1. ```\u003cSSH_PUBLIC_KEY\u003e```: The public key you will use for SSH access to this server.\n1. ```\u003cKUBERNETES_MASTER\u003e```: The IPv4 address of the Kubernetes master.\n1. ```\u003cMY_ETCD_ENDPOINTS\u003e```: Complete etcd endpoints.\n1. ```\u003cCA_CERT\u003e```: Complete contents of ca.pem\n1. ```\u003cCA_KEY_CERT\u003e```: Complete contents of ca-key.pem\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyphoonzero%2Fkubernetes_binaries","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyphoonzero%2Fkubernetes_binaries","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyphoonzero%2Fkubernetes_binaries/lists"}