├── .gitignore ├── LICENSE ├── README.md ├── additional └── external-dns │ └── external-dns.yml ├── config-full ├── dev-namespace.yml ├── tap-values-full-input.yml └── tap-values-full.yml ├── config ├── kapp-config.yml ├── rbac.yml ├── tap-namespace.yml ├── tap-registry.yml ├── tap-repo.yml ├── tap-values-input.yml └── tap-values-secrets.yml └── gitops ├── rbac.yml ├── tap-install-config.yml.tpl ├── tap-install-ns.yml ├── tap-install-secrets.yml.tpl └── tap-install.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/README.md -------------------------------------------------------------------------------- /additional/external-dns/external-dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/additional/external-dns/external-dns.yml -------------------------------------------------------------------------------- /config-full/dev-namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config-full/dev-namespace.yml -------------------------------------------------------------------------------- /config-full/tap-values-full-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config-full/tap-values-full-input.yml -------------------------------------------------------------------------------- /config-full/tap-values-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config-full/tap-values-full.yml -------------------------------------------------------------------------------- /config/kapp-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/kapp-config.yml -------------------------------------------------------------------------------- /config/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/rbac.yml -------------------------------------------------------------------------------- /config/tap-namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/tap-namespace.yml -------------------------------------------------------------------------------- /config/tap-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/tap-registry.yml -------------------------------------------------------------------------------- /config/tap-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/tap-repo.yml -------------------------------------------------------------------------------- /config/tap-values-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/tap-values-input.yml -------------------------------------------------------------------------------- /config/tap-values-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/config/tap-values-secrets.yml -------------------------------------------------------------------------------- /gitops/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/gitops/rbac.yml -------------------------------------------------------------------------------- /gitops/tap-install-config.yml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/gitops/tap-install-config.yml.tpl -------------------------------------------------------------------------------- /gitops/tap-install-ns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/gitops/tap-install-ns.yml -------------------------------------------------------------------------------- /gitops/tap-install-secrets.yml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/gitops/tap-install-secrets.yml.tpl -------------------------------------------------------------------------------- /gitops/tap-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreroman/tap-install-gitops/HEAD/gitops/tap-install.yml --------------------------------------------------------------------------------