├── .gitignore ├── LICENSE ├── README.md ├── apps ├── argocd │ └── fastapi-service-development.yaml └── fastapi-service │ ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml │ └── overlays │ └── development │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── kustomize │ ├── replica-count.yaml │ └── sealed-secret.yaml └── projects └── fastapi-app.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/README.md -------------------------------------------------------------------------------- /apps/argocd/fastapi-service-development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/argocd/fastapi-service-development.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/base/deployment.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/base/kustomization.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/base/service.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/overlays/development/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/overlays/development/ingress.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/overlays/development/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/overlays/development/kustomization.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/overlays/development/kustomize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/overlays/development/kustomize -------------------------------------------------------------------------------- /apps/fastapi-service/overlays/development/replica-count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/overlays/development/replica-count.yaml -------------------------------------------------------------------------------- /apps/fastapi-service/overlays/development/sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/apps/fastapi-service/overlays/development/sealed-secret.yaml -------------------------------------------------------------------------------- /projects/fastapi-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjanz/kubernetes-demo-gitops/HEAD/projects/fastapi-app.yaml --------------------------------------------------------------------------------