{"id":17933831,"url":"https://github.com/jacobsvante/kustomize-deploy-action","last_synced_at":"2025-07-27T04:36:08.258Z","repository":{"id":58157665,"uuid":"530241877","full_name":"jacobsvante/kustomize-deploy-action","owner":"jacobsvante","description":"Github Action to deploy to a Kubernetes cluster using your Kustomize configuration.","archived":false,"fork":false,"pushed_at":"2024-05-30T09:02:11.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-06T03:43:40.319Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jacobsvante.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2022-08-29T13:52:46.000Z","updated_at":"2024-05-30T09:02:14.000Z","dependencies_parsed_at":"2024-05-30T10:32:25.608Z","dependency_job_id":"d1597f04-e51a-41e1-ad4f-93d3b434eb5b","html_url":"https://github.com/jacobsvante/kustomize-deploy-action","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":0.4444444444444444,"last_synced_commit":"b4555c8ccff8be566721c99479637cb9c76e8249"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/jacobsvante/kustomize-deploy-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobsvante%2Fkustomize-deploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobsvante%2Fkustomize-deploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobsvante%2Fkustomize-deploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobsvante%2Fkustomize-deploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacobsvante","download_url":"https://codeload.github.com/jacobsvante/kustomize-deploy-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobsvante%2Fkustomize-deploy-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267300021,"owners_count":24066087,"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","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-28T21:41:55.865Z","updated_at":"2025-07-27T04:36:08.240Z","avatar_url":"https://github.com/jacobsvante.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- action-docs-description --\u003e\n\n## Description\n\nDeploy to Kubernetes cluster using a Kustomize config\n\n\u003c!-- action-docs-description --\u003e\n\n\u003c!-- action-docs-inputs --\u003e\n\n## Inputs\n\n| parameter                      | description                                                                                                                                                                                       | required | default         |\n| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------- |\n| kubeconfig                     | Contents of the cluster's kubeconfig                                                                                                                                                              | `true`   |                 |\n| kustomization-dir              | Path to the kustomize directory to apply / deploy (e.g. `kustomize/overlays/production`)                                                                                                          | `true`   |                 |\n| docker-repo                    | Docker repository/image to deploy, if any (e.g. `my-org/my-app`)                                                                                                                                  | `false`  |                 |\n| docker-tag                     | Docker image tag to deploy, if any (e.g. `0.9.14`)                                                                                                                                                | `false`  |                 |\n| docker-server                  | Docker server, if any (e.g. `docker.io`)                                                                                                                                                          | `false`  |                 |\n| docker-username                | Docker user, if any (e.g. `my-username`)                                                                                                                                                          | `false`  |                 |\n| docker-password                | Docker password, if any (e.g. `abc123`)                                                                                                                                                           | `false`  |                 |\n| pre-deploy-delete-job-selector | Delete jobs with `status.successful=1` and the given label (e.g. `autodelete-successful-on-deploy=yes`), before doing the deploy. Useful for cleaning up completed db migration jobs and similar. | `false`  |                 |\n| kustomization-base-dir         | Path to base kustomize directory                                                                                                                                                                  | `true`   | kustomize/base  |\n| age-secret-key                 | Secret key to decrypt deploy secrets with (e.g. `AGE-SECRET-KEY-123456`)                                                                                                                          | `false`  |                 |\n| encrypted-filename             | Filename/subpath inside `kustomization-dir` to a file with age encrypted secrets to decrypt                                                                                                       | `true`   | secrets.env     |\n| decrypted-filename             | Filename/subpath inside `kustomization-dir` to which the age encrypted secrets will be decrypted to                                                                                               | `true`   | secrets.env.dec |\n| create-k8s-namespace           | Create Kubernetes namespace if it does not exist                                                                                                                                                  | `true`   | true            |\n| create-image-pull-secret       | Create an image pull secret named \"rg.`$region`.scw.cloud\", to be referenced in `imagePullSecrets` in a k8s deployment/job                                                                        | `true`   | true            |\n| kubectl                        | Version of kubectl                                                                                                                                                                                | `true`   | latest          |\n| kubectl-dry-run                | Used to set `kubectl` option `--dry-run` Valid values are `none` (default), `client` and `server`.                                                                                                | `true`   | none            |\n\n\u003c!-- action-docs-inputs --\u003e\n\n\u003c!-- action-docs-outputs --\u003e\n\n\u003c!-- action-docs-outputs --\u003e\n\n\u003c!-- action-docs-runs --\u003e\n\n## Runs\n\nThis action is a `composite` action.\n\n\u003c!-- action-docs-runs --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobsvante%2Fkustomize-deploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobsvante%2Fkustomize-deploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobsvante%2Fkustomize-deploy-action/lists"}