├── README.md ├── argocd ├── argo-ingress.yaml ├── argo-storage.yaml ├── install.yaml └── install.yaml.bak ├── gitlab ├── gitlab-deploy.yaml ├── gitlab-postgresql.yaml ├── gitlab-redis.yaml └── gitlab-storage.yaml ├── ingress ├── nginx │ └── ingress-nginx.yaml └── traefik │ ├── .helmignore │ ├── Chart.yaml │ ├── Guidelines.md │ ├── LICENSE │ ├── README.md │ ├── crds │ ├── ingressroute.yaml │ ├── ingressroutetcp.yaml │ ├── ingressrouteudp.yaml │ ├── middlewares.yaml │ ├── tlsoptions.yaml │ ├── tlsstores.yaml │ └── traefikservices.yaml │ ├── templates │ ├── _helpers.tpl │ ├── dashboard-hook-ingressroute.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingressclass.yaml │ ├── poddisruptionbudget.yaml │ ├── pvc.yaml │ ├── rbac │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── serviceaccount.yaml │ ├── service.yaml │ └── tlsoption.yaml │ └── values.yaml ├── jenkins ├── jenkins-deploy.yaml ├── jenkins-maven-cache.yaml ├── jenkins-rbac.yaml └── jenkins-storage.yaml ├── nfs ├── nfs-client.yaml └── nfs-storage.yaml └── sonarqube ├── sonarqube-deploy.yaml ├── sonarqube-postgresql-deploy.yaml └── sonarqube-storage.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/README.md -------------------------------------------------------------------------------- /argocd/argo-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/argocd/argo-ingress.yaml -------------------------------------------------------------------------------- /argocd/argo-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/argocd/argo-storage.yaml -------------------------------------------------------------------------------- /argocd/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/argocd/install.yaml -------------------------------------------------------------------------------- /argocd/install.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/argocd/install.yaml.bak -------------------------------------------------------------------------------- /gitlab/gitlab-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/gitlab/gitlab-deploy.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/gitlab/gitlab-postgresql.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/gitlab/gitlab-redis.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/gitlab/gitlab-storage.yaml -------------------------------------------------------------------------------- /ingress/nginx/ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/nginx/ingress-nginx.yaml -------------------------------------------------------------------------------- /ingress/traefik/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | -------------------------------------------------------------------------------- /ingress/traefik/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/Chart.yaml -------------------------------------------------------------------------------- /ingress/traefik/Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/Guidelines.md -------------------------------------------------------------------------------- /ingress/traefik/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/LICENSE -------------------------------------------------------------------------------- /ingress/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/README.md -------------------------------------------------------------------------------- /ingress/traefik/crds/ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/ingressroute.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/ingressroutetcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/ingressroutetcp.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/ingressrouteudp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/ingressrouteudp.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/middlewares.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/middlewares.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/tlsoptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/tlsoptions.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/tlsstores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/tlsstores.yaml -------------------------------------------------------------------------------- /ingress/traefik/crds/traefikservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/crds/traefikservices.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/_helpers.tpl -------------------------------------------------------------------------------- /ingress/traefik/templates/dashboard-hook-ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/dashboard-hook-ingressroute.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/deployment.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/hpa.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/ingressclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/ingressclass.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/pvc.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/clusterrole.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/clusterrolebinding.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/role.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/rolebinding.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/rbac/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/rbac/serviceaccount.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/service.yaml -------------------------------------------------------------------------------- /ingress/traefik/templates/tlsoption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/templates/tlsoption.yaml -------------------------------------------------------------------------------- /ingress/traefik/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/ingress/traefik/values.yaml -------------------------------------------------------------------------------- /jenkins/jenkins-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/jenkins/jenkins-deploy.yaml -------------------------------------------------------------------------------- /jenkins/jenkins-maven-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/jenkins/jenkins-maven-cache.yaml -------------------------------------------------------------------------------- /jenkins/jenkins-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/jenkins/jenkins-rbac.yaml -------------------------------------------------------------------------------- /jenkins/jenkins-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/jenkins/jenkins-storage.yaml -------------------------------------------------------------------------------- /nfs/nfs-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/nfs/nfs-client.yaml -------------------------------------------------------------------------------- /nfs/nfs-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/nfs/nfs-storage.yaml -------------------------------------------------------------------------------- /sonarqube/sonarqube-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/sonarqube/sonarqube-deploy.yaml -------------------------------------------------------------------------------- /sonarqube/sonarqube-postgresql-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/sonarqube/sonarqube-postgresql-deploy.yaml -------------------------------------------------------------------------------- /sonarqube/sonarqube-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/kubernetes-software-yaml/HEAD/sonarqube/sonarqube-storage.yaml --------------------------------------------------------------------------------