├── .circleci └── config.yml ├── argocd ├── application.yaml └── manifests │ ├── cluster │ ├── applications.yaml │ ├── projects.yaml │ ├── skupper.yaml │ └── strimzi.yaml │ └── kafka │ ├── cluster.yaml │ ├── skupper-site.yaml │ └── topics.yaml ├── main.tf ├── olm ├── crds.yaml ├── final.yaml └── olm.yaml ├── readme.md ├── renovate.json ├── sealedsecrets ├── argocd │ └── applications.yaml ├── keys │ ├── tls.crt │ └── tls.key ├── main.tf ├── providers.tf └── variables.tf └── variables.tf /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /argocd/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/application.yaml -------------------------------------------------------------------------------- /argocd/manifests/cluster/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/cluster/applications.yaml -------------------------------------------------------------------------------- /argocd/manifests/cluster/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/cluster/projects.yaml -------------------------------------------------------------------------------- /argocd/manifests/cluster/skupper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/cluster/skupper.yaml -------------------------------------------------------------------------------- /argocd/manifests/cluster/strimzi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/cluster/strimzi.yaml -------------------------------------------------------------------------------- /argocd/manifests/kafka/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/kafka/cluster.yaml -------------------------------------------------------------------------------- /argocd/manifests/kafka/skupper-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/kafka/skupper-site.yaml -------------------------------------------------------------------------------- /argocd/manifests/kafka/topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/argocd/manifests/kafka/topics.yaml -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/main.tf -------------------------------------------------------------------------------- /olm/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/olm/crds.yaml -------------------------------------------------------------------------------- /olm/final.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/olm/final.yaml -------------------------------------------------------------------------------- /olm/olm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/olm/olm.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/renovate.json -------------------------------------------------------------------------------- /sealedsecrets/argocd/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/argocd/applications.yaml -------------------------------------------------------------------------------- /sealedsecrets/keys/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/keys/tls.crt -------------------------------------------------------------------------------- /sealedsecrets/keys/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/keys/tls.key -------------------------------------------------------------------------------- /sealedsecrets/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/main.tf -------------------------------------------------------------------------------- /sealedsecrets/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/providers.tf -------------------------------------------------------------------------------- /sealedsecrets/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/sealedsecrets/variables.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piomin/sample-terraform-kubernetes-argocd/HEAD/variables.tf --------------------------------------------------------------------------------