├── .codecov.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── enhancement_proposal.md └── dependabot.yml ├── .gitignore ├── .golangci.yaml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .snyk ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── cmd ├── commands │ ├── app.go │ ├── app_test.go │ ├── assets │ │ ├── apps_readme.md │ │ ├── cluster_res_readme.md │ │ └── projects_readme.md │ ├── common.go │ ├── common_test.go │ ├── project.go │ ├── project_test.go │ ├── repo.go │ ├── repo_test.go │ ├── root.go │ └── version.go └── main.go ├── docs ├── Advanced-Installation.md ├── App-Specifier.md ├── Blogs.md ├── Development.md ├── Getting-Started.md ├── Git-Providers.md ├── Installation-Guide.md ├── Labels.md ├── Modifying-Argo-CD.md ├── Recovery.md ├── Roadmap.md ├── assets │ ├── architecture.png │ ├── argo_autopilot.png │ ├── favicon.png │ ├── getting_started_1.png │ ├── getting_started_2.png │ ├── getting_started_3.png │ ├── getting_started_apps_1.png │ ├── github_token.png │ ├── logo.png │ ├── versions.css │ └── versions.js ├── commands │ ├── argocd-autopilot.md │ ├── argocd-autopilot_application.md │ ├── argocd-autopilot_application_create.md │ ├── argocd-autopilot_application_delete.md │ ├── argocd-autopilot_application_list.md │ ├── argocd-autopilot_project.md │ ├── argocd-autopilot_project_create.md │ ├── argocd-autopilot_project_delete.md │ ├── argocd-autopilot_project_list.md │ ├── argocd-autopilot_repo.md │ ├── argocd-autopilot_repo_bootstrap.md │ ├── argocd-autopilot_repo_uninstall.md │ └── argocd-autopilot_version.md ├── index.md ├── releases │ └── release_notes.md └── requirements.txt ├── examples └── demo-app │ ├── README.md │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml ├── go.mod ├── go.sum ├── hack ├── build.sh ├── check_worktree.sh ├── cmd-docs │ └── main.go ├── release.sh └── test.sh ├── manifests ├── base │ └── kustomization.yaml ├── ha │ └── kustomization.yaml └── insecure │ └── kustomization.yaml ├── mkdocs.yml ├── overrides └── partials │ └── language │ └── en-custom.html └── pkg ├── application ├── application.go ├── application_test.go ├── mocks │ └── application.go └── util.go ├── argocd └── argocd.go ├── fs ├── fs.go ├── fs_test.go ├── mocks │ └── fs.go └── utils │ └── utils.go ├── git ├── ado │ └── mocks │ │ └── ado.go ├── bitbucket-server │ └── mocks │ │ └── httpClient.go ├── bitbucket │ └── mocks │ │ └── client.go ├── gitea │ └── mocks │ │ └── client.go ├── github │ ├── mocks │ │ ├── repos.go │ │ └── users.go │ ├── repos.go │ └── users.go ├── gitlab │ └── mocks │ │ └── client.go ├── gogit │ ├── mocks │ │ ├── repository.go │ │ └── worktree.go │ ├── repo.go │ └── worktree.go ├── mocks │ ├── provider.go │ └── repository.go ├── provider.go ├── provider_ado.go ├── provider_ado_test.go ├── provider_bitbucket-server.go ├── provider_bitbucket-server_test.go ├── provider_bitbucket.go ├── provider_bitbucket_test.go ├── provider_gitea.go ├── provider_gitea_test.go ├── provider_github.go ├── provider_github_test.go ├── provider_gitlab.go ├── provider_gitlab_test.go ├── repository.go └── repository_test.go ├── kube ├── kube.go └── mocks │ └── kube.go ├── log ├── log.go └── logrus.go ├── store └── store.go └── util ├── repospec.go ├── repospec_test.go ├── util.go └── util_test.go /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | dist 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.github/ISSUE_TEMPLATE/enhancement_proposal.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/.snyk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/commands/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/app.go -------------------------------------------------------------------------------- /cmd/commands/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/app_test.go -------------------------------------------------------------------------------- /cmd/commands/assets/apps_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/assets/apps_readme.md -------------------------------------------------------------------------------- /cmd/commands/assets/cluster_res_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/assets/cluster_res_readme.md -------------------------------------------------------------------------------- /cmd/commands/assets/projects_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/assets/projects_readme.md -------------------------------------------------------------------------------- /cmd/commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/common.go -------------------------------------------------------------------------------- /cmd/commands/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/common_test.go -------------------------------------------------------------------------------- /cmd/commands/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/project.go -------------------------------------------------------------------------------- /cmd/commands/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/project_test.go -------------------------------------------------------------------------------- /cmd/commands/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/repo.go -------------------------------------------------------------------------------- /cmd/commands/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/repo_test.go -------------------------------------------------------------------------------- /cmd/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/root.go -------------------------------------------------------------------------------- /cmd/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/commands/version.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/cmd/main.go -------------------------------------------------------------------------------- /docs/Advanced-Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Advanced-Installation.md -------------------------------------------------------------------------------- /docs/App-Specifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/App-Specifier.md -------------------------------------------------------------------------------- /docs/Blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Blogs.md -------------------------------------------------------------------------------- /docs/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Development.md -------------------------------------------------------------------------------- /docs/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Getting-Started.md -------------------------------------------------------------------------------- /docs/Git-Providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Git-Providers.md -------------------------------------------------------------------------------- /docs/Installation-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Installation-Guide.md -------------------------------------------------------------------------------- /docs/Labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Labels.md -------------------------------------------------------------------------------- /docs/Modifying-Argo-CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Modifying-Argo-CD.md -------------------------------------------------------------------------------- /docs/Recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Recovery.md -------------------------------------------------------------------------------- /docs/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/Roadmap.md -------------------------------------------------------------------------------- /docs/assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/architecture.png -------------------------------------------------------------------------------- /docs/assets/argo_autopilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/argo_autopilot.png -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/getting_started_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/getting_started_1.png -------------------------------------------------------------------------------- /docs/assets/getting_started_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/getting_started_2.png -------------------------------------------------------------------------------- /docs/assets/getting_started_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/getting_started_3.png -------------------------------------------------------------------------------- /docs/assets/getting_started_apps_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/getting_started_apps_1.png -------------------------------------------------------------------------------- /docs/assets/github_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/github_token.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/versions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/versions.css -------------------------------------------------------------------------------- /docs/assets/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/assets/versions.js -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_application.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_application_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_application_create.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_application_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_application_delete.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_application_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_application_list.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_project.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_project_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_project_create.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_project_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_project_delete.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_project_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_project_list.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_repo.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_repo_bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_repo_bootstrap.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_repo_uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_repo_uninstall.md -------------------------------------------------------------------------------- /docs/commands/argocd-autopilot_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/commands/argocd-autopilot_version.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/releases/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/releases/release_notes.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/demo-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/examples/demo-app/README.md -------------------------------------------------------------------------------- /examples/demo-app/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/examples/demo-app/deployment.yaml -------------------------------------------------------------------------------- /examples/demo-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/examples/demo-app/kustomization.yaml -------------------------------------------------------------------------------- /examples/demo-app/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/examples/demo-app/service.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/go.sum -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/check_worktree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/hack/check_worktree.sh -------------------------------------------------------------------------------- /hack/cmd-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/hack/cmd-docs/main.go -------------------------------------------------------------------------------- /hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/hack/release.sh -------------------------------------------------------------------------------- /hack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/hack/test.sh -------------------------------------------------------------------------------- /manifests/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/manifests/base/kustomization.yaml -------------------------------------------------------------------------------- /manifests/ha/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/manifests/ha/kustomization.yaml -------------------------------------------------------------------------------- /manifests/insecure/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/manifests/insecure/kustomization.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/language/en-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/overrides/partials/language/en-custom.html -------------------------------------------------------------------------------- /pkg/application/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/application/application.go -------------------------------------------------------------------------------- /pkg/application/application_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/application/application_test.go -------------------------------------------------------------------------------- /pkg/application/mocks/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/application/mocks/application.go -------------------------------------------------------------------------------- /pkg/application/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/application/util.go -------------------------------------------------------------------------------- /pkg/argocd/argocd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/argocd/argocd.go -------------------------------------------------------------------------------- /pkg/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/fs/fs.go -------------------------------------------------------------------------------- /pkg/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/fs/fs_test.go -------------------------------------------------------------------------------- /pkg/fs/mocks/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/fs/mocks/fs.go -------------------------------------------------------------------------------- /pkg/fs/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/fs/utils/utils.go -------------------------------------------------------------------------------- /pkg/git/ado/mocks/ado.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/ado/mocks/ado.go -------------------------------------------------------------------------------- /pkg/git/bitbucket-server/mocks/httpClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/bitbucket-server/mocks/httpClient.go -------------------------------------------------------------------------------- /pkg/git/bitbucket/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/bitbucket/mocks/client.go -------------------------------------------------------------------------------- /pkg/git/gitea/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gitea/mocks/client.go -------------------------------------------------------------------------------- /pkg/git/github/mocks/repos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/github/mocks/repos.go -------------------------------------------------------------------------------- /pkg/git/github/mocks/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/github/mocks/users.go -------------------------------------------------------------------------------- /pkg/git/github/repos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/github/repos.go -------------------------------------------------------------------------------- /pkg/git/github/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/github/users.go -------------------------------------------------------------------------------- /pkg/git/gitlab/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gitlab/mocks/client.go -------------------------------------------------------------------------------- /pkg/git/gogit/mocks/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gogit/mocks/repository.go -------------------------------------------------------------------------------- /pkg/git/gogit/mocks/worktree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gogit/mocks/worktree.go -------------------------------------------------------------------------------- /pkg/git/gogit/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gogit/repo.go -------------------------------------------------------------------------------- /pkg/git/gogit/worktree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/gogit/worktree.go -------------------------------------------------------------------------------- /pkg/git/mocks/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/mocks/provider.go -------------------------------------------------------------------------------- /pkg/git/mocks/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/mocks/repository.go -------------------------------------------------------------------------------- /pkg/git/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider.go -------------------------------------------------------------------------------- /pkg/git/provider_ado.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_ado.go -------------------------------------------------------------------------------- /pkg/git/provider_ado_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_ado_test.go -------------------------------------------------------------------------------- /pkg/git/provider_bitbucket-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_bitbucket-server.go -------------------------------------------------------------------------------- /pkg/git/provider_bitbucket-server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_bitbucket-server_test.go -------------------------------------------------------------------------------- /pkg/git/provider_bitbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_bitbucket.go -------------------------------------------------------------------------------- /pkg/git/provider_bitbucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_bitbucket_test.go -------------------------------------------------------------------------------- /pkg/git/provider_gitea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_gitea.go -------------------------------------------------------------------------------- /pkg/git/provider_gitea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_gitea_test.go -------------------------------------------------------------------------------- /pkg/git/provider_github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_github.go -------------------------------------------------------------------------------- /pkg/git/provider_github_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_github_test.go -------------------------------------------------------------------------------- /pkg/git/provider_gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_gitlab.go -------------------------------------------------------------------------------- /pkg/git/provider_gitlab_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/provider_gitlab_test.go -------------------------------------------------------------------------------- /pkg/git/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/repository.go -------------------------------------------------------------------------------- /pkg/git/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/git/repository_test.go -------------------------------------------------------------------------------- /pkg/kube/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/kube/kube.go -------------------------------------------------------------------------------- /pkg/kube/mocks/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/kube/mocks/kube.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/log/logrus.go -------------------------------------------------------------------------------- /pkg/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/store/store.go -------------------------------------------------------------------------------- /pkg/util/repospec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/util/repospec.go -------------------------------------------------------------------------------- /pkg/util/repospec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/util/repospec_test.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argoproj-labs/argocd-autopilot/HEAD/pkg/util/util_test.go --------------------------------------------------------------------------------