├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jenkins ├── Jenkins-CD │ ├── Dockerfile │ ├── Dockerfile.1 │ ├── Jenkinsfile │ └── serviceaccount.yaml ├── Jenkins-CI │ ├── Dockerfile │ ├── Jenkinsfile │ └── README.md └── Jenkins-in-Pod │ ├── deployment.yaml │ ├── ingress-controller.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── serviceaccount.yaml ├── README.md ├── alpine ├── alpine-pod-2-containers.yaml ├── alpine-pod-service-account.yaml ├── alpine-pod-share-volumes.yaml └── alpine-pod.yaml ├── configmap └── configmap.yaml ├── daemonset └── daemonset.yaml ├── dashboards ├── dashy │ └── dashy.yml ├── heimdall │ └── heimdall.yml └── homarr │ └── homarr.yml ├── database-management ├── adminer │ └── adminer.yml ├── cloudBeaver │ └── cloudBeaver.yml └── pgadmin │ └── pgadmin.yml ├── databases ├── influxdb │ └── influxdb.yml ├── mongodb │ └── mongodb.yml ├── mysql │ └── mysql.yml └── postgres │ └── postgres.yml ├── deployment ├── deployment1.yaml ├── recreate-deployment.yaml └── rolling-deployment.yaml ├── elasticsearch ├── es-sts.yaml └── es-svc.yaml ├── grafana └── grafana.yml ├── helm └── dpt-helm-sample │ ├── Chart.yaml │ ├── templates │ ├── deployment.yaml │ └── nodePort.yaml │ └── values.yaml ├── ingress ├── appingress.yaml ├── deploy.yaml └── todoingress.yaml ├── liveness └── liveness.yaml ├── manifests ├── deployment │ ├── deploy-nodeselector.yaml │ ├── deploy-pod-1.yaml │ ├── deploy-pod-2.yaml │ ├── deploy-svc-account.yaml │ ├── deploy-tolerations.yaml │ ├── deploy-with-configmap-env.yaml │ ├── deploy-with-configmap-file.yaml │ ├── deploy-with-secret.yaml │ ├── deployment-healthprobes.yaml │ ├── deployment-pvc.yaml │ └── deployment-requests.yaml ├── elk │ ├── elastic-stack.yaml │ └── fluentd-config.yaml ├── grafana │ └── prometheus-grafana-stack │ │ └── manifests │ │ ├── alertmanager-alertmanager.yaml │ │ ├── alertmanager-podDisruptionBudget.yaml │ │ ├── alertmanager-prometheusRule.yaml │ │ ├── alertmanager-secret.yaml │ │ ├── alertmanager-service.yaml │ │ ├── alertmanager-serviceAccount.yaml │ │ ├── alertmanager-serviceMonitor.yaml │ │ ├── blackbox-exporter-clusterRole.yaml │ │ ├── blackbox-exporter-clusterRoleBinding.yaml │ │ ├── blackbox-exporter-configuration.yaml │ │ ├── blackbox-exporter-deployment.yaml │ │ ├── blackbox-exporter-service.yaml │ │ ├── blackbox-exporter-serviceAccount.yaml │ │ ├── blackbox-exporter-serviceMonitor.yaml │ │ ├── grafana-dashboardDatasources.yaml │ │ ├── grafana-dashboardDefinitions.yaml │ │ ├── grafana-dashboardSources.yaml │ │ ├── grafana-deployment.yaml │ │ ├── grafana-service.yaml │ │ ├── grafana-serviceAccount.yaml │ │ ├── grafana-serviceMonitor.yaml │ │ ├── kube-prometheus-prometheusRule.yaml │ │ ├── kube-state-metrics-clusterRole.yaml │ │ ├── kube-state-metrics-clusterRoleBinding.yaml │ │ ├── kube-state-metrics-deployment.yaml │ │ ├── kube-state-metrics-prometheusRule.yaml │ │ ├── kube-state-metrics-service.yaml │ │ ├── kube-state-metrics-serviceAccount.yaml │ │ ├── kube-state-metrics-serviceMonitor.yaml │ │ ├── kubernetes-prometheusRule.yaml │ │ ├── kubernetes-serviceMonitorApiserver.yaml │ │ ├── kubernetes-serviceMonitorCoreDNS.yaml │ │ ├── kubernetes-serviceMonitorKubeControllerManager.yaml │ │ ├── kubernetes-serviceMonitorKubeScheduler.yaml │ │ ├── kubernetes-serviceMonitorKubelet.yaml │ │ ├── node-exporter-clusterRole.yaml │ │ ├── node-exporter-clusterRoleBinding.yaml │ │ ├── node-exporter-daemonset.yaml │ │ ├── node-exporter-prometheusRule.yaml │ │ ├── node-exporter-service.yaml │ │ ├── node-exporter-serviceAccount.yaml │ │ ├── node-exporter-serviceMonitor.yaml │ │ ├── prometheus-adapter-apiService.yaml │ │ ├── prometheus-adapter-clusterRole.yaml │ │ ├── prometheus-adapter-clusterRoleAggregatedMetricsReader.yaml │ │ ├── prometheus-adapter-clusterRoleBinding.yaml │ │ ├── prometheus-adapter-clusterRoleBindingDelegator.yaml │ │ ├── prometheus-adapter-clusterRoleServerResources.yaml │ │ ├── prometheus-adapter-configMap.yaml │ │ ├── prometheus-adapter-deployment.yaml │ │ ├── prometheus-adapter-podDisruptionBudget.yaml │ │ ├── prometheus-adapter-roleBindingAuthReader.yaml │ │ ├── prometheus-adapter-service.yaml │ │ ├── prometheus-adapter-serviceAccount.yaml │ │ ├── prometheus-adapter-serviceMonitor.yaml │ │ ├── prometheus-clusterRole.yaml │ │ ├── prometheus-clusterRoleBinding.yaml │ │ ├── prometheus-operator-prometheusRule.yaml │ │ ├── prometheus-operator-serviceMonitor.yaml │ │ ├── prometheus-podDisruptionBudget.yaml │ │ ├── prometheus-prometheus.yaml │ │ ├── prometheus-prometheusRule.yaml │ │ ├── prometheus-roleBindingConfig.yaml │ │ ├── prometheus-roleBindingSpecificNamespaces.yaml │ │ ├── prometheus-roleConfig.yaml │ │ ├── prometheus-roleSpecificNamespaces.yaml │ │ ├── prometheus-service.yaml │ │ ├── prometheus-serviceAccount.yaml │ │ ├── prometheus-serviceMonitor.yaml │ │ └── setup │ │ ├── 0namespace-namespace.yaml │ │ ├── prometheus-operator-0alertmanagerConfigCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0alertmanagerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0podmonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0probeCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusruleCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0servicemonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0thanosrulerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-clusterRole.yaml │ │ ├── prometheus-operator-clusterRoleBinding.yaml │ │ ├── prometheus-operator-deployment.yaml │ │ ├── prometheus-operator-service.yaml │ │ └── prometheus-operator-serviceAccount.yaml ├── others │ ├── ReplicaSet.yaml │ ├── configmap-env.yaml │ ├── configmap-file.yaml │ ├── create-ns.yaml │ ├── hpa.yaml │ ├── ingress-controller.yaml │ ├── ingress-grafana-resource.yaml │ ├── metrics-api-server.yaml │ ├── ns.yaml │ ├── pv.yaml │ ├── pvc.yaml │ └── secret.yaml ├── rbac │ ├── aws-auth.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ └── svc-rolebinding.yaml └── services │ ├── ClusterIP.yaml │ ├── LoadBalancer.yaml │ └── nodePort.yaml ├── nginx ├── nginx-all.yaml ├── nginx-configmap.yaml ├── nginx-deployment.yaml ├── nginx-ingress.yaml └── nginx-service.yaml ├── persistentvolume ├── deploy.yaml ├── pv.yaml └── pvc.yaml ├── projects ├── sts.v1 │ └── deployments │ │ ├── ingress-controller.yaml │ │ ├── ingress-resource.yaml │ │ ├── pv.yaml │ │ ├── sts-api-gateway-service.yaml │ │ ├── sts-api-gateway.yaml │ │ ├── sts-mong-ststefulset.yaml │ │ ├── sts-mongo-service.yaml │ │ ├── sts-mongo.yaml │ │ ├── sts-position-simulator.yaml │ │ ├── sts-position-tracker-service.yaml │ │ ├── sts-position-tracker.yaml │ │ ├── sts-queue-service-clusterip.yaml │ │ ├── sts-queue-service.yaml │ │ ├── sts-queue.yaml │ │ ├── sts-webapp-service.yaml │ │ ├── sts-webapp.yaml │ │ └── webapp-service-clusterip.yaml └── sts.v2 │ ├── deployments │ ├── ingress-controller.yaml │ ├── ingress-istio-kiali.yaml │ ├── ingress-pt.yaml │ ├── ingress-queue.yaml │ ├── ingress-www.yaml │ ├── pv.yaml │ ├── sts-api-gateway-service.yaml │ ├── sts-api-gateway.yaml │ ├── sts-mong-ststefulset.yaml │ ├── sts-mongo-service.yaml │ ├── sts-position-simulator.yaml │ ├── sts-position-tracker-service.yaml │ ├── sts-position-tracker.yaml │ ├── sts-queue-service-clusterip.yaml │ ├── sts-queue.yaml │ ├── sts-webapp.yaml │ └── webapp-service-clusterip.yaml │ └── sts-source │ ├── sts-api-gateway │ ├── Dockerfile │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── application-local-microservice.properties │ │ ├── application-localhost.properties │ │ └── application-production-microservice.properties │ ├── sts-mongo │ └── Dockerfile │ ├── sts-position-simulator │ ├── Dockerfile │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── application-local-microservice.properties │ │ ├── application-localhost.properties │ │ └── application-production-microservice.properties │ ├── sts-position-tracker │ ├── Dockerfile │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── application-local-microservice.properties │ │ ├── application-localhost.properties │ │ ├── application-production-microservice.properties │ │ └── application-standalone.properties │ └── sts-queue │ └── Dockerfile ├── whoami ├── whoami-deployment.yaml ├── whoami-ingress.yaml ├── whoami-service-ClusterIP.yaml ├── whoami-service-loadbalancer.yaml └── whoami-service-nodeport.yaml └── wordpress ├── mysql.yml └── wordpress.yml /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkins/Jenkins-CD/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CD/Dockerfile -------------------------------------------------------------------------------- /Jenkins/Jenkins-CD/Dockerfile.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CD/Dockerfile.1 -------------------------------------------------------------------------------- /Jenkins/Jenkins-CD/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkins/Jenkins-CD/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CD/serviceaccount.yaml -------------------------------------------------------------------------------- /Jenkins/Jenkins-CI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CI/Dockerfile -------------------------------------------------------------------------------- /Jenkins/Jenkins-CI/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CI/Jenkinsfile -------------------------------------------------------------------------------- /Jenkins/Jenkins-CI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-CI/README.md -------------------------------------------------------------------------------- /Jenkins/Jenkins-in-Pod/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-in-Pod/deployment.yaml -------------------------------------------------------------------------------- /Jenkins/Jenkins-in-Pod/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-in-Pod/ingress-controller.yaml -------------------------------------------------------------------------------- /Jenkins/Jenkins-in-Pod/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-in-Pod/ingress.yaml -------------------------------------------------------------------------------- /Jenkins/Jenkins-in-Pod/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-in-Pod/service.yaml -------------------------------------------------------------------------------- /Jenkins/Jenkins-in-Pod/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/Jenkins/Jenkins-in-Pod/serviceaccount.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /alpine/alpine-pod-2-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/alpine/alpine-pod-2-containers.yaml -------------------------------------------------------------------------------- /alpine/alpine-pod-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/alpine/alpine-pod-service-account.yaml -------------------------------------------------------------------------------- /alpine/alpine-pod-share-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/alpine/alpine-pod-share-volumes.yaml -------------------------------------------------------------------------------- /alpine/alpine-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/alpine/alpine-pod.yaml -------------------------------------------------------------------------------- /configmap/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/configmap/configmap.yaml -------------------------------------------------------------------------------- /daemonset/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/daemonset/daemonset.yaml -------------------------------------------------------------------------------- /dashboards/dashy/dashy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/dashboards/dashy/dashy.yml -------------------------------------------------------------------------------- /dashboards/heimdall/heimdall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/dashboards/heimdall/heimdall.yml -------------------------------------------------------------------------------- /dashboards/homarr/homarr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/dashboards/homarr/homarr.yml -------------------------------------------------------------------------------- /database-management/adminer/adminer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/database-management/adminer/adminer.yml -------------------------------------------------------------------------------- /database-management/cloudBeaver/cloudBeaver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/database-management/cloudBeaver/cloudBeaver.yml -------------------------------------------------------------------------------- /database-management/pgadmin/pgadmin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/database-management/pgadmin/pgadmin.yml -------------------------------------------------------------------------------- /databases/influxdb/influxdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/databases/influxdb/influxdb.yml -------------------------------------------------------------------------------- /databases/mongodb/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/databases/mongodb/mongodb.yml -------------------------------------------------------------------------------- /databases/mysql/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/databases/mysql/mysql.yml -------------------------------------------------------------------------------- /databases/postgres/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/databases/postgres/postgres.yml -------------------------------------------------------------------------------- /deployment/deployment1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/deployment/deployment1.yaml -------------------------------------------------------------------------------- /deployment/recreate-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/deployment/recreate-deployment.yaml -------------------------------------------------------------------------------- /deployment/rolling-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/deployment/rolling-deployment.yaml -------------------------------------------------------------------------------- /elasticsearch/es-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/elasticsearch/es-sts.yaml -------------------------------------------------------------------------------- /elasticsearch/es-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/elasticsearch/es-svc.yaml -------------------------------------------------------------------------------- /grafana/grafana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/grafana/grafana.yml -------------------------------------------------------------------------------- /helm/dpt-helm-sample/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/helm/dpt-helm-sample/Chart.yaml -------------------------------------------------------------------------------- /helm/dpt-helm-sample/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/helm/dpt-helm-sample/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/dpt-helm-sample/templates/nodePort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/helm/dpt-helm-sample/templates/nodePort.yaml -------------------------------------------------------------------------------- /helm/dpt-helm-sample/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/helm/dpt-helm-sample/values.yaml -------------------------------------------------------------------------------- /ingress/appingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/ingress/appingress.yaml -------------------------------------------------------------------------------- /ingress/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/ingress/deploy.yaml -------------------------------------------------------------------------------- /ingress/todoingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/ingress/todoingress.yaml -------------------------------------------------------------------------------- /liveness/liveness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/liveness/liveness.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-nodeselector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-nodeselector.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-pod-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-pod-1.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-pod-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-pod-2.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-svc-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-svc-account.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-tolerations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-tolerations.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-with-configmap-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-with-configmap-env.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-with-configmap-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-with-configmap-file.yaml -------------------------------------------------------------------------------- /manifests/deployment/deploy-with-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deploy-with-secret.yaml -------------------------------------------------------------------------------- /manifests/deployment/deployment-healthprobes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deployment-healthprobes.yaml -------------------------------------------------------------------------------- /manifests/deployment/deployment-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deployment-pvc.yaml -------------------------------------------------------------------------------- /manifests/deployment/deployment-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/deployment/deployment-requests.yaml -------------------------------------------------------------------------------- /manifests/elk/elastic-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/elk/elastic-stack.yaml -------------------------------------------------------------------------------- /manifests/elk/fluentd-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/elk/fluentd-config.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-alertmanager.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-podDisruptionBudget.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-secret.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/alertmanager-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-configuration.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-deployment.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/blackbox-exporter-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardDatasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardDatasources.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardDefinitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardDefinitions.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardSources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-dashboardSources.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-deployment.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/grafana-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/grafana-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-prometheus-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-prometheus-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-deployment.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kube-state-metrics-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorApiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorApiserver.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorCoreDNS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorCoreDNS.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubeControllerManager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubeControllerManager.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubeScheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubeScheduler.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubelet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/kubernetes-serviceMonitorKubelet.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-daemonset.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/node-exporter-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-apiService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-apiService.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleAggregatedMetricsReader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleAggregatedMetricsReader.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleBindingDelegator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleBindingDelegator.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleServerResources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-clusterRoleServerResources.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-configMap.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-deployment.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-podDisruptionBudget.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-roleBindingAuthReader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-roleBindingAuthReader.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-adapter-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-operator-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-operator-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-operator-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-operator-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-podDisruptionBudget.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-prometheus.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleBindingConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleBindingConfig.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleBindingSpecificNamespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleBindingSpecificNamespaces.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleConfig.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleSpecificNamespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-roleSpecificNamespaces.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/prometheus-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/prometheus-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/0namespace-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: monitoring 5 | -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0alertmanagerConfigCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0alertmanagerConfigCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0alertmanagerCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0alertmanagerCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0podmonitorCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0podmonitorCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0probeCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0probeCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0prometheusCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0prometheusCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0prometheusruleCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0prometheusruleCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0servicemonitorCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0servicemonitorCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0thanosrulerCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-0thanosrulerCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-deployment.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-service.yaml -------------------------------------------------------------------------------- /manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/grafana/prometheus-grafana-stack/manifests/setup/prometheus-operator-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/others/ReplicaSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/ReplicaSet.yaml -------------------------------------------------------------------------------- /manifests/others/configmap-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/configmap-env.yaml -------------------------------------------------------------------------------- /manifests/others/configmap-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/configmap-file.yaml -------------------------------------------------------------------------------- /manifests/others/create-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/create-ns.yaml -------------------------------------------------------------------------------- /manifests/others/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/hpa.yaml -------------------------------------------------------------------------------- /manifests/others/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/ingress-controller.yaml -------------------------------------------------------------------------------- /manifests/others/ingress-grafana-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/ingress-grafana-resource.yaml -------------------------------------------------------------------------------- /manifests/others/metrics-api-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/metrics-api-server.yaml -------------------------------------------------------------------------------- /manifests/others/ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: dev 5 | -------------------------------------------------------------------------------- /manifests/others/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/pv.yaml -------------------------------------------------------------------------------- /manifests/others/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/pvc.yaml -------------------------------------------------------------------------------- /manifests/others/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/others/secret.yaml -------------------------------------------------------------------------------- /manifests/rbac/aws-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/rbac/aws-auth.yaml -------------------------------------------------------------------------------- /manifests/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/rbac/role.yaml -------------------------------------------------------------------------------- /manifests/rbac/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/rbac/rolebinding.yaml -------------------------------------------------------------------------------- /manifests/rbac/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/rbac/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/rbac/svc-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/rbac/svc-rolebinding.yaml -------------------------------------------------------------------------------- /manifests/services/ClusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/services/ClusterIP.yaml -------------------------------------------------------------------------------- /manifests/services/LoadBalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/services/LoadBalancer.yaml -------------------------------------------------------------------------------- /manifests/services/nodePort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/manifests/services/nodePort.yaml -------------------------------------------------------------------------------- /nginx/nginx-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/nginx/nginx-all.yaml -------------------------------------------------------------------------------- /nginx/nginx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/nginx/nginx-configmap.yaml -------------------------------------------------------------------------------- /nginx/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/nginx/nginx-deployment.yaml -------------------------------------------------------------------------------- /nginx/nginx-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/nginx/nginx-ingress.yaml -------------------------------------------------------------------------------- /nginx/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/nginx/nginx-service.yaml -------------------------------------------------------------------------------- /persistentvolume/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/persistentvolume/deploy.yaml -------------------------------------------------------------------------------- /persistentvolume/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/persistentvolume/pv.yaml -------------------------------------------------------------------------------- /persistentvolume/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/persistentvolume/pvc.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/ingress-controller.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/ingress-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/ingress-resource.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/pv.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-api-gateway-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-api-gateway-service.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-api-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-api-gateway.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-mong-ststefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-mong-ststefulset.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-mongo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-mongo-service.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-mongo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-mongo.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-position-simulator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-position-simulator.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-position-tracker-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-position-tracker-service.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-position-tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-position-tracker.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-queue-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-queue-service-clusterip.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-queue-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-queue-service.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-queue.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-webapp-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-webapp-service.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/sts-webapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/sts-webapp.yaml -------------------------------------------------------------------------------- /projects/sts.v1/deployments/webapp-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v1/deployments/webapp-service-clusterip.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/ingress-controller.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/ingress-istio-kiali.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/ingress-istio-kiali.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/ingress-pt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/ingress-pt.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/ingress-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/ingress-queue.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/ingress-www.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/ingress-www.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/pv.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-api-gateway-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-api-gateway-service.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-api-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-api-gateway.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-mong-ststefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-mong-ststefulset.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-mongo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-mongo-service.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-position-simulator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-position-simulator.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-position-tracker-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-position-tracker-service.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-position-tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-position-tracker.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-queue-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-queue-service-clusterip.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-queue.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/sts-webapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/sts-webapp.yaml -------------------------------------------------------------------------------- /projects/sts.v2/deployments/webapp-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/deployments/webapp-service-clusterip.yaml -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-api-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-api-gateway/Dockerfile -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-api-gateway/pom.xml -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-api-gateway/src/main/resources/application-local-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-api-gateway/src/main/resources/application-local-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-api-gateway/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- 1 | position-tracker-url=http://localhost:8090 2 | server.port = 8080 3 | -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-api-gateway/src/main/resources/application-production-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-api-gateway/src/main/resources/application-production-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-mongo/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mongo:3.6.5-jessie 2 | MAINTAINER PR Reddy "trainings@edwiki.in" -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-simulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-simulator/Dockerfile -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-simulator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-simulator/pom.xml -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-local-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-local-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-production-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-simulator/src/main/resources/application-production-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/Dockerfile -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/pom.xml -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-local-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-local-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-production-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-production-microservice.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-standalone.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-position-tracker/src/main/resources/application-standalone.properties -------------------------------------------------------------------------------- /projects/sts.v2/sts-source/sts-queue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/projects/sts.v2/sts-source/sts-queue/Dockerfile -------------------------------------------------------------------------------- /whoami/whoami-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/whoami/whoami-deployment.yaml -------------------------------------------------------------------------------- /whoami/whoami-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/whoami/whoami-ingress.yaml -------------------------------------------------------------------------------- /whoami/whoami-service-ClusterIP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/whoami/whoami-service-ClusterIP.yaml -------------------------------------------------------------------------------- /whoami/whoami-service-loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/whoami/whoami-service-loadbalancer.yaml -------------------------------------------------------------------------------- /whoami/whoami-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/whoami/whoami-service-nodeport.yaml -------------------------------------------------------------------------------- /wordpress/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/wordpress/mysql.yml -------------------------------------------------------------------------------- /wordpress/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Kubernetes/HEAD/wordpress/wordpress.yml --------------------------------------------------------------------------------