├── .gitignore ├── LICENSE ├── README.md ├── apps └── shiori │ ├── cluster.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── namespace.yaml │ ├── persistentvolumeclaim.yaml │ └── service.yaml ├── bootstrap ├── glasskube-application.yaml └── glasskube │ ├── applicationset.yaml │ └── glasskube.yaml ├── packages ├── argo-cd │ └── clusterpackage.yaml ├── cloudnative-pg │ └── clusterpackage.yaml └── kube-prometheus-stack │ └── clusterpackage.yaml └── renovate.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | *.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/README.md -------------------------------------------------------------------------------- /apps/shiori/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/apps/shiori/cluster.yaml -------------------------------------------------------------------------------- /apps/shiori/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/apps/shiori/deployment.yaml -------------------------------------------------------------------------------- /apps/shiori/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/apps/shiori/ingress.yaml -------------------------------------------------------------------------------- /apps/shiori/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: shiori 5 | -------------------------------------------------------------------------------- /apps/shiori/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/apps/shiori/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /apps/shiori/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/apps/shiori/service.yaml -------------------------------------------------------------------------------- /bootstrap/glasskube-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/bootstrap/glasskube-application.yaml -------------------------------------------------------------------------------- /bootstrap/glasskube/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/bootstrap/glasskube/applicationset.yaml -------------------------------------------------------------------------------- /bootstrap/glasskube/glasskube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/bootstrap/glasskube/glasskube.yaml -------------------------------------------------------------------------------- /packages/argo-cd/clusterpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/packages/argo-cd/clusterpackage.yaml -------------------------------------------------------------------------------- /packages/cloudnative-pg/clusterpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/packages/cloudnative-pg/clusterpackage.yaml -------------------------------------------------------------------------------- /packages/kube-prometheus-stack/clusterpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/packages/kube-prometheus-stack/clusterpackage.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasskube/gitops-template/HEAD/renovate.json --------------------------------------------------------------------------------