{"id":18739966,"url":"https://github.com/withlin/alaska","last_synced_at":"2026-01-26T01:31:19.392Z","repository":{"id":96510159,"uuid":"224077724","full_name":"withlin/alaska","owner":"withlin","description":"Kubernetes GitOps backed by Tekton","archived":false,"fork":false,"pushed_at":"2019-09-06T03:54:34.000Z","size":168,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-20T04:35:54.922Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"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/withlin.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-11-26T01:43:04.000Z","updated_at":"2019-12-17T15:52:20.000Z","dependencies_parsed_at":"2023-03-16T03:31:17.870Z","dependency_job_id":null,"html_url":"https://github.com/withlin/alaska","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/withlin/alaska","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withlin%2Falaska","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withlin%2Falaska/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withlin%2Falaska/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withlin%2Falaska/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/withlin","download_url":"https://codeload.github.com/withlin/alaska/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withlin%2Falaska/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28763906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T00:37:26.264Z","status":"ssl_error","status_checked_at":"2026-01-26T00:37:25.959Z","response_time":113,"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":"2024-11-07T15:38:02.871Z","updated_at":"2026-01-26T01:31:19.369Z","avatar_url":"https://github.com/withlin.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alaska :snowboarder: - GitOps CI/CD for Kubernetes :ship:\n\nAlaska is a Kubernetes-native CI/CD orchestrator backed by [Tekton](https://github.com/tektoncd/pipeline). It responds to changes on a specified branch of a GitHub repo and applies Kubernetes manifests contained within.\n\nThe goal is to create a Kubernetes-targeted deployment platform that's easy to administer as an operator _and_ easy to consume as a developer. Oh, also to have fun along the way! :pizza:\n\n## What does it do?\n\nThe Alaska controller watches GitHub repositories for changes. Each repo is paired with a set of Kubernetes credentials. When a change is detected, the controller:\n\n1. Grabs an `alaska.yaml` config file from the repo\n2. Creates/updates a Tekton Pipeline based on the config. The Pipeline applies Kubernetes YAML to the cluster associated with the repo.\n3. Triggers the Pipeline\n4. Polls until a finite status is returned\n\nThe controller operates over Kubernetes custom resources called Repos. They look like this:\n\n```yaml\napiVersion: alpha.alaska.rudeboy.io/v1\nkind: Repo\nmetadata:\n  name: repo-sample\nspec:\n  url: https://github.com/rudoi/alaska-test.git\n  branch: master\n  cluster: pizza\n```\n\nThis watches for changes in the `rudoi/alaska-test` GitHub repository on the `master` branch. Manifests specified in the `alaska.yaml` in the root of that repository are applied to the `pizza` Kubernetes cluster. The controller expects there to be a Tekton [PipelineResource](https://github.com/tektoncd/pipeline/blob/master/docs/resources.md#cluster-resource) of type `cluster` in the same namespace as the `Repo` object.\n\n## Configuration\n\nHere's an annotated example `alaska.yaml`:\n\n```yaml\n# execute in order (\"sequential\") or simultaneously (\"parallel\") - default is \"parallel\"\nstrategy: sequential\nmanifests:\n  # kubectl apply -f configmap.yaml\n  - path: configmap.yaml\n\n  # helm upgrade --install charts/test-chart test-chart\n  - path: charts/test-chart\n    type: helm\n```\n\nThe controller, upon seeing new commits to the repo, will perform the actions in the comments above.\n\nWhile this is a mega super hyper alpha, versions are hard-coded as follows:\n\n|   tool    |    version    |\n| :-------: | :-----------: |\n| `kubectl` |    v1.15.2    |\n|  `helm`   | v3.0.0-beta.2 |\n\n## Getting Started\n\nNope, coming soon! :sweat_smile:\n\n## Features\n\n### controller\n\n- [ ] configurable `kubectl` / `helm` / `kustomize` versions\n- [ ] configurable target namespace\n- [ ] remote helm charts with local values.yaml\n- [ ] multi-cluster deploys\n- [ ] ConfigMap configuration option\n- [ ] define `kustomize` executor\n- [x] configurable ordering (apply `crds/` then apply `manifests/`, etc)\n- [x] define `helm` executor\n- [x] define `kubectl` executor\n- [x] specify multiple paths for manifests\n- [x] fetch `alaska.yaml` from repo for additional configuration\n- [x] trigger pipeline on changes\n- [x] specify branch to watch\n- [x] watch repo for changes\n\nstretch goals:\n\n- [ ] individually parallellized stage configuration\n- [ ] object-granular status reporting\n- [ ] pull request actions\n- [ ] define generic executor (use image x, run command y, etc)\n\n### `akctl` CLI\n\n- [ ] create Repo with any required credentials (in single command)\n- [x] manually retry latest build for a repo\n- [x] create serviceaccount and generate Kubernetes credentials for Alaska controller to use (in single command)\n\n## Should I use this?\n\nNot yet!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithlin%2Falaska","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwithlin%2Falaska","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithlin%2Falaska/lists"}