├── .gitignore ├── 1.23 ├── 01-base-app │ ├── 00-priorityclass.yaml │ ├── 01-nfs.yaml │ └── README.md ├── 02-metallb │ ├── README.md │ └── mlb.yaml ├── 03-ingress-controller │ ├── README.md │ └── my-values.yaml ├── 04-argocd │ ├── 00-certs.yaml │ ├── 01-ingress.yaml │ ├── 02-argocd-cm.yaml │ ├── 03-argocd-rbac-cm.yaml │ └── README.md ├── 05-postgresql │ ├── README.md │ └── pgadmin │ │ ├── argo │ │ └── argo-app.yaml │ │ └── manifestst │ │ └── pgadmin.yaml ├── 06-monitoring │ ├── 01-kube-state-metrics-and-node-exporter │ │ ├── README.md │ │ └── argoapp.yaml │ ├── 02-victoriametrics │ │ ├── README.md │ │ ├── argoapp.yaml │ │ └── values.yaml │ ├── 03-vmagent │ │ ├── README.md │ │ ├── argoapp.yaml │ │ └── values.yaml │ └── README.md ├── 07-rancher │ └── 2.6 │ │ └── README.md ├── 08-dasboard │ ├── README.md │ └── manifests │ │ ├── admin_user.yaml │ │ ├── ingress.yaml │ │ └── recommended.yaml ├── README.md ├── argo-sys-project.yaml └── charts │ ├── 01-ksm-and-node-exporter │ ├── Chart.yaml │ └── values.yaml │ ├── 02-victoriametrics │ ├── Chart.yaml │ ├── my-values.yaml │ └── values.yaml │ ├── 03-vmagent │ ├── Chart.yaml │ ├── my-values.yaml │ └── values.yaml │ └── README.md ├── 1.25 ├── 00-ansible │ └── README.md ├── 01-base-app │ ├── 00-priorityclass.yaml │ ├── 01-nfs.yaml │ └── README.md ├── 02-metallb │ ├── README.md │ └── mlb.yaml ├── 03-ingress-controller │ ├── README.md │ └── my-values.yaml ├── 04-argocd │ ├── 01-argocd.yaml │ ├── 02-service-nodeport.yaml │ ├── 03-service-lb.yaml │ ├── 04-certs.yaml │ ├── 05-ingress.yaml │ ├── 06-argo-cm.yaml │ ├── 07-argo-rbac.yaml │ └── README.md ├── 05-dashboard │ ├── 00-admin-user.yaml │ ├── 01-ingress.yaml │ └── README.md ├── 06-monitoring │ ├── 00-node-exporter-ns.yaml │ ├── 02-ne.yaml │ └── README.md ├── 07-postgresql │ ├── README.md │ ├── pgadmin │ │ ├── argo │ │ │ └── argo-app.yaml │ │ └── manifests │ │ │ └── pgadmin.yaml │ └── postgresql │ │ ├── argo │ │ └── argo-app.yaml │ │ └── manifests │ │ └── postgreesql.yaml └── argo-sys-project.yaml ├── 1.26 ├── 00-ansible │ └── README.md ├── 01-base-app │ ├── 00-priorityclass.yaml │ ├── 01-nfs-k3s.yaml │ ├── 01-nfs.yaml │ ├── README.md │ └── metrics-server.yaml ├── 02-metallb │ ├── README.md │ └── mlb.yaml ├── 03-ingress-controller │ ├── README.md │ └── my-values.yaml ├── 04-argocd │ ├── 01-2.9.3-argocd.yaml │ ├── 01-argocd.yaml │ ├── 02-service-nodeport.yaml │ ├── 03-service-lb.yaml │ ├── 04-certs.yaml │ ├── 05-ingress-k3s.yaml │ ├── 05-ingress.yaml │ ├── 06-argo-cm.yaml │ ├── 07-argo-rbac.yaml │ ├── README.md │ └── argo-values.yaml ├── 05-postgresql │ ├── README.md │ ├── pgadmin │ │ ├── argo │ │ │ └── argo-app.yaml │ │ └── manifests │ │ │ └── pgadmin.yaml │ ├── postgresql │ │ ├── argo │ │ │ └── argo-app.yaml │ │ └── manifests │ │ │ └── postgreesql.yaml │ └── spilo │ │ ├── spilo.yaml │ │ └── spilo │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── enpoint.yaml │ │ ├── job-secret.yaml │ │ ├── job.yaml │ │ ├── role.yaml │ │ ├── roleBinding.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceAccount.yaml │ │ └── statefulset.yaml │ │ └── values.yaml └── README.md ├── 1.31 ├── 01-base-app │ ├── 00-priorityclass.yaml │ ├── 01-nfs.yaml │ ├── 02-certs.yaml │ ├── README.md │ └── metrics-server.yaml ├── 02-metallb │ ├── README.md │ └── mlb.yaml ├── 03-ingress-controller │ ├── README.md │ └── my-values.yaml ├── 04-argocd │ ├── README.md │ └── argo-values.yaml ├── 05-redis │ ├── README.md │ ├── bitnami-argo-repo.yaml │ ├── redis-argo-app.yaml │ └── redis-values.yaml ├── 06-postgresql │ ├── ERADME.md │ ├── argo │ │ └── argo-app.yaml │ └── manifests │ │ └── postgreesql.yaml ├── 07-harbor │ ├── README.md │ ├── harbor-argo-app.yaml │ ├── harbor-values.yaml │ └── test.yaml └── README.md ├── For programmers ├── Dockerfile ├── README.md ├── manifests │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── src │ ├── .env │ ├── app │ └── server │ │ ├── config.go │ │ ├── index.go │ │ └── server.go │ ├── cmd │ └── main │ │ └── main.go │ ├── go.mod │ ├── go.sum │ └── templates │ └── index.html ├── PriorityClass ├── 00-ns.yaml ├── 01-pc.yaml ├── 02-deployment.yaml └── README.md ├── README.md ├── StatefullSet ├── README.md ├── pod-name-label │ ├── ingress.yaml │ └── services.yaml └── stable-network-id │ ├── cm.yaml │ ├── ingress.yaml │ ├── services.yaml │ └── sts.yaml ├── Utils ├── README.md ├── cicd-template │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── cicd-template.go │ ├── cicd-values.yaml │ ├── go.mod │ ├── go.sum │ └── values.template ├── gitflic │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── postgresql-13.2.24.tgz │ │ └── redis-18.5.0.tgz │ ├── gitflic.Dockerfile │ ├── mailrelay.Dockerfile │ ├── my-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── job-db.yaml │ │ ├── mail-relay-cm.yaml │ │ ├── mail-relay-policy.yaml │ │ ├── mail-relay.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service-headless.yaml │ │ ├── service-ssh.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── sts.yaml │ └── values.yaml ├── helm+kubectl │ └── Dockerfile ├── k3s-dev │ ├── 00-priorityclass.yaml │ ├── 01-ingress-controller.yaml │ ├── 02-argocd.yaml │ ├── CA │ │ └── ca.yaml │ ├── README.md │ ├── argocd-apps │ │ ├── devcontainer.yaml │ │ ├── harbor-app.yaml │ │ ├── mail-relay-app.yaml │ │ ├── minio-app after delete console.yaml │ │ ├── minio-app.yaml │ │ ├── minio-console-app.yaml │ │ ├── postgre-app.yaml │ │ ├── redis-app.yaml │ │ └── reloader-app.yaml │ ├── ca.crt │ ├── charts │ │ ├── devcontainer.yaml │ │ ├── devcontainer │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── gitlab-runner.yaml │ │ ├── gitlab.yaml │ │ ├── harbor.yaml │ │ ├── minio-after-delete-console.yaml │ │ ├── minio.yaml │ │ └── redis.yaml │ ├── gitlab-secrets │ │ ├── fake-mail-password.yaml │ │ ├── initial-admin-password.yaml │ │ ├── minio-credentials.yaml │ │ ├── postgres-secret.yaml │ │ ├── redis-secret.yaml │ │ └── s3-credentials.yaml │ ├── k3s-application.md │ ├── manifests │ │ ├── mail-relay │ │ │ ├── mail-relay-cm.yaml │ │ │ └── mail-relay.yaml │ │ ├── minio-console │ │ │ └── minio-console.yaml │ │ ├── psql │ │ │ └── postgresql.yaml │ │ └── reloader │ │ │ ├── deployment.yaml │ │ │ └── rbac.yaml │ ├── ws.md │ └── ws │ │ ├── devcontainer │ │ ├── .gitlab-ci.yml │ │ ├── Dockerfile │ │ └── init-container.sh │ │ └── kubeutils │ │ ├── .gitlab-ci.yml │ │ └── Dockerfile ├── modified_busybox │ └── Dockerfile ├── uniproxy │ ├── .vscode │ │ └── launch.json │ ├── Dockerfile │ ├── README.md │ ├── apiserver │ │ ├── apiserver.go │ │ └── config.go │ ├── etc │ │ └── uniproxy │ │ │ └── uniproxy.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── uniproxy │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml └── vcluster │ ├── README.md │ ├── manifests │ ├── 01-test-app.yaml │ ├── 02-pvc.yaml │ └── 03-ingress.yaml │ └── values │ ├── 01-values.yaml │ ├── 02-values-quotas.yaml │ ├── 03-values-rootless.yaml │ ├── 04-values-sync-storage.yaml │ └── 05-values-sync-ingress.yaml ├── argocd ├── 00-certs.yaml ├── 01-clusterapp │ ├── 01-base │ │ └── 01-priorityclass.yaml │ ├── 01-nfs │ │ └── 01-nfs.yaml │ ├── 02-kube-system-ns │ │ ├── 01-metrics-server.yaml │ │ └── 02-kube-state-metrics.yaml │ ├── 03-ingress-nginx │ │ └── 01-ingress-controller.yaml │ ├── 04-monitoring-ns │ │ ├── 00-prometeus-config.yaml │ │ ├── 01-certs.yaml │ │ ├── 01-reloader.yaml │ │ ├── 02-node-exporter.yaml │ │ ├── 03-victoriametrics.yaml │ │ ├── 04-vmagent.yaml │ │ ├── 05-ingress.yml │ │ ├── 06-grafana-cm.yaml │ │ └── 07-grafana-deployment.yaml │ └── 05-logs │ │ ├── 01-fluentd-cm.yaml │ │ ├── 02-fluentd-pvc.yaml │ │ ├── 03-fluentd.yaml │ │ ├── 04-fluentbit-cm.yaml │ │ └── 05-flunetbit.yaml ├── 01-ingress-controller.yaml ├── 02-ingress.yaml ├── 03-argocd-cm.yaml ├── 04-argocd-rbac-cm.yaml ├── 05-project-system.yaml ├── README.md ├── applications │ ├── 01-base.yaml │ ├── 02-nfs.yaml │ ├── 03-kubesystem-metrics.yaml │ ├── 04-system-ingress-controller.yaml │ ├── 05-monitoring.yaml │ └── 06-logs.yaml ├── argo-1.yaml ├── argo-2.yaml ├── argo-values.yaml ├── avp │ ├── README.md │ ├── argo-test-app.yaml │ ├── argo-test-helm-app.yaml │ ├── manifests │ │ ├── test-secret.yaml │ │ └── test-secret2.yaml │ ├── my-argo-values.yaml │ ├── my-vault-values.yaml │ └── test-avp │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ └── secret.yaml │ │ └── values.yaml ├── images │ └── image1.jpg ├── notifications │ ├── README.md │ ├── argo-app │ │ ├── 00-notification.yaml │ │ └── 01-application.yaml │ └── manifests │ │ ├── 00-rbac.yaml │ │ ├── 01-configs.yaml │ │ ├── 02-deployment.yaml │ │ ├── app │ │ └── application.yaml │ │ └── secrets │ │ └── 00-secret.yaml └── update to 2.1 │ ├── README.md │ └── install.yaml ├── base ├── Crunchy PostgreSQL Operator │ ├── 00-svc-nodeport.yaml │ ├── 01-pv-pvc.yaml │ ├── 02-cluster.yaml │ ├── 03-pgadmin.yaml │ ├── 04-postgree-single.yaml │ ├── README.md │ └── images │ │ └── Schema1.jpg ├── etcd │ ├── Readme.md │ ├── argoapp │ │ └── 01.yaml │ └── my-values.yaml ├── local-path-provisioner │ ├── README.md │ └── manifests │ │ ├── 00-local-path-storage.yaml │ │ ├── 01-example-pvc.yaml │ │ ├── 02-example-pod.yaml │ │ └── 03-sts.yaml └── spilo │ ├── README.md │ ├── Spilo-manual.md │ ├── Spilo-operator.md │ ├── argo-app.yaml │ ├── charts │ ├── README.md │ └── final │ │ └── spilo-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── endpoints.yaml │ │ ├── pvc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── sa.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceheadless.yaml │ │ ├── servicereplicas.yaml │ │ └── sts.yaml │ │ └── values.yaml │ ├── left-manifests │ └── pgadmin.yaml │ ├── manifests │ ├── nodePort.yaml │ └── spilo_kubernetes.yaml │ └── operator │ ├── 01-config-map.yaml │ ├── 02-pvc.yaml │ ├── 03-test1-db.yaml │ ├── pgadmin │ └── manifests │ │ └── pgadmin.yaml │ ├── postgres-operator-ui-values.yaml │ └── postgres-operator-values.yaml ├── gatewayapi ├── GatewayAPI.drawio ├── README.md ├── container-ssh │ ├── Dockerfile │ └── init-container.sh ├── envoy.md ├── examples.md ├── examples │ ├── 00-test-applications.yaml │ ├── 01-gatewayclass.yaml │ ├── 02-certificate.yaml │ ├── 03-gateway.yaml │ ├── 04-http-https-route.yaml │ ├── 05-path-redirect.yaml │ ├── 06-rewrite.yaml │ ├── 07-header-modifiers.yaml │ ├── 08-canary.yaml │ ├── 09-blue-green.yaml │ └── apirequests.http ├── manifest-envoy │ ├── 00-test-application.yaml │ ├── 01-EnvoyProxy-Config.yaml │ ├── 02-gateway-class.yaml │ ├── 03-gateway.yaml │ ├── 04-http-route.yaml │ ├── 05-https-route.yaml │ ├── bonus.yaml │ ├── certs.yaml │ ├── gateway-cert.yaml │ └── mlb.yaml ├── manifests │ ├── 01-application-treaefik.yaml │ ├── 02-gateway.yaml │ ├── 03-echo-app.yaml │ ├── 04-http-route.yaml │ ├── 05-https-route.yaml │ ├── 06-gateway2.yaml │ ├── 07-https2-route.yaml │ ├── 08-container-ssh.yaml │ ├── 09-application-treaefik.yaml │ ├── 10-gateway3.yaml │ └── 11-tcproute.yaml └── update.md ├── gitlab ├── README.md ├── argocd │ ├── mail-relay-app.yaml │ ├── minio-app.yaml │ ├── minio-console-app.yaml │ ├── postgre-app.yaml │ └── redis-app.yaml ├── gl-values.yaml ├── minio-console │ └── manifests │ │ └── 02-console.yaml ├── postfix │ ├── README.md │ ├── container │ │ ├── Dockerfile │ │ ├── README.md │ │ └── main.cf.tmpl │ └── manifests │ │ ├── mail-relay-cm.yaml │ │ ├── mail-relay-policy.yaml │ │ └── mail-relay.yaml ├── postgresql │ └── manifests │ │ ├── pgadmin.yaml │ │ └── postgreesql.yaml └── runner │ ├── README.md │ └── my-values.yaml ├── harbor ├── README.md ├── argo-app │ ├── 00-harbor-project.yaml │ ├── 01-redis-app.yaml │ └── 02-bitnamy-harbor-manifest.yaml ├── bitnami │ ├── 01-bitnami-harbor-helm-app.yaml │ ├── 02-values.yaml │ └── app │ │ └── 01-harbor.yaml └── goharbor │ ├── 01-harbor-app.yaml │ ├── 02-ingress.yml │ └── README.md ├── hazelcast ├── README.md ├── chart │ ├── Chart.yaml │ └── values.yaml ├── hazelcast-app.yaml └── my-values.yaml ├── helm ├── 01-video-theory │ └── README.md ├── 02-video-app-metadata │ ├── README.md │ └── final-version │ │ ├── my-values.yaml │ │ ├── old-templates │ │ ├── deployment-orig.yaml │ │ ├── ingress-orig.yaml │ │ └── service-orig.yaml │ │ └── openresty-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-conf.yaml │ │ ├── configmap-html.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml ├── 03-video-spec │ ├── README.md │ └── final-version │ │ ├── app.yaml │ │ ├── my-values.yaml │ │ ├── old-templates │ │ ├── deployment-orig.yaml │ │ ├── ingress-orig.yaml │ │ └── service-orig.yaml │ │ └── openresty-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-conf.yaml │ │ ├── configmap-html.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml ├── 04-video-svc-ingress │ ├── README.md │ └── final-version │ │ ├── my-values.yaml │ │ ├── old-templates │ │ ├── deployment-orig.yaml │ │ ├── ingress-orig.yaml │ │ └── service-orig.yaml │ │ └── openresty-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-conf.yaml │ │ ├── configmap-html.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml ├── 05-video-cm │ ├── README.md │ └── final-version │ │ ├── default.conf │ │ ├── html │ │ ├── 50x.html │ │ └── index.html │ │ ├── my-values.yaml │ │ └── openresty-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-conf.yaml │ │ ├── configmap-html.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml ├── 06-video-final │ ├── README.md │ ├── my-values.yaml │ ├── myTemplates │ │ ├── README.md │ │ └── values.yaml │ └── openresty-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-conf.yaml │ │ ├── configmap-html.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── values.yaml ├── README.md ├── base-application │ ├── configmap-conf.yaml │ ├── configmap-html.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── charts │ ├── index.yaml │ └── openresty-art-0.1.0.tgz ├── istio ├── README.md ├── bookinfo │ ├── bookinfo-versions.yaml │ └── bookinfo.yaml ├── images │ └── isio01.jpg ├── install.md ├── istio.drawio ├── kiali.md ├── manifests-samples │ ├── 01-productpage-ap.yaml │ ├── 02-curl.yaml │ ├── 03-productpage-ap-curl.yaml │ ├── 04-waypoint-gw.yaml │ ├── 05-httpr-one-version.yaml │ ├── 06-httpr-one-two-version.yaml │ ├── 07-productpage.yaml │ └── 08-productpage-prom.yaml ├── manifests │ ├── 00-gateway-bookinfo.yaml │ ├── 01-kiali-sup-gateway.yaml │ ├── 02-prometheus-httpr.yaml │ ├── 03-dex.yaml │ └── 04-kiali-httpr.yaml ├── values │ ├── grafana-values.yaml │ ├── kiali-values.yaml │ └── prometheus-manifest.yaml └── work.md ├── jenkins ├── 00-ns.yaml ├── 01-rbac.yaml ├── 02-deployment.yaml ├── README.md ├── docker-inbound-agent │ └── Dockerfile └── docker-jenkins │ └── Dockerfile ├── k3s ├── 00-ansible │ ├── ansible.cfg │ ├── group_vars │ │ └── k3s_cluster │ ├── hosts.txt │ ├── ping.yaml │ ├── poweroff.yaml │ ├── prepare-hosts.yaml │ └── roles │ │ ├── poweroff │ │ └── tasks │ │ │ └── main.yaml │ │ └── prepare-hosts │ │ └── tasks │ │ └── main.yaml ├── 01-dev │ ├── README.md │ └── manifests │ │ ├── 01-pvc.yaml │ │ ├── 02-deployment.yaml │ │ ├── 03-nodeport.yaml │ │ ├── 04-loadbalancer.yaml │ │ ├── 05-ingress.yaml │ │ └── 06-s3-helm.yaml ├── README.md └── WSL.md ├── k8s-step-by-step ├── 00-planning │ ├── README.md │ └── images │ │ ├── components.jpg │ │ ├── flow.jpg │ │ └── vms.jpg ├── 01-install │ ├── 00-ansible │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ └── k8s_cluster │ │ ├── hosts.txt │ │ ├── ping.yaml │ │ ├── poweroff.yaml │ │ ├── prepare-hosts.yaml │ │ └── roles │ │ │ ├── poweroff │ │ │ └── tasks │ │ │ │ └── main.yaml │ │ │ └── prepare-hosts │ │ │ └── tasks │ │ │ └── main.yaml │ ├── 01-kubespray │ │ ├── README.md │ │ └── cluster │ │ │ └── inventory.ini │ ├── README.md │ └── vagrant │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── bootstrap.sh │ │ └── master_bootstrap.sh ├── 02-utils │ ├── 00-namespace.yaml │ ├── 01-priority-class.yaml │ ├── 02-0-reloader.yaml │ ├── 02-1-test-app.yaml │ ├── 03-metrics-server.yaml │ ├── 04-nfs.yaml │ └── README.md ├── 03-utils │ ├── 01-ingress-controller.yaml │ ├── 02-certs.yaml │ ├── 03-netdata-ingress.yaml │ └── README.md ├── 04-monitoring victoriametrics + prometheus │ ├── 00-certs.yaml │ ├── 01-ingress.yml │ ├── 01-victoriametrics │ │ ├── README.md │ │ └── victoria-deployment.yaml │ ├── 02-prometheus │ │ ├── 01-configmap-start.yaml │ │ ├── 01-exporters │ │ │ ├── kube-state-metrics.yaml │ │ │ └── node-exporter.yaml │ │ ├── 02-configmap-final.yaml │ │ ├── 02-configmaps │ │ │ ├── 01-configmap.yaml │ │ │ ├── 02-configmap.yaml │ │ │ ├── 03-configmap.yaml │ │ │ ├── 04-configmap.yaml │ │ │ ├── 05-configmap.yaml │ │ │ ├── 06-configmap.yaml │ │ │ ├── 07-configmap.yaml │ │ │ ├── 08-configmap.yaml │ │ │ └── 09-configmap.yaml │ │ ├── 03-etcd │ │ │ ├── 00-secret.yaml │ │ │ ├── 01-configmap.yaml │ │ │ ├── 02-prom-deployment.yaml │ │ │ └── README.md │ │ ├── 03-prom-deployment.yaml │ │ └── README.md │ ├── 03-grafana │ │ ├── 01-configmaps.yaml │ │ ├── 02-grafana-deployment.yaml │ │ ├── README.md │ │ ├── ingress-grafana-dashboard-1.json │ │ └── ingress-grafana-dashboard-2.json │ ├── README.md │ └── images │ │ └── scheme.jpg ├── 05-monitoring victoriametrics only │ ├── 00-exporters │ │ ├── kube-state-metrics.yaml │ │ └── node-exporter.yaml │ ├── 00-prometeus-config.yaml │ ├── 01-victoriametrics only │ │ ├── 01-victoriametrics.yaml │ │ └── 02-ingress.yml │ ├── 02-grafana │ │ ├── 01-configmaps.yaml │ │ ├── 02-grafana-deployment.yaml │ │ ├── README.md │ │ ├── ingress-grafana-dashboard-1.json │ │ └── ingress-grafana-dashboard-2.json │ ├── 03-vmagent │ │ ├── 01-victoriametrics.yaml │ │ ├── 02-vmagent.yaml │ │ └── 03-ingress.yml │ ├── README.md │ └── images │ │ └── explore.jpg ├── 06-logs │ ├── 01-fluentd-cm.yaml │ ├── 02-fluentd-pvc.yaml │ ├── 03-fluentd.yaml │ ├── 04-fluentbit-cm.yaml │ ├── 05-flunetbit.yaml │ ├── README.md │ └── images │ │ └── logs.jpg └── 07-starter │ ├── 00-ansible │ ├── ansible.cfg │ ├── hosts.txt │ ├── nerd-login.yaml │ ├── ping.yaml │ ├── prepare-cluster.yaml │ ├── prepare-hosts.yaml │ └── roles │ │ ├── ca │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── handlers │ │ │ └── main.yaml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── docker │ │ ├── defaults │ │ │ └── main.yaml │ │ └── tasks │ │ │ └── main.yaml │ │ ├── nexus │ │ ├── defaults │ │ │ └── main.yaml │ │ ├── tasks │ │ │ └── main.yaml │ │ └── templates │ │ │ └── nginx.conf.j2 │ │ └── prepare-hosts │ │ ├── files │ │ ├── load-i.sh │ │ ├── tags.sh │ │ └── upload-files.sh │ │ └── tasks │ │ └── main.yaml │ ├── README.md │ └── images │ ├── docker-hub.jpg │ ├── files_raw.jpg │ ├── role.jpg │ └── user.jpg ├── kafka ├── README.md ├── argo-app │ └── kafka-app.yaml ├── kafka-art │ ├── .helmignore │ ├── Chart.yaml │ ├── charts │ │ └── kafdrop │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ │ ├── values-kafdrop.yaml │ │ │ └── values.yaml │ ├── values-k1.yaml │ ├── values-k2.yaml │ ├── values-k3.yaml │ ├── values-k4.yaml │ └── values.yaml └── manifests │ ├── ca.yaml │ ├── kafka-client-ssl.yaml │ ├── kafka-ssl.yaml │ └── zoo-ssl.yaml ├── keycloak ├── 00-certs.yaml ├── 01-keycloak-simple.yaml ├── README.md ├── argo-app │ ├── 00-iam-project.yaml │ ├── 01-keycloak-app.yaml │ └── 02-keycloak-app-sts.yaml ├── gatekeeper │ ├── README.md │ ├── argo-app │ │ ├── argo-app-v1.yaml │ │ ├── argo-app-v2.yaml │ │ ├── argo-app-v3.yaml │ │ └── project.yaml │ ├── manifests-v1 │ │ ├── 01-configmaps.yaml │ │ ├── 02-deployments.yaml │ │ └── 03-ingress.yaml │ ├── manifests-v2 │ │ ├── 01-gatekeeper-cm.yaml │ │ ├── 01-openresty-cm.yaml │ │ ├── 02-openresty.yaml │ │ ├── 03-gatekeeper.yaml │ │ └── 04-ingress.yaml │ └── manifests-v3 │ │ ├── 01-gatekeeper-cm.yaml │ │ ├── 01-openresty-cm.yaml │ │ ├── 02-openresty.yaml │ │ ├── 03-gatekeeper.yaml │ │ ├── 04-ingress.yaml │ │ ├── README.md │ │ └── secrets │ │ └── secrets.yaml ├── manifests-sts │ ├── 01-secrets.yaml │ ├── 02-keycloak.yaml │ └── 03-ingress.yaml ├── manifests │ ├── 01-secrets.yaml │ ├── 02-keycloak.yaml │ └── 03-ingress.yaml ├── metallb │ ├── 00-mlb.yaml │ └── 01-lb-ingress-controller-svc.yaml └── values.yaml ├── kubeadm ├── README.md ├── another-control-nodes.md ├── certificates.md ├── check.md ├── delete_node.md ├── first_control_node.md ├── ha_cluster.md ├── images │ ├── dns1.jpg │ └── ha_cluster.jpg ├── manifests │ ├── calico-install.yaml │ └── nodelocaldns-daemonset.yaml ├── preliminary_actions.md ├── test_stand.md ├── update.md ├── why_not_kubespray.md └── worker-nodes.md ├── kyverno ├── README.md ├── containers │ └── demoapp.Dockerfile ├── install.md ├── manifests │ ├── 01-kyverno-project.yaml │ ├── 02-kyverno-app.yaml │ ├── 03-kyverno-policy-reporter.yaml │ └── user-manifests │ │ ├── 01-test-app.yaml │ │ └── 02-test-app-srepo.yaml ├── mutate.md ├── polices │ ├── 01-non-root.yaml │ ├── 02-hostpath.yaml │ ├── 03-project-copy-secret.yaml │ └── 04-project-insert-imagepoolsecret.yaml ├── reporting.md ├── roles │ └── 01-secret.yaml ├── usage.md └── validate.md ├── logs └── async │ ├── README.md │ ├── argo-app │ ├── es-app.yaml │ ├── fluentbit-app.yaml │ ├── kafdrop-app.yaml │ ├── kafka-app.yaml │ ├── opensearch-app.yaml │ └── vector-app.yaml │ ├── charts │ ├── es-art │ │ ├── Chart.yaml │ │ ├── values-es-auth.yaml │ │ ├── values-es.yaml │ │ └── values.yaml │ ├── fluent-bit-art │ │ ├── Chart.yaml │ │ ├── values-fb.yaml │ │ └── values.yaml │ ├── kafdrop │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ ├── values-kafdrop.yaml │ │ └── values.yaml │ ├── kafka-art │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── values-kafka.yaml │ │ └── values.yaml │ ├── opensearch-art │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── values-opensearch.yaml │ │ └── values.yaml │ └── vector-art │ │ ├── Chart.yaml │ │ ├── values-vector-es.yaml │ │ ├── values-vector-opensearch.yaml │ │ └── values.yaml │ └── images │ └── s1.jpg ├── loki ├── 00-argo-app │ └── 00-loki-project.yaml ├── 01-loki │ ├── README.md │ ├── argo-app │ │ └── argo-app.yaml │ ├── images │ │ └── sh_1.jpg │ ├── manifests │ │ ├── 01-secrets.yaml │ │ └── 02-loki.yaml │ └── values.yaml ├── 02-grafana │ ├── README.md │ ├── argo-app │ │ └── argo-app.yaml │ └── manifests │ │ ├── 01-configmaps.yaml │ │ ├── 02-grafana-deployment.yaml │ │ └── 03-ingress.yaml ├── 03-fluentbit │ ├── README.md │ ├── argo-app │ │ └── argo-app.yaml │ ├── grafana-fb │ │ ├── 01-fluentbit-cm.yaml │ │ └── 02-flunetbit.yaml │ └── manifests │ │ ├── 01-fluentbit-cm.yaml │ │ └── 02-flunetbit.yaml └── README.md ├── longhorn ├── 00-ansible │ ├── files │ │ └── modules-iscsi.conf │ ├── hosts.yaml │ └── prepare_host.yaml ├── README.md ├── images │ ├── new.jpg │ └── old.jpg ├── manifests │ ├── 00-basic-auth-secret.yaml │ ├── 01-ingress-ui.yaml │ └── 02-storage-class.yaml ├── postgresql │ ├── pgadmin.yaml │ └── postgreesql.yaml ├── prepare.sh └── values.yaml ├── minio ├── README.md ├── argo-app │ ├── argo-app.yaml │ └── project.yaml ├── images │ └── sh1.jpg ├── manifests │ ├── 00-secrets.yaml │ ├── 01-minio.yaml │ ├── 02-console.yaml │ └── 03-ingress.yaml └── values.yaml ├── monitoring ├── README.md ├── argo-app │ ├── 01-ksm.yaml │ ├── 02-nexporter.yaml │ ├── 03-victoriametrics.yaml │ ├── 04-vmagent.yaml │ ├── 05-grafana.yaml │ ├── 06-alertmanager.yaml │ ├── 07-vmalert.yaml │ ├── 08-karma.yaml │ └── 09-reloader.yaml ├── argo-project │ └── project.yaml ├── charts │ ├── alertmanager │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ └── values.yaml │ ├── grafana │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ └── ingress.yaml │ │ └── values.yaml │ ├── karma │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ └── values.yaml │ ├── ksm │ │ ├── Chart.yaml │ │ ├── README.md │ │ └── values.yaml │ ├── nexporter │ │ ├── Chart.yaml │ │ ├── README.md │ │ └── values.yaml │ ├── vm │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ └── values.yaml │ ├── vmagent │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ └── values.yaml │ └── vmalert │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── my-values.yaml │ │ └── values.yaml ├── final │ ├── README.md │ ├── argo-app │ │ ├── 01-ksm.yaml │ │ ├── 02-nexporter.yaml │ │ ├── 03-victoriametrics.yaml │ │ ├── 04-vmagent.yaml │ │ ├── 05-grafana.yaml │ │ ├── 06-alertmanager.yaml │ │ ├── 07-vmalert.yaml │ │ ├── 08-karma.yaml │ │ └── 09-reloader.yaml │ ├── charts │ │ ├── ksm │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ └── values.yaml │ │ ├── nexporter │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ └── values.yaml │ │ ├── vm │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── my-values.yaml │ │ │ └── values.yaml │ │ └── vmagent │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── my-values.yaml │ │ │ └── values.yaml │ ├── dashboards │ │ ├── daemonset.json │ │ ├── deployment.json │ │ ├── ingress-nginx.json │ │ ├── k8s.json │ │ ├── main.json │ │ ├── node-exporter.json │ │ ├── nodes.json │ │ ├── pod.json │ │ ├── pods-alert.json │ │ ├── pods.json │ │ ├── sts.json │ │ └── victoria.json │ └── manifests │ │ ├── alertmanager │ │ ├── 01-cm-config.yaml │ │ ├── 01-cm-templates.yaml │ │ └── 03-sts.yaml │ │ ├── certs │ │ └── certs.yaml │ │ ├── grafana │ │ ├── 01-sec.yaml │ │ ├── 02-pvc.yaml │ │ ├── 03-deployment.yaml │ │ ├── 04-cm-config.yaml │ │ ├── cm_daemonset.yaml │ │ ├── cm_deployment.yaml │ │ ├── cm_ingress-nginx.yaml │ │ ├── cm_k8s.yaml │ │ ├── cm_main.yaml │ │ ├── cm_node-exporter.yaml │ │ ├── cm_nodes.yaml │ │ ├── cm_pod.yaml │ │ ├── cm_pods-alert.yaml │ │ ├── cm_pods.yaml │ │ ├── cm_sts.yaml │ │ └── cm_victoria.yaml │ │ ├── karma │ │ ├── 01-services.yaml │ │ ├── 02-cm.yaml │ │ └── 03-deployment.yaml │ │ ├── makeb64.sh │ │ ├── reloader │ │ └── reloader.yaml │ │ └── vmalert │ │ ├── 00-add.yaml │ │ ├── 01-vmalert-dep.yaml │ │ ├── cm-alert-kube.yaml │ │ └── cm-alert-node-exporter.yaml ├── images │ └── image1.jpg ├── manifests │ ├── certs │ │ └── certs.yaml │ ├── reloader │ │ └── reloader.yaml │ └── vmalert │ │ ├── add.yaml │ │ ├── cm-alert-cpu.yaml │ │ └── vmalert-dep.yaml ├── video04.md ├── video05 │ ├── README.md │ ├── argo-app │ │ ├── 05-grafana-manifests.yaml │ │ └── 05-grafana.yaml │ ├── charts │ │ └── grafana │ │ │ ├── 01-my-values.yaml │ │ │ ├── 02-my-values.yaml │ │ │ ├── 03-my-values.yaml │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ └── with-image-renderer-values.yaml │ │ │ │ ├── dashboards │ │ │ │ ├── custom-dashboard.json │ │ │ │ └── node-exporter.json │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ │ └── values.yaml │ │ │ ├── my-values.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ └── ingress.yaml │ │ │ └── values.yaml │ ├── dashboards │ │ └── node-exporter.json │ └── manifests │ │ └── grafana │ │ ├── 01-sec.yaml │ │ ├── 02-pvc.yaml │ │ ├── 03-deployment.yaml │ │ ├── 04-cm-config.yaml │ │ └── 10-cm-node-exporter.yaml ├── video06 │ ├── README.md │ ├── argo-app │ │ └── 05-grafana.yaml │ ├── dashboards │ │ ├── daemonset.json │ │ ├── deployment.json │ │ ├── ingress-nginx.json │ │ ├── k8s.json │ │ ├── main.json │ │ ├── node-exporter.json │ │ ├── nodes.json │ │ ├── pod.json │ │ ├── pods.json │ │ ├── sts.json │ │ └── victoria.json │ ├── makeb64.sh │ └── manifests │ │ └── grafana │ │ ├── 01-sec.yaml │ │ ├── 02-pvc.yaml │ │ ├── 03-deployment.yaml │ │ ├── 04-cm-config.yaml │ │ ├── cm_daemonset.yaml │ │ ├── cm_deployment.yaml │ │ ├── cm_ingress-nginx.yaml │ │ ├── cm_k8s.yaml │ │ ├── cm_main.yaml │ │ ├── cm_node-exporter.yaml │ │ ├── cm_nodes.yaml │ │ ├── cm_pod.yaml │ │ ├── cm_pods.yaml │ │ ├── cm_sts.yaml │ │ └── cm_victoria.yaml ├── video07 │ ├── README.md │ ├── argo-app │ │ ├── 05-grafana.yaml │ │ └── 07-vmalert.yaml │ ├── dashboards │ │ ├── daemonset.json │ │ ├── deployment.json │ │ ├── ingress-nginx.json │ │ ├── k8s.json │ │ ├── main.json │ │ ├── node-exporter.json │ │ ├── nodes.json │ │ ├── pod.json │ │ ├── pods-alert.json │ │ ├── pods.json │ │ ├── sts.json │ │ └── victoria.json │ ├── makeb64.sh │ └── manifests │ │ ├── grafana │ │ ├── 01-sec.yaml │ │ ├── 02-pvc.yaml │ │ ├── 03-deployment.yaml │ │ ├── 04-cm-config.yaml │ │ ├── cm_daemonset.yaml │ │ ├── cm_deployment.yaml │ │ ├── cm_ingress-nginx.yaml │ │ ├── cm_k8s.yaml │ │ ├── cm_main.yaml │ │ ├── cm_node-exporter.yaml │ │ ├── cm_nodes.yaml │ │ ├── cm_pod.yaml │ │ ├── cm_pods-alert.yaml │ │ ├── cm_pods.yaml │ │ ├── cm_sts.yaml │ │ └── cm_victoria.yaml │ │ └── vmalert │ │ ├── 00-add.yaml │ │ ├── 01-vmalert-dep.yaml │ │ ├── cm-alert-kube.yaml │ │ └── cm-alert-node-exporter.yaml └── video08 │ ├── README.md │ ├── am-secret.yaml │ ├── argo-app │ ├── 06-alertmanager.yaml │ └── 07-karma.yaml │ └── manifests │ ├── alertmanager │ ├── 01-cm-config.yaml │ ├── 01-cm-templates.yaml │ └── 03-sts.yaml │ └── karma │ ├── 01-services.yaml │ ├── 02-cm.yaml │ └── 03-deployment.yaml ├── net ├── 00-theory │ ├── 01-host.jpg │ ├── 02-pod.jpg │ ├── 03-node.jpg │ ├── 04-cluster.jpg │ └── README.md ├── 01-install │ ├── 00-install-docker-ce8.sh │ ├── 01-install-k8s-masternode-ce8.sh │ ├── 02-install-k8s-workernode-ce8.sh │ ├── 03-kube-config.yaml │ ├── README.md │ ├── hostnetwork.jpg │ └── scheme.jpg ├── 02-calico │ ├── 01-install-calicoctl.sh │ ├── 02-calicoctl.cfg │ └── README.md ├── 03-services │ ├── 01-deployment.yaml │ ├── 02-service.yaml │ ├── 03-service-mail-ru.yaml │ ├── 04-endpoint-mail-ru.yaml │ ├── 05-nexus.yaml │ ├── 06-external-name.yaml │ ├── 07-external-ip.yaml │ ├── 08-node-port.yaml │ └── README.md ├── 04-NetworkPolicies │ ├── README.md │ ├── argoapp │ │ ├── 01.yaml │ │ ├── 02.yaml │ │ └── 03.yaml │ ├── images │ │ └── np-01.jpg │ ├── manifests │ │ └── app2-nginx.yaml │ └── np │ │ ├── np-01.yaml │ │ ├── np-02.yaml │ │ ├── np-03.yaml │ │ ├── np-04.yaml │ │ ├── np-05.yaml │ │ ├── np-06.yaml │ │ └── np-07.yaml ├── 05-NetworkPolicy-calico │ ├── GlobalNetworkPolicy.md │ ├── Hep.md │ ├── README.md │ ├── crds.yaml │ ├── hep │ │ └── cluster-heps.yaml │ ├── images │ │ ├── cluster.jpg │ │ └── scheme.jpg │ ├── manifests │ │ └── app1-np-service.yaml │ └── np │ │ ├── np-01.yaml │ │ ├── np-02.yaml │ │ ├── np-03.yaml │ │ ├── np-04.yaml │ │ ├── np-05.yaml │ │ ├── np-06.yaml │ │ ├── np-07.yaml │ │ ├── np-08.yaml │ │ ├── np-09.yaml │ │ └── np-10.yaml └── 06-calico ebpf │ └── README.md ├── nexus ├── 00-ns.yaml ├── 01-start-nexus.yaml ├── 02-final-nexus.yaml └── README.md ├── notclassified ├── README.md └── timezone │ ├── README.md │ └── manifests │ ├── 01-openresty.yaml │ └── 02-openresty-tz.yaml ├── openldap ├── README.md ├── chart │ ├── README.md │ ├── artopenldap │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── TODO.md │ │ ├── exporter.Dockerfile │ │ ├── openldap-2.4.Dockerfile │ │ ├── openldap.Dockerfile │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── certificate.yaml │ │ │ ├── cmbin.yaml │ │ │ ├── cminitldif.yaml │ │ │ ├── cronjob.yaml │ │ │ ├── cronjobcm.yaml │ │ │ ├── pwsecret.yaml │ │ │ ├── service-hl.yaml │ │ │ ├── service.yaml │ │ │ └── stsmaster.yaml │ │ └── values.yaml │ └── schemas │ │ ├── README.md │ │ ├── my_core.ldif │ │ ├── my_cosine.ldif │ │ └── my_inetorgperson.ldif ├── containers │ ├── .gitlab-ci.yml │ ├── README.md │ ├── conf │ │ ├── DB_CONFIG │ │ ├── add_users.ldif │ │ ├── artopenldap.service │ │ ├── init.sh │ │ ├── init_data.ldif │ │ ├── master.ldif │ │ ├── slapd.ldif │ │ └── slave.ldif │ ├── exporter.Dockerfile │ ├── exporter_broken.Dockerfile │ ├── openldap-2.4.Dockerfile │ └── openldap.Dockerfile ├── multimaster │ ├── 01ldapId.ldif │ ├── 01ldapslave.ldif │ ├── 02ldapId.ldif │ ├── 02ldapslave.ldif │ ├── README.md │ ├── admin_password.ldif │ ├── openldap.drawio │ ├── repluser.ldif │ ├── repluserrights.ldif │ ├── slapd.ldif │ └── syncprov_enable.ldif ├── standalone │ ├── README.md │ ├── add_user.ldif │ ├── admin_password.ldif │ ├── init_data.ldif │ ├── petrov_password.ldif │ └── slapd.ldif └── usage │ ├── README.md │ ├── chart │ └── keycloak-values.yaml │ ├── ldifs │ └── 01-organization.ldif │ └── manifests │ └── 01-ldap-issuer.yaml ├── opensearch ├── README.md ├── charts │ ├── opensearch-values.yaml │ ├── values-dashboard.yaml │ ├── values-data.yaml │ └── values-master.yaml └── manifests │ ├── certs.yaml │ ├── dashboard-sec.yaml │ ├── opensearch-action-groups.yaml │ ├── opensearch-config.yaml │ ├── opensearch-internal-users.yaml │ ├── opensearch-roles-mapping.yaml │ ├── opensearch-roles.yaml │ └── opensearch-tenats.yaml ├── rancher ├── 00-install-app.sh ├── 00-monitoring │ ├── README.md │ ├── images │ │ ├── pic1.png │ │ ├── pic2.png │ │ ├── pic3.png │ │ └── pic4.png │ ├── manifests │ │ └── etcd-metrics.yaml │ └── rancher_monitoring.drawio ├── 02-monitoring │ ├── README.md │ ├── dsb │ │ └── dashboard.json │ └── manifests │ │ ├── application.yaml │ │ ├── dashboard.yaml │ │ └── service-monitor.yaml ├── 03-monitoring │ ├── README.md │ └── manifests │ │ └── 00-mail-user-password.yaml ├── 04-logs │ └── README.md ├── 05-cd │ ├── README.md │ └── manifests │ │ └── application.yaml ├── README.md ├── chart-for-k3s.yaml └── images │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ └── pic4.png ├── resourcequota ├── 00-ns.yaml ├── 02-quota.yaml ├── 03-limitrange.yaml ├── 04-deployment.yaml ├── 05-service.yaml ├── 06-pvc.yaml └── README.md ├── semaphore ├── README.md ├── manifests │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── secret.yaml │ └── service.yaml └── postgres │ ├── pgadmin.yaml │ └── postgreesql.yaml ├── statefulSet pods individual configs ├── 01-op-cm.yaml ├── 02-openresty-sts.yaml ├── 03-prometeus-config.yaml ├── 04-vmagent.yaml ├── 05-ingress.yml └── README.md ├── tracing ├── README.md ├── bonus_pack │ ├── README.md │ ├── charts │ │ └── ingress-controller │ │ │ └── my-values.yaml │ ├── diagramm.svg │ └── manifests │ │ ├── applications │ │ ├── application1.yaml │ │ ├── application2.yaml │ │ └── ingress.yaml │ │ └── otel │ │ ├── otel-agent.yaml │ │ └── prepper.yaml ├── for_admins │ ├── README.md │ ├── charts │ │ ├── ingress-controller │ │ │ └── my-values.yaml │ │ ├── jaeger │ │ │ ├── jaeger │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ ├── cassandra │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── sample │ │ │ │ │ │ │ └── create-storage-gce.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── common │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── elasticsearch │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ │ ├── values.yaml │ │ │ │ │ │ │ │ └── watcher_encryption_key │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── rolling_upgrade.sh │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ ├── docker-for-mac │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── kubernetes-kind │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── values-local-path.yaml │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── microk8s │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── migration │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── client.yaml │ │ │ │ │ │ │ │ ├── data.yaml │ │ │ │ │ │ │ │ └── master.yaml │ │ │ │ │ │ │ ├── minikube │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── multi │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── client.yaml │ │ │ │ │ │ │ │ ├── data.yaml │ │ │ │ │ │ │ │ ├── master.yaml │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ ├── networkpolicy │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── openshift │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ └── upgrade │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ │ └── upgrade.sh │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ └── kafka │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.lock │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ └── zookeeper │ │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ │ ├── Chart.lock │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ └── common │ │ │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ │ │ ├── svc.yaml │ │ │ │ │ │ │ └── tls-secrets.yaml │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ │ ├── jaas-secret.yaml │ │ │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ │ │ ├── jmx-metrics-svc.yaml │ │ │ │ │ │ ├── kafka-metrics-deployment.yaml │ │ │ │ │ │ ├── kafka-metrics-serviceaccount.yaml │ │ │ │ │ │ ├── kafka-metrics-svc.yaml │ │ │ │ │ │ ├── kafka-provisioning-secret.yaml │ │ │ │ │ │ ├── kafka-provisioning-serviceaccount.yaml │ │ │ │ │ │ ├── kafka-provisioning.yaml │ │ │ │ │ │ ├── log4j-configmap.yaml │ │ │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ │ │ ├── networkpolicy-ingress.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor-jmx-metrics.yaml │ │ │ │ │ │ ├── servicemonitor-metrics.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ ├── svc-external-access.yaml │ │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ │ ├── svc.yaml │ │ │ │ │ │ └── tls-secrets.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── agent-ds.yaml │ │ │ │ │ ├── agent-sa.yaml │ │ │ │ │ ├── agent-servicemonitor.yaml │ │ │ │ │ ├── agent-svc.yaml │ │ │ │ │ ├── allinone-agent-svc.yaml │ │ │ │ │ ├── allinone-collector-svc.yaml │ │ │ │ │ ├── allinone-configmap.yaml │ │ │ │ │ ├── allinone-deploy.yaml │ │ │ │ │ ├── allinone-ing.yaml │ │ │ │ │ ├── allinone-query-svc.yaml │ │ │ │ │ ├── allinone-sa.yaml │ │ │ │ │ ├── cassandra-schema-job.yaml │ │ │ │ │ ├── cassandra-schema-sa.yaml │ │ │ │ │ ├── cassandra-secret.yaml │ │ │ │ │ ├── collector-configmap.yaml │ │ │ │ │ ├── collector-deploy.yaml │ │ │ │ │ ├── collector-hpa.yaml │ │ │ │ │ ├── collector-ing.yaml │ │ │ │ │ ├── collector-sa.yaml │ │ │ │ │ ├── collector-servicemonitor.yaml │ │ │ │ │ ├── collector-svc.yaml │ │ │ │ │ ├── elasticsearch-secret.yaml │ │ │ │ │ ├── es-index-cleaner-cronjob.yaml │ │ │ │ │ ├── es-index-cleaner-sa.yaml │ │ │ │ │ ├── es-lookback-cronjob.yaml │ │ │ │ │ ├── es-lookback-sa.yaml │ │ │ │ │ ├── es-rollover-cronjob.yaml │ │ │ │ │ ├── es-rollover-hook.yml │ │ │ │ │ ├── es-rollover-sa.yaml │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ ├── hotrod-deploy.yaml │ │ │ │ │ ├── hotrod-ing.yaml │ │ │ │ │ ├── hotrod-sa.yaml │ │ │ │ │ ├── hotrod-svc.yaml │ │ │ │ │ ├── ingester-deploy.yaml │ │ │ │ │ ├── ingester-hpa.yaml │ │ │ │ │ ├── ingester-sa.yaml │ │ │ │ │ ├── ingester-servicemonitor.yaml │ │ │ │ │ ├── ingester-svc.yaml │ │ │ │ │ ├── oauth-sidecar-configmap.yaml │ │ │ │ │ ├── query-configmap.yaml │ │ │ │ │ ├── query-deploy.yaml │ │ │ │ │ ├── query-ing.yaml │ │ │ │ │ ├── query-sa.yaml │ │ │ │ │ ├── query-servicemonitor.yaml │ │ │ │ │ ├── query-svc.yaml │ │ │ │ │ ├── spark-cronjob.yaml │ │ │ │ │ └── spark-sa.yaml │ │ │ │ └── values.yaml │ │ │ └── values.yaml │ │ └── opensearch │ │ │ ├── opensearch-values.yaml │ │ │ ├── values-dashboard.yaml │ │ │ ├── values-data.yaml │ │ │ └── values-master.yaml │ └── manifests │ │ ├── applications │ │ ├── application1.yaml │ │ ├── application2.yaml │ │ └── ingress.yaml │ │ └── opensearch │ │ ├── certs.yaml │ │ ├── dashboard-sec.yaml │ │ ├── opensearch-action-groups.yaml │ │ ├── opensearch-config.yaml │ │ ├── opensearch-internal-users.yaml │ │ ├── opensearch-roles-mapping.yaml │ │ ├── opensearch-roles.yaml │ │ └── opensearch-tenats.yaml ├── for_developers │ ├── README.md │ ├── base_application │ │ ├── README.md │ │ ├── application1 │ │ │ ├── Dockerfile │ │ │ ├── application1.py │ │ │ ├── requirements.txt │ │ │ └── templates │ │ │ │ └── index.html │ │ ├── application2 │ │ │ ├── Dockerfile │ │ │ ├── application2.py │ │ │ └── requirements.txt │ │ ├── docker-compose.yaml │ │ └── nginx │ │ │ ├── conf.d │ │ │ └── default.conf │ │ │ └── nginx.conf │ └── final_application │ │ ├── README.md │ │ ├── application1 │ │ ├── Dockerfile │ │ ├── application1.py │ │ ├── requirements.txt │ │ └── templates │ │ │ └── index.html │ │ ├── application2 │ │ ├── Dockerfile │ │ ├── application2.py │ │ └── requirements.txt │ │ ├── docker-compose.yaml │ │ └── nginx │ │ ├── Dockerfile │ │ ├── conf.d │ │ └── default.conf │ │ ├── nginx.conf │ │ └── opentelemetry_module.conf └── images │ ├── logs.jpg │ ├── metadata.jpg │ ├── trace1.jpg │ └── trace2.jpg ├── vault ├── README.md ├── argo-app │ ├── application-app.yaml │ ├── csi-app.yaml │ └── vault-app.yaml ├── manifests-app │ ├── 01-openresty-cm.yaml │ ├── 02-openresty.yaml │ ├── 03-csi.yaml │ └── 04-ingress.yaml ├── values.yaml └── video2 │ ├── README.md │ ├── argo-app │ ├── application-app.yaml │ └── vault-app.yaml │ ├── images │ ├── image1.jpg │ └── image2.jpg │ ├── manifests-app │ ├── 01-cm.yaml │ ├── 02-nginx.yaml │ └── 04-ingress.yaml │ └── values.yaml └── volumes ├── 01-emptyDir ├── 01-openresty.yaml ├── 02-openresty.yaml ├── 03-openresty-2.yaml └── README.md ├── 02-hostPath ├── 01-centos-directory.yaml ├── 02-centos-create.yaml ├── 03-centos-create-af.yaml ├── 04-openresty.yaml └── README.md ├── 03-configMap ├── 01-openresty-subpath.yaml ├── 02-openresty.yaml ├── 03-configmap-env.yaml ├── 04-openresty-env.yaml ├── README.md └── index.html ├── 04-secrets ├── 00-secret.yaml ├── 01-openresty-env.yaml ├── 02-openresty-volume.yaml ├── README.md ├── password.txt └── user.txt ├── 05-downwardAPI ├── 01-openresty.yaml └── README.md ├── 06-projected ├── 00-secret.yaml ├── 01-configMap.yaml ├── 02-openresty.yaml └── README.md ├── 07-images ├── README.md ├── ca.crt ├── html │ ├── 50x.html │ └── index.html └── manifests │ └── sample.yaml ├── README.md └── volumes.xmind /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /1.23/01-base-app/00-priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/01-base-app/00-priorityclass.yaml -------------------------------------------------------------------------------- /1.23/01-base-app/01-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/01-base-app/01-nfs.yaml -------------------------------------------------------------------------------- /1.23/01-base-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/01-base-app/README.md -------------------------------------------------------------------------------- /1.23/02-metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/02-metallb/README.md -------------------------------------------------------------------------------- /1.23/02-metallb/mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/02-metallb/mlb.yaml -------------------------------------------------------------------------------- /1.23/03-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/03-ingress-controller/README.md -------------------------------------------------------------------------------- /1.23/03-ingress-controller/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/03-ingress-controller/my-values.yaml -------------------------------------------------------------------------------- /1.23/04-argocd/00-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/04-argocd/00-certs.yaml -------------------------------------------------------------------------------- /1.23/04-argocd/01-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/04-argocd/01-ingress.yaml -------------------------------------------------------------------------------- /1.23/04-argocd/02-argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/04-argocd/02-argocd-cm.yaml -------------------------------------------------------------------------------- /1.23/04-argocd/03-argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/04-argocd/03-argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /1.23/04-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/04-argocd/README.md -------------------------------------------------------------------------------- /1.23/05-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/05-postgresql/README.md -------------------------------------------------------------------------------- /1.23/05-postgresql/pgadmin/argo/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/05-postgresql/pgadmin/argo/argo-app.yaml -------------------------------------------------------------------------------- /1.23/06-monitoring/03-vmagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/06-monitoring/03-vmagent/README.md -------------------------------------------------------------------------------- /1.23/06-monitoring/03-vmagent/argoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/06-monitoring/03-vmagent/argoapp.yaml -------------------------------------------------------------------------------- /1.23/06-monitoring/03-vmagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/06-monitoring/03-vmagent/values.yaml -------------------------------------------------------------------------------- /1.23/06-monitoring/README.md: -------------------------------------------------------------------------------- 1 | # Мониторинг 2 | 3 | -------------------------------------------------------------------------------- /1.23/07-rancher/2.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/07-rancher/2.6/README.md -------------------------------------------------------------------------------- /1.23/08-dasboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/08-dasboard/README.md -------------------------------------------------------------------------------- /1.23/08-dasboard/manifests/admin_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/08-dasboard/manifests/admin_user.yaml -------------------------------------------------------------------------------- /1.23/08-dasboard/manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/08-dasboard/manifests/ingress.yaml -------------------------------------------------------------------------------- /1.23/08-dasboard/manifests/recommended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/08-dasboard/manifests/recommended.yaml -------------------------------------------------------------------------------- /1.23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/README.md -------------------------------------------------------------------------------- /1.23/argo-sys-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/argo-sys-project.yaml -------------------------------------------------------------------------------- /1.23/charts/02-victoriametrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/02-victoriametrics/Chart.yaml -------------------------------------------------------------------------------- /1.23/charts/02-victoriametrics/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/02-victoriametrics/my-values.yaml -------------------------------------------------------------------------------- /1.23/charts/02-victoriametrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/02-victoriametrics/values.yaml -------------------------------------------------------------------------------- /1.23/charts/03-vmagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/03-vmagent/Chart.yaml -------------------------------------------------------------------------------- /1.23/charts/03-vmagent/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/03-vmagent/my-values.yaml -------------------------------------------------------------------------------- /1.23/charts/03-vmagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/03-vmagent/values.yaml -------------------------------------------------------------------------------- /1.23/charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.23/charts/README.md -------------------------------------------------------------------------------- /1.25/00-ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/00-ansible/README.md -------------------------------------------------------------------------------- /1.25/01-base-app/00-priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/01-base-app/00-priorityclass.yaml -------------------------------------------------------------------------------- /1.25/01-base-app/01-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/01-base-app/01-nfs.yaml -------------------------------------------------------------------------------- /1.25/01-base-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/01-base-app/README.md -------------------------------------------------------------------------------- /1.25/02-metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/02-metallb/README.md -------------------------------------------------------------------------------- /1.25/02-metallb/mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/02-metallb/mlb.yaml -------------------------------------------------------------------------------- /1.25/03-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/03-ingress-controller/README.md -------------------------------------------------------------------------------- /1.25/03-ingress-controller/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/03-ingress-controller/my-values.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/01-argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/01-argocd.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/02-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/02-service-nodeport.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/03-service-lb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/03-service-lb.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/04-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/04-certs.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/05-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/05-ingress.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/06-argo-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/06-argo-cm.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/07-argo-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/07-argo-rbac.yaml -------------------------------------------------------------------------------- /1.25/04-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/04-argocd/README.md -------------------------------------------------------------------------------- /1.25/05-dashboard/00-admin-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/05-dashboard/00-admin-user.yaml -------------------------------------------------------------------------------- /1.25/05-dashboard/01-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/05-dashboard/01-ingress.yaml -------------------------------------------------------------------------------- /1.25/05-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/05-dashboard/README.md -------------------------------------------------------------------------------- /1.25/06-monitoring/00-node-exporter-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/06-monitoring/00-node-exporter-ns.yaml -------------------------------------------------------------------------------- /1.25/06-monitoring/02-ne.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/06-monitoring/02-ne.yaml -------------------------------------------------------------------------------- /1.25/06-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/06-monitoring/README.md -------------------------------------------------------------------------------- /1.25/07-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/07-postgresql/README.md -------------------------------------------------------------------------------- /1.25/07-postgresql/pgadmin/argo/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/07-postgresql/pgadmin/argo/argo-app.yaml -------------------------------------------------------------------------------- /1.25/argo-sys-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.25/argo-sys-project.yaml -------------------------------------------------------------------------------- /1.26/00-ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/00-ansible/README.md -------------------------------------------------------------------------------- /1.26/01-base-app/00-priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/01-base-app/00-priorityclass.yaml -------------------------------------------------------------------------------- /1.26/01-base-app/01-nfs-k3s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/01-base-app/01-nfs-k3s.yaml -------------------------------------------------------------------------------- /1.26/01-base-app/01-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/01-base-app/01-nfs.yaml -------------------------------------------------------------------------------- /1.26/01-base-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/01-base-app/README.md -------------------------------------------------------------------------------- /1.26/01-base-app/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/01-base-app/metrics-server.yaml -------------------------------------------------------------------------------- /1.26/02-metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/02-metallb/README.md -------------------------------------------------------------------------------- /1.26/02-metallb/mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/02-metallb/mlb.yaml -------------------------------------------------------------------------------- /1.26/03-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/03-ingress-controller/README.md -------------------------------------------------------------------------------- /1.26/03-ingress-controller/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/03-ingress-controller/my-values.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/01-2.9.3-argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/01-2.9.3-argocd.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/01-argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/01-argocd.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/02-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/02-service-nodeport.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/03-service-lb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/03-service-lb.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/04-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/04-certs.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/05-ingress-k3s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/05-ingress-k3s.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/05-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/05-ingress.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/06-argo-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/06-argo-cm.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/07-argo-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/07-argo-rbac.yaml -------------------------------------------------------------------------------- /1.26/04-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/README.md -------------------------------------------------------------------------------- /1.26/04-argocd/argo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/04-argocd/argo-values.yaml -------------------------------------------------------------------------------- /1.26/05-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/README.md -------------------------------------------------------------------------------- /1.26/05-postgresql/pgadmin/argo/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/pgadmin/argo/argo-app.yaml -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo.yaml -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo/.gitignore -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo/.helmignore -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo/Chart.yaml -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo/README.md -------------------------------------------------------------------------------- /1.26/05-postgresql/spilo/spilo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/05-postgresql/spilo/spilo/values.yaml -------------------------------------------------------------------------------- /1.26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.26/README.md -------------------------------------------------------------------------------- /1.31/01-base-app/00-priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/01-base-app/00-priorityclass.yaml -------------------------------------------------------------------------------- /1.31/01-base-app/01-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/01-base-app/01-nfs.yaml -------------------------------------------------------------------------------- /1.31/01-base-app/02-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/01-base-app/02-certs.yaml -------------------------------------------------------------------------------- /1.31/01-base-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/01-base-app/README.md -------------------------------------------------------------------------------- /1.31/01-base-app/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/01-base-app/metrics-server.yaml -------------------------------------------------------------------------------- /1.31/02-metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/02-metallb/README.md -------------------------------------------------------------------------------- /1.31/02-metallb/mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/02-metallb/mlb.yaml -------------------------------------------------------------------------------- /1.31/03-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/03-ingress-controller/README.md -------------------------------------------------------------------------------- /1.31/03-ingress-controller/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/03-ingress-controller/my-values.yaml -------------------------------------------------------------------------------- /1.31/04-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/04-argocd/README.md -------------------------------------------------------------------------------- /1.31/04-argocd/argo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/04-argocd/argo-values.yaml -------------------------------------------------------------------------------- /1.31/05-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/05-redis/README.md -------------------------------------------------------------------------------- /1.31/05-redis/bitnami-argo-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/05-redis/bitnami-argo-repo.yaml -------------------------------------------------------------------------------- /1.31/05-redis/redis-argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/05-redis/redis-argo-app.yaml -------------------------------------------------------------------------------- /1.31/05-redis/redis-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/05-redis/redis-values.yaml -------------------------------------------------------------------------------- /1.31/06-postgresql/ERADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/06-postgresql/ERADME.md -------------------------------------------------------------------------------- /1.31/06-postgresql/argo/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/06-postgresql/argo/argo-app.yaml -------------------------------------------------------------------------------- /1.31/06-postgresql/manifests/postgreesql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/06-postgresql/manifests/postgreesql.yaml -------------------------------------------------------------------------------- /1.31/07-harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/07-harbor/README.md -------------------------------------------------------------------------------- /1.31/07-harbor/harbor-argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/07-harbor/harbor-argo-app.yaml -------------------------------------------------------------------------------- /1.31/07-harbor/harbor-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/07-harbor/harbor-values.yaml -------------------------------------------------------------------------------- /1.31/07-harbor/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/07-harbor/test.yaml -------------------------------------------------------------------------------- /1.31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/1.31/README.md -------------------------------------------------------------------------------- /For programmers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/Dockerfile -------------------------------------------------------------------------------- /For programmers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/README.md -------------------------------------------------------------------------------- /For programmers/manifests/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/manifests/configmap.yaml -------------------------------------------------------------------------------- /For programmers/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/manifests/deployment.yaml -------------------------------------------------------------------------------- /For programmers/manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/manifests/ingress.yaml -------------------------------------------------------------------------------- /For programmers/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/manifests/service.yaml -------------------------------------------------------------------------------- /For programmers/src/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/.env -------------------------------------------------------------------------------- /For programmers/src/app/server/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/app/server/config.go -------------------------------------------------------------------------------- /For programmers/src/app/server/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/app/server/index.go -------------------------------------------------------------------------------- /For programmers/src/app/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/app/server/server.go -------------------------------------------------------------------------------- /For programmers/src/cmd/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/cmd/main/main.go -------------------------------------------------------------------------------- /For programmers/src/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/go.mod -------------------------------------------------------------------------------- /For programmers/src/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/go.sum -------------------------------------------------------------------------------- /For programmers/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/For programmers/src/templates/index.html -------------------------------------------------------------------------------- /PriorityClass/00-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/PriorityClass/00-ns.yaml -------------------------------------------------------------------------------- /PriorityClass/01-pc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/PriorityClass/01-pc.yaml -------------------------------------------------------------------------------- /PriorityClass/02-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/PriorityClass/02-deployment.yaml -------------------------------------------------------------------------------- /PriorityClass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/PriorityClass/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/README.md -------------------------------------------------------------------------------- /StatefullSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/README.md -------------------------------------------------------------------------------- /StatefullSet/pod-name-label/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/pod-name-label/ingress.yaml -------------------------------------------------------------------------------- /StatefullSet/pod-name-label/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/pod-name-label/services.yaml -------------------------------------------------------------------------------- /StatefullSet/stable-network-id/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/stable-network-id/cm.yaml -------------------------------------------------------------------------------- /StatefullSet/stable-network-id/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/stable-network-id/ingress.yaml -------------------------------------------------------------------------------- /StatefullSet/stable-network-id/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/stable-network-id/services.yaml -------------------------------------------------------------------------------- /StatefullSet/stable-network-id/sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/StatefullSet/stable-network-id/sts.yaml -------------------------------------------------------------------------------- /Utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/README.md -------------------------------------------------------------------------------- /Utils/cicd-template/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/.vscode/launch.json -------------------------------------------------------------------------------- /Utils/cicd-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/README.md -------------------------------------------------------------------------------- /Utils/cicd-template/cicd-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/cicd-template.go -------------------------------------------------------------------------------- /Utils/cicd-template/cicd-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/cicd-values.yaml -------------------------------------------------------------------------------- /Utils/cicd-template/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/go.mod -------------------------------------------------------------------------------- /Utils/cicd-template/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/go.sum -------------------------------------------------------------------------------- /Utils/cicd-template/values.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/cicd-template/values.template -------------------------------------------------------------------------------- /Utils/gitflic/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/.helmignore -------------------------------------------------------------------------------- /Utils/gitflic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/Chart.yaml -------------------------------------------------------------------------------- /Utils/gitflic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/README.md -------------------------------------------------------------------------------- /Utils/gitflic/charts/postgresql-13.2.24.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/charts/postgresql-13.2.24.tgz -------------------------------------------------------------------------------- /Utils/gitflic/charts/redis-18.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/charts/redis-18.5.0.tgz -------------------------------------------------------------------------------- /Utils/gitflic/gitflic.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/gitflic.Dockerfile -------------------------------------------------------------------------------- /Utils/gitflic/mailrelay.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/mailrelay.Dockerfile -------------------------------------------------------------------------------- /Utils/gitflic/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/my-values.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/NOTES.txt -------------------------------------------------------------------------------- /Utils/gitflic/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/_helpers.tpl -------------------------------------------------------------------------------- /Utils/gitflic/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/configmap.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/deployment.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/hpa.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/ingress.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/job-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/job-db.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/mail-relay-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/mail-relay-cm.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/mail-relay-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/mail-relay-policy.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/mail-relay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/mail-relay.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/pvc.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/secret.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/service-headless.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/service-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/service-ssh.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/service.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /Utils/gitflic/templates/sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/templates/sts.yaml -------------------------------------------------------------------------------- /Utils/gitflic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/gitflic/values.yaml -------------------------------------------------------------------------------- /Utils/helm+kubectl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/helm+kubectl/Dockerfile -------------------------------------------------------------------------------- /Utils/k3s-dev/00-priorityclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/00-priorityclass.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/01-ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/01-ingress-controller.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/02-argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/02-argocd.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/CA/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/CA/ca.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/README.md -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/devcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/devcontainer.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/harbor-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/harbor-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/mail-relay-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/mail-relay-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/minio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/minio-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/postgre-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/postgre-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/redis-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/redis-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/argocd-apps/reloader-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/argocd-apps/reloader-app.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ca.crt -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/devcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/devcontainer.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/devcontainer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/devcontainer/.helmignore -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/devcontainer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/devcontainer/Chart.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/devcontainer/README.md -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/devcontainer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/devcontainer/values.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/gitlab-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/gitlab-runner.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/gitlab.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/harbor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/harbor.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/minio.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/charts/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/charts/redis.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/k3s-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/k3s-application.md -------------------------------------------------------------------------------- /Utils/k3s-dev/manifests/psql/postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/manifests/psql/postgresql.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/manifests/reloader/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/manifests/reloader/rbac.yaml -------------------------------------------------------------------------------- /Utils/k3s-dev/ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ws.md -------------------------------------------------------------------------------- /Utils/k3s-dev/ws/devcontainer/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ws/devcontainer/.gitlab-ci.yml -------------------------------------------------------------------------------- /Utils/k3s-dev/ws/devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ws/devcontainer/Dockerfile -------------------------------------------------------------------------------- /Utils/k3s-dev/ws/kubeutils/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ws/kubeutils/.gitlab-ci.yml -------------------------------------------------------------------------------- /Utils/k3s-dev/ws/kubeutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/k3s-dev/ws/kubeutils/Dockerfile -------------------------------------------------------------------------------- /Utils/modified_busybox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.14.2 2 | 3 | RUN apk --no-cache add gettext 4 | 5 | CMD ["/bin/sh"] -------------------------------------------------------------------------------- /Utils/uniproxy/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/.vscode/launch.json -------------------------------------------------------------------------------- /Utils/uniproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/Dockerfile -------------------------------------------------------------------------------- /Utils/uniproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/README.md -------------------------------------------------------------------------------- /Utils/uniproxy/apiserver/apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/apiserver/apiserver.go -------------------------------------------------------------------------------- /Utils/uniproxy/apiserver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/apiserver/config.go -------------------------------------------------------------------------------- /Utils/uniproxy/etc/uniproxy/uniproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/etc/uniproxy/uniproxy.yaml -------------------------------------------------------------------------------- /Utils/uniproxy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/go.mod -------------------------------------------------------------------------------- /Utils/uniproxy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/go.sum -------------------------------------------------------------------------------- /Utils/uniproxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/main.go -------------------------------------------------------------------------------- /Utils/uniproxy/uniproxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/uniproxy/.helmignore -------------------------------------------------------------------------------- /Utils/uniproxy/uniproxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/uniproxy/Chart.yaml -------------------------------------------------------------------------------- /Utils/uniproxy/uniproxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/uniproxy/templates/NOTES.txt -------------------------------------------------------------------------------- /Utils/uniproxy/uniproxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/uniproxy/uniproxy/values.yaml -------------------------------------------------------------------------------- /Utils/vcluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/README.md -------------------------------------------------------------------------------- /Utils/vcluster/manifests/01-test-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/manifests/01-test-app.yaml -------------------------------------------------------------------------------- /Utils/vcluster/manifests/02-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/manifests/02-pvc.yaml -------------------------------------------------------------------------------- /Utils/vcluster/manifests/03-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/manifests/03-ingress.yaml -------------------------------------------------------------------------------- /Utils/vcluster/values/01-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/values/01-values.yaml -------------------------------------------------------------------------------- /Utils/vcluster/values/02-values-quotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/Utils/vcluster/values/02-values-quotas.yaml -------------------------------------------------------------------------------- /argocd/00-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/00-certs.yaml -------------------------------------------------------------------------------- /argocd/01-clusterapp/01-nfs/01-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/01-clusterapp/01-nfs/01-nfs.yaml -------------------------------------------------------------------------------- /argocd/01-clusterapp/05-logs/03-fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/01-clusterapp/05-logs/03-fluentd.yaml -------------------------------------------------------------------------------- /argocd/01-ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/01-ingress-controller.yaml -------------------------------------------------------------------------------- /argocd/02-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/02-ingress.yaml -------------------------------------------------------------------------------- /argocd/03-argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/03-argocd-cm.yaml -------------------------------------------------------------------------------- /argocd/04-argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/04-argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /argocd/05-project-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/05-project-system.yaml -------------------------------------------------------------------------------- /argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/README.md -------------------------------------------------------------------------------- /argocd/applications/01-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/applications/01-base.yaml -------------------------------------------------------------------------------- /argocd/applications/02-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/applications/02-nfs.yaml -------------------------------------------------------------------------------- /argocd/applications/05-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/applications/05-monitoring.yaml -------------------------------------------------------------------------------- /argocd/applications/06-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/applications/06-logs.yaml -------------------------------------------------------------------------------- /argocd/argo-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/argo-1.yaml -------------------------------------------------------------------------------- /argocd/argo-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/argo-2.yaml -------------------------------------------------------------------------------- /argocd/argo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/argo-values.yaml -------------------------------------------------------------------------------- /argocd/avp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/README.md -------------------------------------------------------------------------------- /argocd/avp/argo-test-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/argo-test-app.yaml -------------------------------------------------------------------------------- /argocd/avp/argo-test-helm-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/argo-test-helm-app.yaml -------------------------------------------------------------------------------- /argocd/avp/manifests/test-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/manifests/test-secret.yaml -------------------------------------------------------------------------------- /argocd/avp/manifests/test-secret2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/manifests/test-secret2.yaml -------------------------------------------------------------------------------- /argocd/avp/my-argo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/my-argo-values.yaml -------------------------------------------------------------------------------- /argocd/avp/my-vault-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/my-vault-values.yaml -------------------------------------------------------------------------------- /argocd/avp/test-avp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/test-avp/.helmignore -------------------------------------------------------------------------------- /argocd/avp/test-avp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/test-avp/Chart.yaml -------------------------------------------------------------------------------- /argocd/avp/test-avp/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/test-avp/templates/secret.yaml -------------------------------------------------------------------------------- /argocd/avp/test-avp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/avp/test-avp/values.yaml -------------------------------------------------------------------------------- /argocd/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/images/image1.jpg -------------------------------------------------------------------------------- /argocd/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/notifications/README.md -------------------------------------------------------------------------------- /argocd/notifications/manifests/00-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/notifications/manifests/00-rbac.yaml -------------------------------------------------------------------------------- /argocd/update to 2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/update to 2.1/README.md -------------------------------------------------------------------------------- /argocd/update to 2.1/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/argocd/update to 2.1/install.yaml -------------------------------------------------------------------------------- /base/Crunchy PostgreSQL Operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/Crunchy PostgreSQL Operator/README.md -------------------------------------------------------------------------------- /base/etcd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/etcd/Readme.md -------------------------------------------------------------------------------- /base/etcd/argoapp/01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/etcd/argoapp/01.yaml -------------------------------------------------------------------------------- /base/etcd/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/etcd/my-values.yaml -------------------------------------------------------------------------------- /base/local-path-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/local-path-provisioner/README.md -------------------------------------------------------------------------------- /base/spilo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/README.md -------------------------------------------------------------------------------- /base/spilo/Spilo-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/Spilo-manual.md -------------------------------------------------------------------------------- /base/spilo/Spilo-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/Spilo-operator.md -------------------------------------------------------------------------------- /base/spilo/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/argo-app.yaml -------------------------------------------------------------------------------- /base/spilo/charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/charts/README.md -------------------------------------------------------------------------------- /base/spilo/charts/final/spilo-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/charts/final/spilo-art/Chart.yaml -------------------------------------------------------------------------------- /base/spilo/charts/final/spilo-art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/charts/final/spilo-art/README.md -------------------------------------------------------------------------------- /base/spilo/left-manifests/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/left-manifests/pgadmin.yaml -------------------------------------------------------------------------------- /base/spilo/manifests/nodePort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/manifests/nodePort.yaml -------------------------------------------------------------------------------- /base/spilo/manifests/spilo_kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/manifests/spilo_kubernetes.yaml -------------------------------------------------------------------------------- /base/spilo/operator/01-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/operator/01-config-map.yaml -------------------------------------------------------------------------------- /base/spilo/operator/02-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/operator/02-pvc.yaml -------------------------------------------------------------------------------- /base/spilo/operator/03-test1-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/base/spilo/operator/03-test1-db.yaml -------------------------------------------------------------------------------- /gatewayapi/GatewayAPI.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/GatewayAPI.drawio -------------------------------------------------------------------------------- /gatewayapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/README.md -------------------------------------------------------------------------------- /gatewayapi/container-ssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/container-ssh/Dockerfile -------------------------------------------------------------------------------- /gatewayapi/container-ssh/init-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/container-ssh/init-container.sh -------------------------------------------------------------------------------- /gatewayapi/envoy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/envoy.md -------------------------------------------------------------------------------- /gatewayapi/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples.md -------------------------------------------------------------------------------- /gatewayapi/examples/01-gatewayclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/01-gatewayclass.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/02-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/02-certificate.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/03-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/03-gateway.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/04-http-https-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/04-http-https-route.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/05-path-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/05-path-redirect.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/06-rewrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/06-rewrite.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/07-header-modifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/07-header-modifiers.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/08-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/08-canary.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/09-blue-green.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/09-blue-green.yaml -------------------------------------------------------------------------------- /gatewayapi/examples/apirequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/examples/apirequests.http -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/03-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/03-gateway.yaml -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/04-http-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/04-http-route.yaml -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/bonus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/bonus.yaml -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/certs.yaml -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/gateway-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/gateway-cert.yaml -------------------------------------------------------------------------------- /gatewayapi/manifest-envoy/mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifest-envoy/mlb.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/02-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/02-gateway.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/03-echo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/03-echo-app.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/04-http-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/04-http-route.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/05-https-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/05-https-route.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/06-gateway2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/06-gateway2.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/07-https2-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/07-https2-route.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/08-container-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/08-container-ssh.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/10-gateway3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/10-gateway3.yaml -------------------------------------------------------------------------------- /gatewayapi/manifests/11-tcproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/manifests/11-tcproute.yaml -------------------------------------------------------------------------------- /gatewayapi/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gatewayapi/update.md -------------------------------------------------------------------------------- /gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/README.md -------------------------------------------------------------------------------- /gitlab/argocd/mail-relay-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/argocd/mail-relay-app.yaml -------------------------------------------------------------------------------- /gitlab/argocd/minio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/argocd/minio-app.yaml -------------------------------------------------------------------------------- /gitlab/argocd/minio-console-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/argocd/minio-console-app.yaml -------------------------------------------------------------------------------- /gitlab/argocd/postgre-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/argocd/postgre-app.yaml -------------------------------------------------------------------------------- /gitlab/argocd/redis-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/argocd/redis-app.yaml -------------------------------------------------------------------------------- /gitlab/gl-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/gl-values.yaml -------------------------------------------------------------------------------- /gitlab/postfix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/README.md -------------------------------------------------------------------------------- /gitlab/postfix/container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/container/Dockerfile -------------------------------------------------------------------------------- /gitlab/postfix/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/container/README.md -------------------------------------------------------------------------------- /gitlab/postfix/container/main.cf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/container/main.cf.tmpl -------------------------------------------------------------------------------- /gitlab/postfix/manifests/mail-relay-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/manifests/mail-relay-cm.yaml -------------------------------------------------------------------------------- /gitlab/postfix/manifests/mail-relay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postfix/manifests/mail-relay.yaml -------------------------------------------------------------------------------- /gitlab/postgresql/manifests/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postgresql/manifests/pgadmin.yaml -------------------------------------------------------------------------------- /gitlab/postgresql/manifests/postgreesql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/postgresql/manifests/postgreesql.yaml -------------------------------------------------------------------------------- /gitlab/runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/runner/README.md -------------------------------------------------------------------------------- /gitlab/runner/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/gitlab/runner/my-values.yaml -------------------------------------------------------------------------------- /harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/README.md -------------------------------------------------------------------------------- /harbor/argo-app/00-harbor-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/argo-app/00-harbor-project.yaml -------------------------------------------------------------------------------- /harbor/argo-app/01-redis-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/argo-app/01-redis-app.yaml -------------------------------------------------------------------------------- /harbor/bitnami/02-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/bitnami/02-values.yaml -------------------------------------------------------------------------------- /harbor/bitnami/app/01-harbor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/bitnami/app/01-harbor.yaml -------------------------------------------------------------------------------- /harbor/goharbor/01-harbor-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/goharbor/01-harbor-app.yaml -------------------------------------------------------------------------------- /harbor/goharbor/02-ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/goharbor/02-ingress.yml -------------------------------------------------------------------------------- /harbor/goharbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/harbor/goharbor/README.md -------------------------------------------------------------------------------- /hazelcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/hazelcast/README.md -------------------------------------------------------------------------------- /hazelcast/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/hazelcast/chart/Chart.yaml -------------------------------------------------------------------------------- /hazelcast/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/hazelcast/chart/values.yaml -------------------------------------------------------------------------------- /hazelcast/hazelcast-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/hazelcast/hazelcast-app.yaml -------------------------------------------------------------------------------- /hazelcast/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/hazelcast/my-values.yaml -------------------------------------------------------------------------------- /helm/01-video-theory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/01-video-theory/README.md -------------------------------------------------------------------------------- /helm/02-video-app-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/02-video-app-metadata/README.md -------------------------------------------------------------------------------- /helm/02-video-app-metadata/final-version/my-values.yaml: -------------------------------------------------------------------------------- 1 | fullnameOverride: "art" 2 | 3 | application: 4 | reloader: true -------------------------------------------------------------------------------- /helm/03-video-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/03-video-spec/README.md -------------------------------------------------------------------------------- /helm/03-video-spec/final-version/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/03-video-spec/final-version/app.yaml -------------------------------------------------------------------------------- /helm/04-video-svc-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/04-video-svc-ingress/README.md -------------------------------------------------------------------------------- /helm/05-video-cm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/05-video-cm/README.md -------------------------------------------------------------------------------- /helm/05-video-cm/final-version/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/05-video-cm/final-version/default.conf -------------------------------------------------------------------------------- /helm/05-video-cm/final-version/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/05-video-cm/final-version/html/50x.html -------------------------------------------------------------------------------- /helm/06-video-final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/README.md -------------------------------------------------------------------------------- /helm/06-video-final/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/my-values.yaml -------------------------------------------------------------------------------- /helm/06-video-final/myTemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/myTemplates/README.md -------------------------------------------------------------------------------- /helm/06-video-final/myTemplates/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/myTemplates/values.yaml -------------------------------------------------------------------------------- /helm/06-video-final/openresty-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/openresty-art/Chart.yaml -------------------------------------------------------------------------------- /helm/06-video-final/openresty-art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/06-video-final/openresty-art/README.md -------------------------------------------------------------------------------- /helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/README.md -------------------------------------------------------------------------------- /helm/base-application/configmap-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/base-application/configmap-conf.yaml -------------------------------------------------------------------------------- /helm/base-application/configmap-html.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/base-application/configmap-html.yaml -------------------------------------------------------------------------------- /helm/base-application/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/base-application/deployment.yaml -------------------------------------------------------------------------------- /helm/base-application/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/base-application/ingress.yaml -------------------------------------------------------------------------------- /helm/base-application/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/base-application/service.yaml -------------------------------------------------------------------------------- /helm/charts/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/charts/index.yaml -------------------------------------------------------------------------------- /helm/charts/openresty-art-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/helm/charts/openresty-art-0.1.0.tgz -------------------------------------------------------------------------------- /istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/README.md -------------------------------------------------------------------------------- /istio/bookinfo/bookinfo-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/bookinfo/bookinfo-versions.yaml -------------------------------------------------------------------------------- /istio/bookinfo/bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/bookinfo/bookinfo.yaml -------------------------------------------------------------------------------- /istio/images/isio01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/images/isio01.jpg -------------------------------------------------------------------------------- /istio/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/install.md -------------------------------------------------------------------------------- /istio/istio.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/istio.drawio -------------------------------------------------------------------------------- /istio/kiali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/kiali.md -------------------------------------------------------------------------------- /istio/manifests-samples/02-curl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests-samples/02-curl.yaml -------------------------------------------------------------------------------- /istio/manifests-samples/04-waypoint-gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests-samples/04-waypoint-gw.yaml -------------------------------------------------------------------------------- /istio/manifests-samples/07-productpage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests-samples/07-productpage.yaml -------------------------------------------------------------------------------- /istio/manifests/00-gateway-bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests/00-gateway-bookinfo.yaml -------------------------------------------------------------------------------- /istio/manifests/01-kiali-sup-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests/01-kiali-sup-gateway.yaml -------------------------------------------------------------------------------- /istio/manifests/02-prometheus-httpr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests/02-prometheus-httpr.yaml -------------------------------------------------------------------------------- /istio/manifests/03-dex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests/03-dex.yaml -------------------------------------------------------------------------------- /istio/manifests/04-kiali-httpr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/manifests/04-kiali-httpr.yaml -------------------------------------------------------------------------------- /istio/values/grafana-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/values/grafana-values.yaml -------------------------------------------------------------------------------- /istio/values/kiali-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/values/kiali-values.yaml -------------------------------------------------------------------------------- /istio/values/prometheus-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/values/prometheus-manifest.yaml -------------------------------------------------------------------------------- /istio/work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/istio/work.md -------------------------------------------------------------------------------- /jenkins/00-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/00-ns.yaml -------------------------------------------------------------------------------- /jenkins/01-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/01-rbac.yaml -------------------------------------------------------------------------------- /jenkins/02-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/02-deployment.yaml -------------------------------------------------------------------------------- /jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/README.md -------------------------------------------------------------------------------- /jenkins/docker-inbound-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/docker-inbound-agent/Dockerfile -------------------------------------------------------------------------------- /jenkins/docker-jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/jenkins/docker-jenkins/Dockerfile -------------------------------------------------------------------------------- /k3s/00-ansible/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = ./hosts.txt 3 | -------------------------------------------------------------------------------- /k3s/00-ansible/group_vars/k3s_cluster: -------------------------------------------------------------------------------- 1 | # ansible_user: artur 2 | env: k3s_cluster 3 | -------------------------------------------------------------------------------- /k3s/00-ansible/hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/00-ansible/hosts.txt -------------------------------------------------------------------------------- /k3s/00-ansible/ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/00-ansible/ping.yaml -------------------------------------------------------------------------------- /k3s/00-ansible/poweroff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/00-ansible/poweroff.yaml -------------------------------------------------------------------------------- /k3s/00-ansible/prepare-hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/00-ansible/prepare-hosts.yaml -------------------------------------------------------------------------------- /k3s/01-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/README.md -------------------------------------------------------------------------------- /k3s/01-dev/manifests/01-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/01-pvc.yaml -------------------------------------------------------------------------------- /k3s/01-dev/manifests/02-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/02-deployment.yaml -------------------------------------------------------------------------------- /k3s/01-dev/manifests/03-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/03-nodeport.yaml -------------------------------------------------------------------------------- /k3s/01-dev/manifests/04-loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/04-loadbalancer.yaml -------------------------------------------------------------------------------- /k3s/01-dev/manifests/05-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/05-ingress.yaml -------------------------------------------------------------------------------- /k3s/01-dev/manifests/06-s3-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/01-dev/manifests/06-s3-helm.yaml -------------------------------------------------------------------------------- /k3s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/README.md -------------------------------------------------------------------------------- /k3s/WSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k3s/WSL.md -------------------------------------------------------------------------------- /k8s-step-by-step/00-planning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/00-planning/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/00-planning/images/flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/00-planning/images/flow.jpg -------------------------------------------------------------------------------- /k8s-step-by-step/00-planning/images/vms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/00-planning/images/vms.jpg -------------------------------------------------------------------------------- /k8s-step-by-step/01-install/00-ansible/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = ./hosts.txt 3 | -------------------------------------------------------------------------------- /k8s-step-by-step/01-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/01-install/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/02-utils/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/02-utils/00-namespace.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/02-utils/02-0-reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/02-utils/02-0-reloader.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/02-utils/02-1-test-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/02-utils/02-1-test-app.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/02-utils/04-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/02-utils/04-nfs.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/02-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/02-utils/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/03-utils/02-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/03-utils/02-certs.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/03-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/03-utils/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/01-fluentd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/01-fluentd-cm.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/02-fluentd-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/02-fluentd-pvc.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/03-fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/03-fluentd.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/05-flunetbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/05-flunetbit.yaml -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/06-logs/images/logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/06-logs/images/logs.jpg -------------------------------------------------------------------------------- /k8s-step-by-step/07-starter/00-ansible/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = ./hosts.txt 3 | stdout_callback = yaml 4 | 5 | -------------------------------------------------------------------------------- /k8s-step-by-step/07-starter/00-ansible/roles/docker/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | docker_ca_cert: "/etc/ssl/ca/ca.pem" -------------------------------------------------------------------------------- /k8s-step-by-step/07-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/07-starter/README.md -------------------------------------------------------------------------------- /k8s-step-by-step/07-starter/images/role.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/07-starter/images/role.jpg -------------------------------------------------------------------------------- /k8s-step-by-step/07-starter/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/k8s-step-by-step/07-starter/images/user.jpg -------------------------------------------------------------------------------- /kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/README.md -------------------------------------------------------------------------------- /kafka/argo-app/kafka-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/argo-app/kafka-app.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/charts/kafdrop/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/charts/kafdrop/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-art/charts/kafdrop/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/charts/kafdrop/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/charts/kafdrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/charts/kafdrop/README.md -------------------------------------------------------------------------------- /kafka/kafka-art/charts/kafdrop/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/charts/kafdrop/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/values-k1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/values-k1.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/values-k2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/values-k2.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/values-k3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/values-k3.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/values-k4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/values-k4.yaml -------------------------------------------------------------------------------- /kafka/kafka-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/kafka-art/values.yaml -------------------------------------------------------------------------------- /kafka/manifests/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/manifests/ca.yaml -------------------------------------------------------------------------------- /kafka/manifests/kafka-client-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/manifests/kafka-client-ssl.yaml -------------------------------------------------------------------------------- /kafka/manifests/kafka-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/manifests/kafka-ssl.yaml -------------------------------------------------------------------------------- /kafka/manifests/zoo-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kafka/manifests/zoo-ssl.yaml -------------------------------------------------------------------------------- /keycloak/00-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/00-certs.yaml -------------------------------------------------------------------------------- /keycloak/01-keycloak-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/01-keycloak-simple.yaml -------------------------------------------------------------------------------- /keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/README.md -------------------------------------------------------------------------------- /keycloak/argo-app/00-iam-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/argo-app/00-iam-project.yaml -------------------------------------------------------------------------------- /keycloak/argo-app/01-keycloak-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/argo-app/01-keycloak-app.yaml -------------------------------------------------------------------------------- /keycloak/argo-app/02-keycloak-app-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/argo-app/02-keycloak-app-sts.yaml -------------------------------------------------------------------------------- /keycloak/gatekeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/gatekeeper/README.md -------------------------------------------------------------------------------- /keycloak/gatekeeper/argo-app/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/gatekeeper/argo-app/project.yaml -------------------------------------------------------------------------------- /keycloak/gatekeeper/manifests-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/gatekeeper/manifests-v3/README.md -------------------------------------------------------------------------------- /keycloak/manifests-sts/01-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests-sts/01-secrets.yaml -------------------------------------------------------------------------------- /keycloak/manifests-sts/02-keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests-sts/02-keycloak.yaml -------------------------------------------------------------------------------- /keycloak/manifests-sts/03-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests-sts/03-ingress.yaml -------------------------------------------------------------------------------- /keycloak/manifests/01-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests/01-secrets.yaml -------------------------------------------------------------------------------- /keycloak/manifests/02-keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests/02-keycloak.yaml -------------------------------------------------------------------------------- /keycloak/manifests/03-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/manifests/03-ingress.yaml -------------------------------------------------------------------------------- /keycloak/metallb/00-mlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/metallb/00-mlb.yaml -------------------------------------------------------------------------------- /keycloak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/keycloak/values.yaml -------------------------------------------------------------------------------- /kubeadm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/README.md -------------------------------------------------------------------------------- /kubeadm/another-control-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/another-control-nodes.md -------------------------------------------------------------------------------- /kubeadm/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/certificates.md -------------------------------------------------------------------------------- /kubeadm/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/check.md -------------------------------------------------------------------------------- /kubeadm/delete_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/delete_node.md -------------------------------------------------------------------------------- /kubeadm/first_control_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/first_control_node.md -------------------------------------------------------------------------------- /kubeadm/ha_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/ha_cluster.md -------------------------------------------------------------------------------- /kubeadm/images/dns1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/images/dns1.jpg -------------------------------------------------------------------------------- /kubeadm/images/ha_cluster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/images/ha_cluster.jpg -------------------------------------------------------------------------------- /kubeadm/manifests/calico-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/manifests/calico-install.yaml -------------------------------------------------------------------------------- /kubeadm/preliminary_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/preliminary_actions.md -------------------------------------------------------------------------------- /kubeadm/test_stand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/test_stand.md -------------------------------------------------------------------------------- /kubeadm/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/update.md -------------------------------------------------------------------------------- /kubeadm/why_not_kubespray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/why_not_kubespray.md -------------------------------------------------------------------------------- /kubeadm/worker-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kubeadm/worker-nodes.md -------------------------------------------------------------------------------- /kyverno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/README.md -------------------------------------------------------------------------------- /kyverno/containers/demoapp.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/containers/demoapp.Dockerfile -------------------------------------------------------------------------------- /kyverno/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/install.md -------------------------------------------------------------------------------- /kyverno/manifests/01-kyverno-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/manifests/01-kyverno-project.yaml -------------------------------------------------------------------------------- /kyverno/manifests/02-kyverno-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/manifests/02-kyverno-app.yaml -------------------------------------------------------------------------------- /kyverno/mutate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/mutate.md -------------------------------------------------------------------------------- /kyverno/polices/01-non-root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/polices/01-non-root.yaml -------------------------------------------------------------------------------- /kyverno/polices/02-hostpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/polices/02-hostpath.yaml -------------------------------------------------------------------------------- /kyverno/polices/03-project-copy-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/polices/03-project-copy-secret.yaml -------------------------------------------------------------------------------- /kyverno/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/reporting.md -------------------------------------------------------------------------------- /kyverno/roles/01-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/roles/01-secret.yaml -------------------------------------------------------------------------------- /kyverno/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/usage.md -------------------------------------------------------------------------------- /kyverno/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/kyverno/validate.md -------------------------------------------------------------------------------- /logs/async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/README.md -------------------------------------------------------------------------------- /logs/async/argo-app/es-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/es-app.yaml -------------------------------------------------------------------------------- /logs/async/argo-app/fluentbit-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/fluentbit-app.yaml -------------------------------------------------------------------------------- /logs/async/argo-app/kafdrop-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/kafdrop-app.yaml -------------------------------------------------------------------------------- /logs/async/argo-app/kafka-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/kafka-app.yaml -------------------------------------------------------------------------------- /logs/async/argo-app/opensearch-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/opensearch-app.yaml -------------------------------------------------------------------------------- /logs/async/argo-app/vector-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/argo-app/vector-app.yaml -------------------------------------------------------------------------------- /logs/async/charts/es-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/es-art/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/es-art/values-es-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/es-art/values-es-auth.yaml -------------------------------------------------------------------------------- /logs/async/charts/es-art/values-es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/es-art/values-es.yaml -------------------------------------------------------------------------------- /logs/async/charts/es-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/es-art/values.yaml -------------------------------------------------------------------------------- /logs/async/charts/fluent-bit-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/fluent-bit-art/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/fluent-bit-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/fluent-bit-art/values.yaml -------------------------------------------------------------------------------- /logs/async/charts/kafdrop/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafdrop/.helmignore -------------------------------------------------------------------------------- /logs/async/charts/kafdrop/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafdrop/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/kafdrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafdrop/README.md -------------------------------------------------------------------------------- /logs/async/charts/kafdrop/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafdrop/values.yaml -------------------------------------------------------------------------------- /logs/async/charts/kafka-art/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafka-art/.helmignore -------------------------------------------------------------------------------- /logs/async/charts/kafka-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafka-art/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/kafka-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/kafka-art/values.yaml -------------------------------------------------------------------------------- /logs/async/charts/opensearch-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/opensearch-art/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/opensearch-art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/opensearch-art/README.md -------------------------------------------------------------------------------- /logs/async/charts/opensearch-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/opensearch-art/values.yaml -------------------------------------------------------------------------------- /logs/async/charts/vector-art/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/vector-art/Chart.yaml -------------------------------------------------------------------------------- /logs/async/charts/vector-art/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/charts/vector-art/values.yaml -------------------------------------------------------------------------------- /logs/async/images/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/logs/async/images/s1.jpg -------------------------------------------------------------------------------- /loki/00-argo-app/00-loki-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/00-argo-app/00-loki-project.yaml -------------------------------------------------------------------------------- /loki/01-loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/README.md -------------------------------------------------------------------------------- /loki/01-loki/argo-app/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/argo-app/argo-app.yaml -------------------------------------------------------------------------------- /loki/01-loki/images/sh_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/images/sh_1.jpg -------------------------------------------------------------------------------- /loki/01-loki/manifests/01-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/manifests/01-secrets.yaml -------------------------------------------------------------------------------- /loki/01-loki/manifests/02-loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/manifests/02-loki.yaml -------------------------------------------------------------------------------- /loki/01-loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/01-loki/values.yaml -------------------------------------------------------------------------------- /loki/02-grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/02-grafana/README.md -------------------------------------------------------------------------------- /loki/02-grafana/argo-app/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/02-grafana/argo-app/argo-app.yaml -------------------------------------------------------------------------------- /loki/02-grafana/manifests/01-configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/02-grafana/manifests/01-configmaps.yaml -------------------------------------------------------------------------------- /loki/02-grafana/manifests/03-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/02-grafana/manifests/03-ingress.yaml -------------------------------------------------------------------------------- /loki/03-fluentbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/03-fluentbit/README.md -------------------------------------------------------------------------------- /loki/03-fluentbit/argo-app/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/03-fluentbit/argo-app/argo-app.yaml -------------------------------------------------------------------------------- /loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/loki/README.md -------------------------------------------------------------------------------- /longhorn/00-ansible/files/modules-iscsi.conf: -------------------------------------------------------------------------------- 1 | iscsi_tcp 2 | -------------------------------------------------------------------------------- /longhorn/00-ansible/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/00-ansible/hosts.yaml -------------------------------------------------------------------------------- /longhorn/00-ansible/prepare_host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/00-ansible/prepare_host.yaml -------------------------------------------------------------------------------- /longhorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/README.md -------------------------------------------------------------------------------- /longhorn/images/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/images/new.jpg -------------------------------------------------------------------------------- /longhorn/images/old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/images/old.jpg -------------------------------------------------------------------------------- /longhorn/manifests/00-basic-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/manifests/00-basic-auth-secret.yaml -------------------------------------------------------------------------------- /longhorn/manifests/01-ingress-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/manifests/01-ingress-ui.yaml -------------------------------------------------------------------------------- /longhorn/manifests/02-storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/manifests/02-storage-class.yaml -------------------------------------------------------------------------------- /longhorn/postgresql/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/postgresql/pgadmin.yaml -------------------------------------------------------------------------------- /longhorn/postgresql/postgreesql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/postgresql/postgreesql.yaml -------------------------------------------------------------------------------- /longhorn/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/prepare.sh -------------------------------------------------------------------------------- /longhorn/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/longhorn/values.yaml -------------------------------------------------------------------------------- /minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/README.md -------------------------------------------------------------------------------- /minio/argo-app/argo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/argo-app/argo-app.yaml -------------------------------------------------------------------------------- /minio/argo-app/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/argo-app/project.yaml -------------------------------------------------------------------------------- /minio/images/sh1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/images/sh1.jpg -------------------------------------------------------------------------------- /minio/manifests/00-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/manifests/00-secrets.yaml -------------------------------------------------------------------------------- /minio/manifests/01-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/manifests/01-minio.yaml -------------------------------------------------------------------------------- /minio/manifests/02-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/manifests/02-console.yaml -------------------------------------------------------------------------------- /minio/manifests/03-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/manifests/03-ingress.yaml -------------------------------------------------------------------------------- /minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/minio/values.yaml -------------------------------------------------------------------------------- /monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/README.md -------------------------------------------------------------------------------- /monitoring/argo-app/01-ksm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/01-ksm.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/02-nexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/02-nexporter.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/03-victoriametrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/03-victoriametrics.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/04-vmagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/04-vmagent.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/05-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/05-grafana.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/06-alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/06-alertmanager.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/07-vmalert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/07-vmalert.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/08-karma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/08-karma.yaml -------------------------------------------------------------------------------- /monitoring/argo-app/09-reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-app/09-reloader.yaml -------------------------------------------------------------------------------- /monitoring/argo-project/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/argo-project/project.yaml -------------------------------------------------------------------------------- /monitoring/charts/alertmanager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/alertmanager/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/alertmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/alertmanager/README.md -------------------------------------------------------------------------------- /monitoring/charts/alertmanager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/alertmanager/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/grafana/README.md -------------------------------------------------------------------------------- /monitoring/charts/grafana/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/grafana/my-values.yaml -------------------------------------------------------------------------------- /monitoring/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/grafana/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/karma/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/karma/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/karma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/karma/README.md -------------------------------------------------------------------------------- /monitoring/charts/karma/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/karma/my-values.yaml -------------------------------------------------------------------------------- /monitoring/charts/karma/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/karma/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/ksm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/ksm/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/ksm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/ksm/README.md -------------------------------------------------------------------------------- /monitoring/charts/ksm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/ksm/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/nexporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/nexporter/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/nexporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/nexporter/README.md -------------------------------------------------------------------------------- /monitoring/charts/nexporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/nexporter/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vm/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vm/README.md -------------------------------------------------------------------------------- /monitoring/charts/vm/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vm/my-values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vm/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmagent/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmagent/README.md -------------------------------------------------------------------------------- /monitoring/charts/vmagent/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmagent/my-values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmagent/values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmalert/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmalert/Chart.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmalert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmalert/README.md -------------------------------------------------------------------------------- /monitoring/charts/vmalert/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmalert/my-values.yaml -------------------------------------------------------------------------------- /monitoring/charts/vmalert/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/charts/vmalert/values.yaml -------------------------------------------------------------------------------- /monitoring/final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/README.md -------------------------------------------------------------------------------- /monitoring/final/argo-app/01-ksm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/01-ksm.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/02-nexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/02-nexporter.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/04-vmagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/04-vmagent.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/05-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/05-grafana.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/07-vmalert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/07-vmalert.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/08-karma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/08-karma.yaml -------------------------------------------------------------------------------- /monitoring/final/argo-app/09-reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/argo-app/09-reloader.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/ksm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/ksm/Chart.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/ksm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/ksm/README.md -------------------------------------------------------------------------------- /monitoring/final/charts/ksm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/ksm/values.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/nexporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/nexporter/Chart.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/nexporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/nexporter/README.md -------------------------------------------------------------------------------- /monitoring/final/charts/vm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vm/Chart.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vm/README.md -------------------------------------------------------------------------------- /monitoring/final/charts/vm/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vm/my-values.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/vm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vm/values.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/vmagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vmagent/Chart.yaml -------------------------------------------------------------------------------- /monitoring/final/charts/vmagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vmagent/README.md -------------------------------------------------------------------------------- /monitoring/final/charts/vmagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/charts/vmagent/values.yaml -------------------------------------------------------------------------------- /monitoring/final/dashboards/daemonset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/daemonset.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/deployment.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/k8s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/k8s.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/main.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/nodes.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/pod.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/pods-alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/pods-alert.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/pods.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/sts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/sts.json -------------------------------------------------------------------------------- /monitoring/final/dashboards/victoria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/dashboards/victoria.json -------------------------------------------------------------------------------- /monitoring/final/manifests/certs/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/manifests/certs/certs.yaml -------------------------------------------------------------------------------- /monitoring/final/manifests/karma/02-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/manifests/karma/02-cm.yaml -------------------------------------------------------------------------------- /monitoring/final/manifests/makeb64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/final/manifests/makeb64.sh -------------------------------------------------------------------------------- /monitoring/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/images/image1.jpg -------------------------------------------------------------------------------- /monitoring/manifests/certs/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/manifests/certs/certs.yaml -------------------------------------------------------------------------------- /monitoring/manifests/reloader/reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/manifests/reloader/reloader.yaml -------------------------------------------------------------------------------- /monitoring/manifests/vmalert/add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/manifests/vmalert/add.yaml -------------------------------------------------------------------------------- /monitoring/video04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video04.md -------------------------------------------------------------------------------- /monitoring/video05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video05/README.md -------------------------------------------------------------------------------- /monitoring/video05/argo-app/05-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video05/argo-app/05-grafana.yaml -------------------------------------------------------------------------------- /monitoring/video05/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video05/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /monitoring/video05/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video05/charts/grafana/README.md -------------------------------------------------------------------------------- /monitoring/video05/charts/grafana/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /monitoring/video06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/README.md -------------------------------------------------------------------------------- /monitoring/video06/argo-app/05-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/argo-app/05-grafana.yaml -------------------------------------------------------------------------------- /monitoring/video06/dashboards/daemonset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/daemonset.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/k8s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/k8s.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/main.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/nodes.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/pod.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/pods.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/sts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/sts.json -------------------------------------------------------------------------------- /monitoring/video06/dashboards/victoria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/dashboards/victoria.json -------------------------------------------------------------------------------- /monitoring/video06/makeb64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video06/makeb64.sh -------------------------------------------------------------------------------- /monitoring/video07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/README.md -------------------------------------------------------------------------------- /monitoring/video07/argo-app/05-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/argo-app/05-grafana.yaml -------------------------------------------------------------------------------- /monitoring/video07/argo-app/07-vmalert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/argo-app/07-vmalert.yaml -------------------------------------------------------------------------------- /monitoring/video07/dashboards/daemonset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/daemonset.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/k8s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/k8s.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/main.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/nodes.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/pod.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/pods.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/sts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/sts.json -------------------------------------------------------------------------------- /monitoring/video07/dashboards/victoria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/dashboards/victoria.json -------------------------------------------------------------------------------- /monitoring/video07/makeb64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video07/makeb64.sh -------------------------------------------------------------------------------- /monitoring/video08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video08/README.md -------------------------------------------------------------------------------- /monitoring/video08/am-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video08/am-secret.yaml -------------------------------------------------------------------------------- /monitoring/video08/argo-app/07-karma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/monitoring/video08/argo-app/07-karma.yaml -------------------------------------------------------------------------------- /net/00-theory/01-host.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/00-theory/01-host.jpg -------------------------------------------------------------------------------- /net/00-theory/02-pod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/00-theory/02-pod.jpg -------------------------------------------------------------------------------- /net/00-theory/03-node.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/00-theory/03-node.jpg -------------------------------------------------------------------------------- /net/00-theory/04-cluster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/00-theory/04-cluster.jpg -------------------------------------------------------------------------------- /net/00-theory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/00-theory/README.md -------------------------------------------------------------------------------- /net/01-install/00-install-docker-ce8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/01-install/00-install-docker-ce8.sh -------------------------------------------------------------------------------- /net/01-install/03-kube-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/01-install/03-kube-config.yaml -------------------------------------------------------------------------------- /net/01-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/01-install/README.md -------------------------------------------------------------------------------- /net/01-install/hostnetwork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/01-install/hostnetwork.jpg -------------------------------------------------------------------------------- /net/01-install/scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/01-install/scheme.jpg -------------------------------------------------------------------------------- /net/02-calico/01-install-calicoctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/02-calico/01-install-calicoctl.sh -------------------------------------------------------------------------------- /net/02-calico/02-calicoctl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/02-calico/02-calicoctl.cfg -------------------------------------------------------------------------------- /net/02-calico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/02-calico/README.md -------------------------------------------------------------------------------- /net/03-services/01-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/01-deployment.yaml -------------------------------------------------------------------------------- /net/03-services/02-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/02-service.yaml -------------------------------------------------------------------------------- /net/03-services/03-service-mail-ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/03-service-mail-ru.yaml -------------------------------------------------------------------------------- /net/03-services/04-endpoint-mail-ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/04-endpoint-mail-ru.yaml -------------------------------------------------------------------------------- /net/03-services/05-nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/05-nexus.yaml -------------------------------------------------------------------------------- /net/03-services/06-external-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/06-external-name.yaml -------------------------------------------------------------------------------- /net/03-services/07-external-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/07-external-ip.yaml -------------------------------------------------------------------------------- /net/03-services/08-node-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/08-node-port.yaml -------------------------------------------------------------------------------- /net/03-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/03-services/README.md -------------------------------------------------------------------------------- /net/04-NetworkPolicies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/README.md -------------------------------------------------------------------------------- /net/04-NetworkPolicies/argoapp/01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/argoapp/01.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/argoapp/02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/argoapp/02.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/argoapp/03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/argoapp/03.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/images/np-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/images/np-01.jpg -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-01.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-02.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-03.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-04.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-05.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-06.yaml -------------------------------------------------------------------------------- /net/04-NetworkPolicies/np/np-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/04-NetworkPolicies/np/np-07.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/Hep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/Hep.md -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/README.md -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/crds.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-01.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-02.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-03.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-04.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-05.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-06.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-07.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-08.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-09.yaml -------------------------------------------------------------------------------- /net/05-NetworkPolicy-calico/np/np-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/05-NetworkPolicy-calico/np/np-10.yaml -------------------------------------------------------------------------------- /net/06-calico ebpf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/net/06-calico ebpf/README.md -------------------------------------------------------------------------------- /nexus/00-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/nexus/00-ns.yaml -------------------------------------------------------------------------------- /nexus/01-start-nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/nexus/01-start-nexus.yaml -------------------------------------------------------------------------------- /nexus/02-final-nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/nexus/02-final-nexus.yaml -------------------------------------------------------------------------------- /nexus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/nexus/README.md -------------------------------------------------------------------------------- /notclassified/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/notclassified/README.md -------------------------------------------------------------------------------- /notclassified/timezone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/notclassified/timezone/README.md -------------------------------------------------------------------------------- /openldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/README.md -------------------------------------------------------------------------------- /openldap/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/README.md -------------------------------------------------------------------------------- /openldap/chart/artopenldap/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/artopenldap/.helmignore -------------------------------------------------------------------------------- /openldap/chart/artopenldap/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/artopenldap/Chart.yaml -------------------------------------------------------------------------------- /openldap/chart/artopenldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/artopenldap/README.md -------------------------------------------------------------------------------- /openldap/chart/artopenldap/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/artopenldap/TODO.md -------------------------------------------------------------------------------- /openldap/chart/artopenldap/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/artopenldap/values.yaml -------------------------------------------------------------------------------- /openldap/chart/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/schemas/README.md -------------------------------------------------------------------------------- /openldap/chart/schemas/my_core.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/schemas/my_core.ldif -------------------------------------------------------------------------------- /openldap/chart/schemas/my_cosine.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/schemas/my_cosine.ldif -------------------------------------------------------------------------------- /openldap/chart/schemas/my_inetorgperson.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/chart/schemas/my_inetorgperson.ldif -------------------------------------------------------------------------------- /openldap/containers/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/.gitlab-ci.yml -------------------------------------------------------------------------------- /openldap/containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/README.md -------------------------------------------------------------------------------- /openldap/containers/conf/DB_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/DB_CONFIG -------------------------------------------------------------------------------- /openldap/containers/conf/add_users.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/add_users.ldif -------------------------------------------------------------------------------- /openldap/containers/conf/artopenldap.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/artopenldap.service -------------------------------------------------------------------------------- /openldap/containers/conf/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/init.sh -------------------------------------------------------------------------------- /openldap/containers/conf/init_data.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/init_data.ldif -------------------------------------------------------------------------------- /openldap/containers/conf/master.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/master.ldif -------------------------------------------------------------------------------- /openldap/containers/conf/slapd.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/slapd.ldif -------------------------------------------------------------------------------- /openldap/containers/conf/slave.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/conf/slave.ldif -------------------------------------------------------------------------------- /openldap/containers/exporter.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/exporter.Dockerfile -------------------------------------------------------------------------------- /openldap/containers/openldap-2.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/openldap-2.4.Dockerfile -------------------------------------------------------------------------------- /openldap/containers/openldap.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/containers/openldap.Dockerfile -------------------------------------------------------------------------------- /openldap/multimaster/01ldapId.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/01ldapId.ldif -------------------------------------------------------------------------------- /openldap/multimaster/01ldapslave.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/01ldapslave.ldif -------------------------------------------------------------------------------- /openldap/multimaster/02ldapId.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/02ldapId.ldif -------------------------------------------------------------------------------- /openldap/multimaster/02ldapslave.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/02ldapslave.ldif -------------------------------------------------------------------------------- /openldap/multimaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/README.md -------------------------------------------------------------------------------- /openldap/multimaster/admin_password.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/admin_password.ldif -------------------------------------------------------------------------------- /openldap/multimaster/openldap.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/openldap.drawio -------------------------------------------------------------------------------- /openldap/multimaster/repluser.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/repluser.ldif -------------------------------------------------------------------------------- /openldap/multimaster/repluserrights.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/repluserrights.ldif -------------------------------------------------------------------------------- /openldap/multimaster/slapd.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/slapd.ldif -------------------------------------------------------------------------------- /openldap/multimaster/syncprov_enable.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/multimaster/syncprov_enable.ldif -------------------------------------------------------------------------------- /openldap/standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/README.md -------------------------------------------------------------------------------- /openldap/standalone/add_user.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/add_user.ldif -------------------------------------------------------------------------------- /openldap/standalone/admin_password.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/admin_password.ldif -------------------------------------------------------------------------------- /openldap/standalone/init_data.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/init_data.ldif -------------------------------------------------------------------------------- /openldap/standalone/petrov_password.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/petrov_password.ldif -------------------------------------------------------------------------------- /openldap/standalone/slapd.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/standalone/slapd.ldif -------------------------------------------------------------------------------- /openldap/usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/usage/README.md -------------------------------------------------------------------------------- /openldap/usage/chart/keycloak-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/usage/chart/keycloak-values.yaml -------------------------------------------------------------------------------- /openldap/usage/ldifs/01-organization.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/usage/ldifs/01-organization.ldif -------------------------------------------------------------------------------- /openldap/usage/manifests/01-ldap-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/openldap/usage/manifests/01-ldap-issuer.yaml -------------------------------------------------------------------------------- /opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/README.md -------------------------------------------------------------------------------- /opensearch/charts/opensearch-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/charts/opensearch-values.yaml -------------------------------------------------------------------------------- /opensearch/charts/values-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/charts/values-dashboard.yaml -------------------------------------------------------------------------------- /opensearch/charts/values-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/charts/values-data.yaml -------------------------------------------------------------------------------- /opensearch/charts/values-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/charts/values-master.yaml -------------------------------------------------------------------------------- /opensearch/manifests/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/manifests/certs.yaml -------------------------------------------------------------------------------- /opensearch/manifests/dashboard-sec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/manifests/dashboard-sec.yaml -------------------------------------------------------------------------------- /opensearch/manifests/opensearch-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/manifests/opensearch-config.yaml -------------------------------------------------------------------------------- /opensearch/manifests/opensearch-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/manifests/opensearch-roles.yaml -------------------------------------------------------------------------------- /opensearch/manifests/opensearch-tenats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/opensearch/manifests/opensearch-tenats.yaml -------------------------------------------------------------------------------- /rancher/00-install-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-install-app.sh -------------------------------------------------------------------------------- /rancher/00-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-monitoring/README.md -------------------------------------------------------------------------------- /rancher/00-monitoring/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-monitoring/images/pic1.png -------------------------------------------------------------------------------- /rancher/00-monitoring/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-monitoring/images/pic2.png -------------------------------------------------------------------------------- /rancher/00-monitoring/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-monitoring/images/pic3.png -------------------------------------------------------------------------------- /rancher/00-monitoring/images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/00-monitoring/images/pic4.png -------------------------------------------------------------------------------- /rancher/02-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/02-monitoring/README.md -------------------------------------------------------------------------------- /rancher/02-monitoring/dsb/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/02-monitoring/dsb/dashboard.json -------------------------------------------------------------------------------- /rancher/03-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/03-monitoring/README.md -------------------------------------------------------------------------------- /rancher/04-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/04-logs/README.md -------------------------------------------------------------------------------- /rancher/05-cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/05-cd/README.md -------------------------------------------------------------------------------- /rancher/05-cd/manifests/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/05-cd/manifests/application.yaml -------------------------------------------------------------------------------- /rancher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/README.md -------------------------------------------------------------------------------- /rancher/chart-for-k3s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/chart-for-k3s.yaml -------------------------------------------------------------------------------- /rancher/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/images/pic1.png -------------------------------------------------------------------------------- /rancher/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/images/pic2.png -------------------------------------------------------------------------------- /rancher/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/images/pic3.png -------------------------------------------------------------------------------- /rancher/images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/rancher/images/pic4.png -------------------------------------------------------------------------------- /resourcequota/00-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/00-ns.yaml -------------------------------------------------------------------------------- /resourcequota/02-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/02-quota.yaml -------------------------------------------------------------------------------- /resourcequota/03-limitrange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/03-limitrange.yaml -------------------------------------------------------------------------------- /resourcequota/04-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/04-deployment.yaml -------------------------------------------------------------------------------- /resourcequota/05-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/05-service.yaml -------------------------------------------------------------------------------- /resourcequota/06-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/06-pvc.yaml -------------------------------------------------------------------------------- /resourcequota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/resourcequota/README.md -------------------------------------------------------------------------------- /semaphore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/README.md -------------------------------------------------------------------------------- /semaphore/manifests/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/configmap.yaml -------------------------------------------------------------------------------- /semaphore/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/deployment.yaml -------------------------------------------------------------------------------- /semaphore/manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/ingress.yaml -------------------------------------------------------------------------------- /semaphore/manifests/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/pvc.yaml -------------------------------------------------------------------------------- /semaphore/manifests/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/secret.yaml -------------------------------------------------------------------------------- /semaphore/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/manifests/service.yaml -------------------------------------------------------------------------------- /semaphore/postgres/pgadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/postgres/pgadmin.yaml -------------------------------------------------------------------------------- /semaphore/postgres/postgreesql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/semaphore/postgres/postgreesql.yaml -------------------------------------------------------------------------------- /tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/README.md -------------------------------------------------------------------------------- /tracing/bonus_pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/bonus_pack/README.md -------------------------------------------------------------------------------- /tracing/bonus_pack/diagramm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/bonus_pack/diagramm.svg -------------------------------------------------------------------------------- /tracing/for_admins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/for_admins/README.md -------------------------------------------------------------------------------- /tracing/for_admins/charts/jaeger/jaeger/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /tracing/for_admins/charts/jaeger/jaeger/charts/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /tracing/for_admins/charts/jaeger/jaeger/charts/elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /tracing/for_admins/charts/jaeger/jaeger/charts/elasticsearch/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | clusterName: upgrade 3 | -------------------------------------------------------------------------------- /tracing/for_admins/charts/jaeger/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/for_admins/charts/jaeger/values.yaml -------------------------------------------------------------------------------- /tracing/for_developers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/for_developers/README.md -------------------------------------------------------------------------------- /tracing/images/logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/images/logs.jpg -------------------------------------------------------------------------------- /tracing/images/metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/images/metadata.jpg -------------------------------------------------------------------------------- /tracing/images/trace1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/images/trace1.jpg -------------------------------------------------------------------------------- /tracing/images/trace2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/tracing/images/trace2.jpg -------------------------------------------------------------------------------- /vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/README.md -------------------------------------------------------------------------------- /vault/argo-app/application-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/argo-app/application-app.yaml -------------------------------------------------------------------------------- /vault/argo-app/csi-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/argo-app/csi-app.yaml -------------------------------------------------------------------------------- /vault/argo-app/vault-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/argo-app/vault-app.yaml -------------------------------------------------------------------------------- /vault/manifests-app/01-openresty-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/manifests-app/01-openresty-cm.yaml -------------------------------------------------------------------------------- /vault/manifests-app/02-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/manifests-app/02-openresty.yaml -------------------------------------------------------------------------------- /vault/manifests-app/03-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/manifests-app/03-csi.yaml -------------------------------------------------------------------------------- /vault/manifests-app/04-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/manifests-app/04-ingress.yaml -------------------------------------------------------------------------------- /vault/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/values.yaml -------------------------------------------------------------------------------- /vault/video2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/README.md -------------------------------------------------------------------------------- /vault/video2/argo-app/application-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/argo-app/application-app.yaml -------------------------------------------------------------------------------- /vault/video2/argo-app/vault-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/argo-app/vault-app.yaml -------------------------------------------------------------------------------- /vault/video2/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/images/image1.jpg -------------------------------------------------------------------------------- /vault/video2/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/images/image2.jpg -------------------------------------------------------------------------------- /vault/video2/manifests-app/01-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/manifests-app/01-cm.yaml -------------------------------------------------------------------------------- /vault/video2/manifests-app/02-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/manifests-app/02-nginx.yaml -------------------------------------------------------------------------------- /vault/video2/manifests-app/04-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/manifests-app/04-ingress.yaml -------------------------------------------------------------------------------- /vault/video2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/vault/video2/values.yaml -------------------------------------------------------------------------------- /volumes/01-emptyDir/01-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/01-emptyDir/01-openresty.yaml -------------------------------------------------------------------------------- /volumes/01-emptyDir/02-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/01-emptyDir/02-openresty.yaml -------------------------------------------------------------------------------- /volumes/01-emptyDir/03-openresty-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/01-emptyDir/03-openresty-2.yaml -------------------------------------------------------------------------------- /volumes/01-emptyDir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/01-emptyDir/README.md -------------------------------------------------------------------------------- /volumes/02-hostPath/01-centos-directory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/02-hostPath/01-centos-directory.yaml -------------------------------------------------------------------------------- /volumes/02-hostPath/02-centos-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/02-hostPath/02-centos-create.yaml -------------------------------------------------------------------------------- /volumes/02-hostPath/03-centos-create-af.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/02-hostPath/03-centos-create-af.yaml -------------------------------------------------------------------------------- /volumes/02-hostPath/04-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/02-hostPath/04-openresty.yaml -------------------------------------------------------------------------------- /volumes/02-hostPath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/02-hostPath/README.md -------------------------------------------------------------------------------- /volumes/03-configMap/02-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/03-configMap/02-openresty.yaml -------------------------------------------------------------------------------- /volumes/03-configMap/03-configmap-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/03-configMap/03-configmap-env.yaml -------------------------------------------------------------------------------- /volumes/03-configMap/04-openresty-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/03-configMap/04-openresty-env.yaml -------------------------------------------------------------------------------- /volumes/03-configMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/03-configMap/README.md -------------------------------------------------------------------------------- /volumes/03-configMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/03-configMap/index.html -------------------------------------------------------------------------------- /volumes/04-secrets/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/04-secrets/00-secret.yaml -------------------------------------------------------------------------------- /volumes/04-secrets/01-openresty-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/04-secrets/01-openresty-env.yaml -------------------------------------------------------------------------------- /volumes/04-secrets/02-openresty-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/04-secrets/02-openresty-volume.yaml -------------------------------------------------------------------------------- /volumes/04-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/04-secrets/README.md -------------------------------------------------------------------------------- /volumes/04-secrets/password.txt: -------------------------------------------------------------------------------- 1 | mypassword 2 | -------------------------------------------------------------------------------- /volumes/04-secrets/user.txt: -------------------------------------------------------------------------------- 1 | user_admin -------------------------------------------------------------------------------- /volumes/05-downwardAPI/01-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/05-downwardAPI/01-openresty.yaml -------------------------------------------------------------------------------- /volumes/05-downwardAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/05-downwardAPI/README.md -------------------------------------------------------------------------------- /volumes/06-projected/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/06-projected/00-secret.yaml -------------------------------------------------------------------------------- /volumes/06-projected/01-configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/06-projected/01-configMap.yaml -------------------------------------------------------------------------------- /volumes/06-projected/02-openresty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/06-projected/02-openresty.yaml -------------------------------------------------------------------------------- /volumes/06-projected/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/06-projected/README.md -------------------------------------------------------------------------------- /volumes/07-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/07-images/README.md -------------------------------------------------------------------------------- /volumes/07-images/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/07-images/ca.crt -------------------------------------------------------------------------------- /volumes/07-images/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/07-images/html/50x.html -------------------------------------------------------------------------------- /volumes/07-images/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/07-images/html/index.html -------------------------------------------------------------------------------- /volumes/07-images/manifests/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/07-images/manifests/sample.yaml -------------------------------------------------------------------------------- /volumes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/README.md -------------------------------------------------------------------------------- /volumes/volumes.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKAA/youtube/HEAD/volumes/volumes.xmind --------------------------------------------------------------------------------