{"id":19339771,"url":"https://github.com/rubenv/kube-appdeploy","last_synced_at":"2025-04-23T02:30:55.207Z","repository":{"id":66156178,"uuid":"61377757","full_name":"rubenv/kube-appdeploy","owner":"rubenv","description":null,"archived":false,"fork":false,"pushed_at":"2018-09-03T09:44:11.000Z","size":42,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-02T06:43:13.287Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/rubenv.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}},"created_at":"2016-06-17T14:00:57.000Z","updated_at":"2018-09-03T09:44:13.000Z","dependencies_parsed_at":"2023-02-21T08:31:17.937Z","dependency_job_id":null,"html_url":"https://github.com/rubenv/kube-appdeploy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubenv%2Fkube-appdeploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubenv%2Fkube-appdeploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubenv%2Fkube-appdeploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubenv%2Fkube-appdeploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubenv","download_url":"https://codeload.github.com/rubenv/kube-appdeploy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250357569,"owners_count":21417308,"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","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-11-10T03:23:45.864Z","updated_at":"2025-04-23T02:30:55.185Z","avatar_url":"https://github.com/rubenv.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kube-appdeploy\n\nWork-in-progress deployment tool for Kubernetes-hosted applications.\n\n## Getting started\n\nFirst build the command line client. Make sure kubectl is available on your path and a cluster is running.\n\n    go install github.com/rubenv/kube-appdeploy/bin/kube-appdeploy\n\nThe examples folder contains .yaml files to deploy nginx on your cluster. To do just that, run:\n\n    kube-appdeploy ./example/\n\nThe appdeploy script will pick up all .yaml files in the folder and process these. \nYou can use [text/template](https://godoc.org/text/template) syntax to change the computed content of the deploy configuration.\nThis example deploys 2 nodes in production and 1 node in all other environments:\n\n```yaml\napiVersion: extensions/v1beta1\nkind: Deployment\nmetadata:\n  name: my-nginx\nspec:\n{{ if eq .Variables.env \"production\" }}\n  replicas: 2\n{{ else }}\n  replicas: 1\n{{ end }}\n  template:\n    metadata:\n      labels:\n    run: my-nginx\n    spec:\n      containers:\n      - name: my-nginx\n    image: nginx\n    ports:\n    - containerPort: 80\n```\n\nThe \"env\" variable is set in \"variables.yaml\" in yaml syntax as shown here:\n\n```yaml\nenv: \"development\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubenv%2Fkube-appdeploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubenv%2Fkube-appdeploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubenv%2Fkube-appdeploy/lists"}