├── LICENSE ├── README.md ├── containers ├── networking.md ├── registry.md └── scratch.md ├── docker ├── 1_containers │ ├── 1_commands.md │ ├── 2_assignments.md │ ├── 3_inside_container.md │ ├── 4_docker_network.md │ └── 5_dns_round_robin_test.md ├── 2_images │ ├── 1.intro.md │ ├── 2.Dockerfile │ ├── 3.Dockerfile │ ├── 3.index.html │ └── 4.Dockerfile ├── 3_persistance │ ├── 1.intro.md │ ├── 2.Dockerfile │ └── 2.index.html ├── 4_compose │ ├── 1.intro.md │ ├── 2.template.yml │ ├── 3.compose.yml │ ├── 4.compose.yml │ ├── 5.cli.md │ ├── 6.docker-compose.yml │ ├── 6.nginx.conf │ ├── 7.drupal.md │ ├── 8.image-building.md │ └── 9.assignment.md ├── 5_swarm │ ├── 1.inro.md │ ├── 2.workaround.md │ ├── 3.basics.md │ ├── 4.routing_mesh.md │ ├── 5.assignment.md │ ├── 6.stack.md │ ├── 7.stack-compose.yml │ ├── 9.health_check.md │ └── secrets.md ├── 6_registries │ └── 1.intro.md ├── 7.networking.md └── README.md ├── gitops └── argocd.md ├── hardware ├── processor.md └── storage.md ├── iaas ├── ansible.md └── terraform.md ├── kafka ├── README.md └── compose.yml ├── kubernetes ├── README.md ├── cni │ ├── README.md │ └── flannel │ │ ├── cluster.yaml │ │ ├── execute.sh │ │ └── hello-world.yaml ├── kind.md ├── kubernetes course │ ├── README.md │ ├── samples │ │ ├── 1.pod │ │ │ ├── helloworld-pod.yml │ │ │ └── runner.sh │ │ ├── 10.service-discovery-1 │ │ │ └── runner.sh │ │ ├── 11.service-discovery-2 │ │ │ ├── database-pod.yml │ │ │ ├── database-service.yml │ │ │ ├── helloworld-deployment.yml │ │ │ ├── helloworld-service.yml │ │ │ ├── runner.sh │ │ │ └── secrets.yml │ │ ├── 12.cm │ │ │ ├── helloworld-pod-env.yml │ │ │ ├── helloworld-pod-volume.yml │ │ │ ├── properties.conf │ │ │ └── runner.sh │ │ ├── 13.nginx │ │ │ ├── cm.yml │ │ │ ├── helloworld-nginx-pod.yml │ │ │ ├── helloworld-nginx-service.yml │ │ │ ├── reverseproxy.conf │ │ │ └── runner.sh │ │ ├── 14.ingress │ │ │ ├── apple.yml │ │ │ ├── banana.yml │ │ │ ├── fruits-ingress.yml │ │ │ ├── ingress-service.yml │ │ │ ├── orange.yml │ │ │ └── runner.sh │ │ ├── 15.wordpress-permanent │ │ │ ├── database.yml │ │ │ ├── runner.sh │ │ │ ├── secrets.yml │ │ │ ├── storage.yml │ │ │ └── wordpress.yml │ │ ├── 17.hpa │ │ │ ├── deployment.yml │ │ │ ├── hpa.yml │ │ │ ├── runner.sh │ │ │ └── service.yml │ │ ├── 18.affinity │ │ │ ├── node-affinity.yml │ │ │ ├── pod-affinity.yml │ │ │ ├── pod-anti-affinity.yml │ │ │ └── runner.sh │ │ ├── 19.toleration │ │ │ ├── deployments.yml │ │ │ └── runner.sh │ │ ├── 2.rc │ │ │ ├── helloworld-rc.yml │ │ │ └── runner.sh │ │ ├── 20.quota │ │ │ ├── default.yml │ │ │ ├── deployments.yml │ │ │ ├── resourcequota.yml │ │ │ └── runner.sh │ │ ├── 3.deployment │ │ │ ├── helloworld-deployment.yml │ │ │ └── runner.sh │ │ ├── 4.service │ │ │ ├── helloworld-deployment.yml │ │ │ ├── helloworld-service.yml │ │ │ └── runner.sh │ │ ├── 5.lable │ │ │ ├── helloworld-pod.yml │ │ │ └── runner.sh │ │ ├── 6.probes │ │ │ ├── helloworld-pod.yml │ │ │ └── runner.sh │ │ ├── 7.lifecycle │ │ │ ├── lifecycle-deployment.yml │ │ │ └── runner.sh │ │ ├── 8.secrets │ │ │ ├── helloworld-pod-env.yml │ │ │ ├── helloworld-pod-volume.yml │ │ │ ├── helloworld-secrets.yml │ │ │ └── runner.sh │ │ └── 9.wordpress │ │ │ ├── mysql-deployment.yml │ │ │ ├── mysql-service.yml │ │ │ ├── runner.sh │ │ │ ├── secrets-secret.yml │ │ │ ├── wordpress-deployment.yml │ │ │ └── wordpress-service.yml │ └── tutorial │ │ ├── 1.introduction.md │ │ ├── 10.webui.md │ │ ├── 11.service-discovery.md │ │ ├── 12.config-map.md │ │ ├── 13.ingress.md │ │ ├── 14.volumes.md │ │ ├── 15.pod-presets.md │ │ ├── 16.statefulset.md │ │ ├── 17.daemonset.md │ │ ├── 18.resource-usage.md │ │ ├── 19.autoscaling.md │ │ ├── 2.architecture.md │ │ ├── 20.affinity.md │ │ ├── 21.taints-tolerations.md │ │ ├── 22.crd.md │ │ ├── 23.operators.md │ │ ├── 24.control-plane.md │ │ ├── 25.resource-quota.md │ │ ├── 26.namespaces.md │ │ ├── 27.user-managment.md │ │ ├── 28.rbac.md │ │ ├── 29.networking.md │ │ ├── 3.rc.md │ │ ├── 30.maintanance.md │ │ ├── 31.ha.md │ │ ├── 32.tls.md │ │ ├── 33.admission-controller.md │ │ ├── 34.pod-security-policy.md │ │ ├── 35.etcd.md │ │ ├── 36.helm.md │ │ ├── 37.skaffold.md │ │ ├── 38.flux.md │ │ ├── 4.deployment.md │ │ ├── 5.service.md │ │ ├── 6.labels.md │ │ ├── 7.probes.md │ │ ├── 8.lifecycle.md │ │ └── 9.secrets.md ├── networking.md └── operator-sdk.md ├── linux ├── bandit │ ├── README.md │ ├── level-00.sh │ ├── level-01.sh │ ├── level-02.sh │ ├── level-03.sh │ ├── level-04.sh │ ├── level-05.sh │ ├── level-06.sh │ ├── level-07.sh │ ├── level-08.sh │ ├── level-09.sh │ ├── level-10.sh │ ├── level-11.sh │ ├── level-12.sh │ ├── level-13.sh │ ├── level-14.sh │ ├── level-15.sh │ ├── level-16.sh │ ├── level-17.sh │ ├── level-18.sh │ ├── level-19.sh │ ├── level-20.sh │ ├── level-21.sh │ ├── level-22.sh │ ├── level-23.sh │ ├── level-24.sh │ ├── level-25.sh │ ├── level-26.sh │ ├── level-27.sh │ ├── level-28.sh │ ├── level-29.sh │ ├── level-30.sh │ ├── level-31.sh │ ├── level-32.sh │ └── level-33.sh ├── basics │ ├── part1.txt │ ├── part11.txt │ ├── part12.txt │ ├── part13.txt │ ├── part14.txt │ ├── part15.txt │ ├── part16.txt │ ├── part17.txt │ ├── part19.txt │ ├── part2.txt │ ├── part20.txt │ ├── part21.txt │ ├── part22.txt │ ├── part23.txt │ ├── part24.txt │ ├── part3.txt │ ├── part4.txt │ ├── part5.txt │ ├── part6.txt │ ├── part7.txt │ ├── part8.txt │ └── part9.txt ├── lpic-1 │ ├── 101 │ │ ├── 1.psudo-filesystem.md │ │ ├── 2.kernel-modules.md │ │ ├── 3.hardware.md │ │ ├── 4.boot-sequence.md │ │ ├── 5.init.md │ │ ├── 6.upstat.md │ │ ├── 7.systemd.md │ │ └── 8.reboot-shutdown.md │ ├── 102 │ │ ├── 1.filesystem.md │ │ ├── 2.lvm.md │ │ ├── 3.legacy-grub.md │ │ ├── 4.grub2.md │ │ ├── 5.shared-library.md │ │ └── 6.package-managers.md │ ├── 103 │ │ └── 1.shell-env.md │ ├── 105 │ │ ├── 1.shell-environment.md │ │ ├── 2.customize-shell-environment.md │ │ └── 3.shell-scripts.md │ ├── 106 │ │ ├── 1.x11.md │ │ └── 2.wayland.md │ ├── 107 │ │ ├── 1.users-and-groups.md │ │ └── 2.automation.md │ ├── 108 │ │ ├── 1.system-time.md │ │ └── 2.logging.md │ ├── 109 │ │ ├── 1.fundamentals.md │ │ ├── 2.network-manager.md │ │ ├── 3.troubleshooting.md │ │ └── 4.dns.md │ └── README.md ├── lse │ ├── 1.os.md │ ├── 2.network.md │ ├── 3.metrics.md │ └── README.md └── samples │ ├── 1.apache-logs │ └── README.md │ ├── 2.dangling-image-cleaner │ ├── README.md │ └── dangling-image-cleaner.sh │ └── 3.log-parser │ ├── README.md │ ├── logger │ ├── logger.service │ └── logger.sh ├── log-managment ├── elk.md ├── loki.md └── splunk.md ├── monitoring ├── application │ ├── jeager.md │ └── otel.md └── infrastructure │ ├── grafana.md │ ├── prometheus.md │ └── zabbix.md ├── networking ├── README.md ├── concepts │ ├── 1.fundementals │ │ ├── 1.introduction.md │ │ ├── 10.vpn.md │ │ ├── 2.devices.md │ │ ├── 3.osi.md │ │ ├── 4.ip.md │ │ ├── 5.subnetting.md │ │ ├── 6.routing.md │ │ ├── 7.arp.md │ │ ├── 8.tcp.md │ │ └── 9.dns.md │ ├── 2.machine-level-config │ │ ├── 1.static-ip-and-dhcp.md │ │ ├── 2.multiple-ip-addresses.md │ │ ├── 3.nic-bounding-and-teaming.md │ │ ├── 4.static-routes.md │ │ ├── 5.local-name-resolution.md │ │ ├── 6.name-server.md │ │ └── 7.dns-tshoot.md │ └── 3.admin-services-and-tools │ │ ├── 1.firewall.md │ │ ├── 2.iptables.md │ │ ├── 3.firewalld.md │ │ ├── 4.firewalld-tshoot.md │ │ ├── 5.connection-testing.md │ │ └── 6.packet-captures.md └── scenarios │ ├── 1.private-range-conflict.md │ ├── 2.port-forwarding.md │ ├── 3.ssh-tunneling.md │ ├── 4.proxy.md │ ├── 5.load-balancing.md │ ├── 6.openvpn.md │ └── 7.ids.md ├── nginx ├── README.md ├── load-balancing │ ├── configs │ │ ├── backend.conf │ │ └── reverse-proxy.conf │ └── docker-compose.yml ├── log │ ├── configs │ │ ├── backend.conf │ │ └── reverse-proxy.conf │ └── docker-compose.yml ├── rate-limit │ ├── configs │ │ ├── backend.conf │ │ └── reverse-proxy.conf │ └── docker-compose.yml ├── reverse-proxy-prefix │ ├── configs │ │ ├── backend.conf │ │ └── reverse-proxy.conf │ └── docker-compose.yml └── reverse-proxy │ ├── configs │ ├── backend.conf │ └── reverse-proxy.conf │ └── docker-compose.yml ├── opensearch ├── .env ├── README.md └── compose.yml ├── openstack └── README.md ├── python └── README.md ├── service-mesh ├── consul.md └── istio.md ├── sql ├── 1.1.intro.md ├── 1.2.fundementals.md ├── 10.1.one2many.md ├── 10.2.joins.md ├── 10.3.many2many.md ├── 11.triggers.md ├── 12.index.md ├── 2.databases.md ├── 3.1.tables.md ├── 3.2.table.md ├── 4.keys.md ├── 5.crud.md ├── 6.files.md ├── 7.1.functions.md ├── 7.2.string_functions.md ├── 7.3.refining_selections.md ├── 7.4.aggregate_functions.md ├── 8.data_types.md ├── 9.1.operators.md ├── 9.2.logical_operators.md ├── 9.3.comparison_operators.md ├── README.md ├── examples │ ├── 6 │ │ ├── books_table.sql │ │ └── cats_table.sql │ ├── 8 │ │ ├── cats_table.sql │ │ └── dogs_table.sql │ ├── 11 │ │ └── simple_validation.sql │ ├── 10.1 │ │ └── customers_orders.sql │ ├── 10.2 │ │ ├── 1.orders_of_customer.sql │ │ ├── 2.cross_join.sql │ │ ├── 3.inner_join.sql │ │ ├── 4.left_join.sql │ │ └── 5.right_join.sql │ ├── 10.3 │ │ ├── 1.series_reviewers.sql │ │ ├── 2.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ ├── 5.sql │ │ ├── 6.sql │ │ ├── 7.sql │ │ └── 8.sql │ ├── 7.2 │ │ ├── case.sql │ │ ├── char_length.sql │ │ ├── concat.sql │ │ ├── replace.sql │ │ ├── reverse.sql │ │ └── substr.sql │ ├── 7.3 │ │ ├── distinct.sql │ │ ├── like.sql │ │ ├── limit.sql │ │ ├── order.sql │ │ └── where.sql │ ├── 7.4 │ │ ├── avg.sql │ │ ├── count.sql │ │ ├── group.sql │ │ ├── group_min_max.sql │ │ ├── min_max.sql │ │ └── sum.sql │ ├── 9.2 │ │ ├── and.sql │ │ ├── case_sensitive.sql │ │ ├── in.sql │ │ ├── modulo.sql │ │ ├── not_in.sql │ │ ├── not_like.sql │ │ └── or.sql │ └── 9.3 │ │ ├── between.sql │ │ ├── greater_less.sql │ │ ├── is.sql │ │ ├── not_between.sql │ │ └── not_equal.sql └── setup │ ├── mysql.md │ └── postgresql.md ├── utilities └── git.md └── vagrant ├── .gitignore ├── README.md ├── default └── Vagrantfile ├── multiple-indexed └── Vagrantfile ├── multiple-named └── Vagrantfile └── single └── Vagrantfile /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/README.md -------------------------------------------------------------------------------- /containers/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/containers/networking.md -------------------------------------------------------------------------------- /containers/registry.md: -------------------------------------------------------------------------------- 1 | # Containers registry 2 | 3 | - [harbor](https://www.youtube.com/watch?v=REgvBPH369M) 4 | -------------------------------------------------------------------------------- /containers/scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/containers/scratch.md -------------------------------------------------------------------------------- /docker/1_containers/1_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/1_containers/1_commands.md -------------------------------------------------------------------------------- /docker/1_containers/2_assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/1_containers/2_assignments.md -------------------------------------------------------------------------------- /docker/1_containers/3_inside_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/1_containers/3_inside_container.md -------------------------------------------------------------------------------- /docker/1_containers/4_docker_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/1_containers/4_docker_network.md -------------------------------------------------------------------------------- /docker/1_containers/5_dns_round_robin_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/1_containers/5_dns_round_robin_test.md -------------------------------------------------------------------------------- /docker/2_images/1.intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/2_images/1.intro.md -------------------------------------------------------------------------------- /docker/2_images/2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/2_images/2.Dockerfile -------------------------------------------------------------------------------- /docker/2_images/3.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/2_images/3.Dockerfile -------------------------------------------------------------------------------- /docker/2_images/3.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/2_images/3.index.html -------------------------------------------------------------------------------- /docker/2_images/4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/2_images/4.Dockerfile -------------------------------------------------------------------------------- /docker/3_persistance/1.intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/3_persistance/1.intro.md -------------------------------------------------------------------------------- /docker/3_persistance/2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/3_persistance/2.Dockerfile -------------------------------------------------------------------------------- /docker/3_persistance/2.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/3_persistance/2.index.html -------------------------------------------------------------------------------- /docker/4_compose/1.intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/1.intro.md -------------------------------------------------------------------------------- /docker/4_compose/2.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/2.template.yml -------------------------------------------------------------------------------- /docker/4_compose/3.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/3.compose.yml -------------------------------------------------------------------------------- /docker/4_compose/4.compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/4.compose.yml -------------------------------------------------------------------------------- /docker/4_compose/5.cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/5.cli.md -------------------------------------------------------------------------------- /docker/4_compose/6.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/6.docker-compose.yml -------------------------------------------------------------------------------- /docker/4_compose/6.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/6.nginx.conf -------------------------------------------------------------------------------- /docker/4_compose/7.drupal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/7.drupal.md -------------------------------------------------------------------------------- /docker/4_compose/8.image-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/8.image-building.md -------------------------------------------------------------------------------- /docker/4_compose/9.assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/4_compose/9.assignment.md -------------------------------------------------------------------------------- /docker/5_swarm/1.inro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/1.inro.md -------------------------------------------------------------------------------- /docker/5_swarm/2.workaround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/2.workaround.md -------------------------------------------------------------------------------- /docker/5_swarm/3.basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/3.basics.md -------------------------------------------------------------------------------- /docker/5_swarm/4.routing_mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/4.routing_mesh.md -------------------------------------------------------------------------------- /docker/5_swarm/5.assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/5.assignment.md -------------------------------------------------------------------------------- /docker/5_swarm/6.stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/6.stack.md -------------------------------------------------------------------------------- /docker/5_swarm/7.stack-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/7.stack-compose.yml -------------------------------------------------------------------------------- /docker/5_swarm/9.health_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/9.health_check.md -------------------------------------------------------------------------------- /docker/5_swarm/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/5_swarm/secrets.md -------------------------------------------------------------------------------- /docker/6_registries/1.intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/6_registries/1.intro.md -------------------------------------------------------------------------------- /docker/7.networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/7.networking.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/docker/README.md -------------------------------------------------------------------------------- /gitops/argocd.md: -------------------------------------------------------------------------------- 1 | # ArgoCD 2 | -------------------------------------------------------------------------------- /hardware/processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/hardware/processor.md -------------------------------------------------------------------------------- /hardware/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/hardware/storage.md -------------------------------------------------------------------------------- /iaas/ansible.md: -------------------------------------------------------------------------------- 1 | # Anisble 2 | 3 | ## Samples 4 | 5 | - 6 | -------------------------------------------------------------------------------- /iaas/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/iaas/terraform.md -------------------------------------------------------------------------------- /kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kafka/README.md -------------------------------------------------------------------------------- /kafka/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kafka/compose.yml -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/cni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/cni/README.md -------------------------------------------------------------------------------- /kubernetes/cni/flannel/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/cni/flannel/cluster.yaml -------------------------------------------------------------------------------- /kubernetes/cni/flannel/execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/cni/flannel/execute.sh -------------------------------------------------------------------------------- /kubernetes/cni/flannel/hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/cni/flannel/hello-world.yaml -------------------------------------------------------------------------------- /kubernetes/kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kind.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/README.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/1.pod/helloworld-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/1.pod/helloworld-pod.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/1.pod/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/1.pod/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/10.service-discovery-1/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/10.service-discovery-1/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/database-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/database-pod.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/database-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/database-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/helloworld-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/helloworld-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/helloworld-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/helloworld-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/11.service-discovery-2/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/11.service-discovery-2/secrets.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/12.cm/helloworld-pod-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/12.cm/helloworld-pod-env.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/12.cm/helloworld-pod-volume.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/12.cm/helloworld-pod-volume.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/12.cm/properties.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/12.cm/properties.conf -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/12.cm/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/12.cm/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/13.nginx/cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/13.nginx/cm.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/13.nginx/helloworld-nginx-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/13.nginx/helloworld-nginx-pod.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/13.nginx/helloworld-nginx-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/13.nginx/helloworld-nginx-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/13.nginx/reverseproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/13.nginx/reverseproxy.conf -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/13.nginx/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/13.nginx/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/apple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/apple.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/banana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/banana.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/fruits-ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/fruits-ingress.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/ingress-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/ingress-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/orange.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/orange.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/14.ingress/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/14.ingress/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/15.wordpress-permanent/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/15.wordpress-permanent/database.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/15.wordpress-permanent/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/15.wordpress-permanent/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/15.wordpress-permanent/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/15.wordpress-permanent/secrets.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/15.wordpress-permanent/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/15.wordpress-permanent/storage.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/15.wordpress-permanent/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/15.wordpress-permanent/wordpress.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/17.hpa/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/17.hpa/deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/17.hpa/hpa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/17.hpa/hpa.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/17.hpa/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/17.hpa/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/17.hpa/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/17.hpa/service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/18.affinity/node-affinity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/18.affinity/node-affinity.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/18.affinity/pod-affinity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/18.affinity/pod-affinity.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/18.affinity/pod-anti-affinity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/18.affinity/pod-anti-affinity.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/18.affinity/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/18.affinity/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/19.toleration/deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/19.toleration/deployments.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/19.toleration/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/19.toleration/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/2.rc/helloworld-rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/2.rc/helloworld-rc.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/2.rc/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/2.rc/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/20.quota/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/20.quota/default.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/20.quota/deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/20.quota/deployments.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/20.quota/resourcequota.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/20.quota/resourcequota.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/20.quota/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/20.quota/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/3.deployment/helloworld-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/3.deployment/helloworld-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/3.deployment/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/3.deployment/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/4.service/helloworld-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/4.service/helloworld-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/4.service/helloworld-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/4.service/helloworld-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/4.service/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/4.service/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/5.lable/helloworld-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/5.lable/helloworld-pod.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/5.lable/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/5.lable/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/6.probes/helloworld-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/6.probes/helloworld-pod.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/6.probes/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/6.probes/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/7.lifecycle/lifecycle-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/7.lifecycle/lifecycle-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/7.lifecycle/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/7.lifecycle/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/8.secrets/helloworld-pod-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/8.secrets/helloworld-pod-env.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/8.secrets/helloworld-pod-volume.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/8.secrets/helloworld-pod-volume.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/8.secrets/helloworld-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/8.secrets/helloworld-secrets.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/8.secrets/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/8.secrets/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/mysql-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/mysql-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/mysql-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/mysql-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/runner.sh -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/secrets-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/secrets-secret.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/wordpress-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/wordpress-deployment.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/samples/9.wordpress/wordpress-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/samples/9.wordpress/wordpress-service.yml -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/1.introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/1.introduction.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/10.webui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/10.webui.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/11.service-discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/11.service-discovery.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/12.config-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/12.config-map.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/13.ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/13.ingress.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/14.volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/14.volumes.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/15.pod-presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/15.pod-presets.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/16.statefulset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/16.statefulset.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/17.daemonset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/17.daemonset.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/18.resource-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/18.resource-usage.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/19.autoscaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/19.autoscaling.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/2.architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/2.architecture.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/20.affinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/20.affinity.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/21.taints-tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/21.taints-tolerations.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/22.crd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/22.crd.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/23.operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/23.operators.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/24.control-plane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/24.control-plane.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/25.resource-quota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/25.resource-quota.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/26.namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/26.namespaces.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/27.user-managment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/27.user-managment.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/28.rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/28.rbac.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/29.networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/29.networking.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/3.rc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/3.rc.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/30.maintanance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/30.maintanance.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/31.ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/31.ha.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/32.tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/32.tls.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/33.admission-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/33.admission-controller.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/34.pod-security-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/34.pod-security-policy.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/35.etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/35.etcd.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/36.helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/36.helm.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/37.skaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/37.skaffold.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/38.flux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/38.flux.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/4.deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/4.deployment.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/5.service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/5.service.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/6.labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/6.labels.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/7.probes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/7.probes.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/8.lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/8.lifecycle.md -------------------------------------------------------------------------------- /kubernetes/kubernetes course/tutorial/9.secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/kubernetes course/tutorial/9.secrets.md -------------------------------------------------------------------------------- /kubernetes/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/networking.md -------------------------------------------------------------------------------- /kubernetes/operator-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/kubernetes/operator-sdk.md -------------------------------------------------------------------------------- /linux/bandit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/README.md -------------------------------------------------------------------------------- /linux/bandit/level-00.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-00.sh -------------------------------------------------------------------------------- /linux/bandit/level-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-01.sh -------------------------------------------------------------------------------- /linux/bandit/level-02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-02.sh -------------------------------------------------------------------------------- /linux/bandit/level-03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-03.sh -------------------------------------------------------------------------------- /linux/bandit/level-04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-04.sh -------------------------------------------------------------------------------- /linux/bandit/level-05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-05.sh -------------------------------------------------------------------------------- /linux/bandit/level-06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-06.sh -------------------------------------------------------------------------------- /linux/bandit/level-07.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-07.sh -------------------------------------------------------------------------------- /linux/bandit/level-08.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-08.sh -------------------------------------------------------------------------------- /linux/bandit/level-09.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-09.sh -------------------------------------------------------------------------------- /linux/bandit/level-10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-10.sh -------------------------------------------------------------------------------- /linux/bandit/level-11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-11.sh -------------------------------------------------------------------------------- /linux/bandit/level-12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-12.sh -------------------------------------------------------------------------------- /linux/bandit/level-13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-13.sh -------------------------------------------------------------------------------- /linux/bandit/level-14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-14.sh -------------------------------------------------------------------------------- /linux/bandit/level-15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-15.sh -------------------------------------------------------------------------------- /linux/bandit/level-16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-16.sh -------------------------------------------------------------------------------- /linux/bandit/level-17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-17.sh -------------------------------------------------------------------------------- /linux/bandit/level-18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-18.sh -------------------------------------------------------------------------------- /linux/bandit/level-19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-19.sh -------------------------------------------------------------------------------- /linux/bandit/level-20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-20.sh -------------------------------------------------------------------------------- /linux/bandit/level-21.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-21.sh -------------------------------------------------------------------------------- /linux/bandit/level-22.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-22.sh -------------------------------------------------------------------------------- /linux/bandit/level-23.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-23.sh -------------------------------------------------------------------------------- /linux/bandit/level-24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-24.sh -------------------------------------------------------------------------------- /linux/bandit/level-25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-25.sh -------------------------------------------------------------------------------- /linux/bandit/level-26.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-26.sh -------------------------------------------------------------------------------- /linux/bandit/level-27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-27.sh -------------------------------------------------------------------------------- /linux/bandit/level-28.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-28.sh -------------------------------------------------------------------------------- /linux/bandit/level-29.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-29.sh -------------------------------------------------------------------------------- /linux/bandit/level-30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-30.sh -------------------------------------------------------------------------------- /linux/bandit/level-31.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-31.sh -------------------------------------------------------------------------------- /linux/bandit/level-32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/bandit/level-32.sh -------------------------------------------------------------------------------- /linux/bandit/level-33.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/basics/part1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part1.txt -------------------------------------------------------------------------------- /linux/basics/part11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part11.txt -------------------------------------------------------------------------------- /linux/basics/part12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part12.txt -------------------------------------------------------------------------------- /linux/basics/part13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part13.txt -------------------------------------------------------------------------------- /linux/basics/part14.txt: -------------------------------------------------------------------------------- 1 | find command is very powerful in unix 2 | 3 | -------------------------------------------------------------------------------- /linux/basics/part15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part15.txt -------------------------------------------------------------------------------- /linux/basics/part16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part16.txt -------------------------------------------------------------------------------- /linux/basics/part17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part17.txt -------------------------------------------------------------------------------- /linux/basics/part19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part19.txt -------------------------------------------------------------------------------- /linux/basics/part2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part2.txt -------------------------------------------------------------------------------- /linux/basics/part20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part20.txt -------------------------------------------------------------------------------- /linux/basics/part21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part21.txt -------------------------------------------------------------------------------- /linux/basics/part22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part22.txt -------------------------------------------------------------------------------- /linux/basics/part23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part23.txt -------------------------------------------------------------------------------- /linux/basics/part24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part24.txt -------------------------------------------------------------------------------- /linux/basics/part3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part3.txt -------------------------------------------------------------------------------- /linux/basics/part4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part4.txt -------------------------------------------------------------------------------- /linux/basics/part5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part5.txt -------------------------------------------------------------------------------- /linux/basics/part6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part6.txt -------------------------------------------------------------------------------- /linux/basics/part7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part7.txt -------------------------------------------------------------------------------- /linux/basics/part8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part8.txt -------------------------------------------------------------------------------- /linux/basics/part9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/basics/part9.txt -------------------------------------------------------------------------------- /linux/lpic-1/101/1.psudo-filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/1.psudo-filesystem.md -------------------------------------------------------------------------------- /linux/lpic-1/101/2.kernel-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/2.kernel-modules.md -------------------------------------------------------------------------------- /linux/lpic-1/101/3.hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/3.hardware.md -------------------------------------------------------------------------------- /linux/lpic-1/101/4.boot-sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/4.boot-sequence.md -------------------------------------------------------------------------------- /linux/lpic-1/101/5.init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/5.init.md -------------------------------------------------------------------------------- /linux/lpic-1/101/6.upstat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/6.upstat.md -------------------------------------------------------------------------------- /linux/lpic-1/101/7.systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/7.systemd.md -------------------------------------------------------------------------------- /linux/lpic-1/101/8.reboot-shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/101/8.reboot-shutdown.md -------------------------------------------------------------------------------- /linux/lpic-1/102/1.filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/1.filesystem.md -------------------------------------------------------------------------------- /linux/lpic-1/102/2.lvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/2.lvm.md -------------------------------------------------------------------------------- /linux/lpic-1/102/3.legacy-grub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/3.legacy-grub.md -------------------------------------------------------------------------------- /linux/lpic-1/102/4.grub2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/4.grub2.md -------------------------------------------------------------------------------- /linux/lpic-1/102/5.shared-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/5.shared-library.md -------------------------------------------------------------------------------- /linux/lpic-1/102/6.package-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/102/6.package-managers.md -------------------------------------------------------------------------------- /linux/lpic-1/103/1.shell-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/103/1.shell-env.md -------------------------------------------------------------------------------- /linux/lpic-1/105/1.shell-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/105/1.shell-environment.md -------------------------------------------------------------------------------- /linux/lpic-1/105/2.customize-shell-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/105/2.customize-shell-environment.md -------------------------------------------------------------------------------- /linux/lpic-1/105/3.shell-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/105/3.shell-scripts.md -------------------------------------------------------------------------------- /linux/lpic-1/106/1.x11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/106/1.x11.md -------------------------------------------------------------------------------- /linux/lpic-1/106/2.wayland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/106/2.wayland.md -------------------------------------------------------------------------------- /linux/lpic-1/107/1.users-and-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/107/1.users-and-groups.md -------------------------------------------------------------------------------- /linux/lpic-1/107/2.automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/107/2.automation.md -------------------------------------------------------------------------------- /linux/lpic-1/108/1.system-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/108/1.system-time.md -------------------------------------------------------------------------------- /linux/lpic-1/108/2.logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/108/2.logging.md -------------------------------------------------------------------------------- /linux/lpic-1/109/1.fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/109/1.fundamentals.md -------------------------------------------------------------------------------- /linux/lpic-1/109/2.network-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/109/2.network-manager.md -------------------------------------------------------------------------------- /linux/lpic-1/109/3.troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/109/3.troubleshooting.md -------------------------------------------------------------------------------- /linux/lpic-1/109/4.dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/109/4.dns.md -------------------------------------------------------------------------------- /linux/lpic-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lpic-1/README.md -------------------------------------------------------------------------------- /linux/lse/1.os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lse/1.os.md -------------------------------------------------------------------------------- /linux/lse/2.network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lse/2.network.md -------------------------------------------------------------------------------- /linux/lse/3.metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lse/3.metrics.md -------------------------------------------------------------------------------- /linux/lse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/lse/README.md -------------------------------------------------------------------------------- /linux/samples/1.apache-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/1.apache-logs/README.md -------------------------------------------------------------------------------- /linux/samples/2.dangling-image-cleaner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/2.dangling-image-cleaner/README.md -------------------------------------------------------------------------------- /linux/samples/2.dangling-image-cleaner/dangling-image-cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/2.dangling-image-cleaner/dangling-image-cleaner.sh -------------------------------------------------------------------------------- /linux/samples/3.log-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/3.log-parser/README.md -------------------------------------------------------------------------------- /linux/samples/3.log-parser/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/3.log-parser/logger -------------------------------------------------------------------------------- /linux/samples/3.log-parser/logger.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/3.log-parser/logger.service -------------------------------------------------------------------------------- /linux/samples/3.log-parser/logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/linux/samples/3.log-parser/logger.sh -------------------------------------------------------------------------------- /log-managment/elk.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log-managment/loki.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log-managment/splunk.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/application/jeager.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/application/otel.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/infrastructure/grafana.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/infrastructure/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/monitoring/infrastructure/prometheus.md -------------------------------------------------------------------------------- /monitoring/infrastructure/zabbix.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/README.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/1.introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/1.introduction.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/10.vpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/10.vpn.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/2.devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/2.devices.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/3.osi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/3.osi.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/4.ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/4.ip.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/5.subnetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/5.subnetting.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/6.routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/6.routing.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/7.arp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/7.arp.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/8.tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/8.tcp.md -------------------------------------------------------------------------------- /networking/concepts/1.fundementals/9.dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/1.fundementals/9.dns.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/1.static-ip-and-dhcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/1.static-ip-and-dhcp.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/2.multiple-ip-addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/2.multiple-ip-addresses.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/3.nic-bounding-and-teaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/3.nic-bounding-and-teaming.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/4.static-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/4.static-routes.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/5.local-name-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/5.local-name-resolution.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/6.name-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/6.name-server.md -------------------------------------------------------------------------------- /networking/concepts/2.machine-level-config/7.dns-tshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/2.machine-level-config/7.dns-tshoot.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/1.firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/1.firewall.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/2.iptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/2.iptables.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/3.firewalld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/3.firewalld.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/4.firewalld-tshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/4.firewalld-tshoot.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/5.connection-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/5.connection-testing.md -------------------------------------------------------------------------------- /networking/concepts/3.admin-services-and-tools/6.packet-captures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/concepts/3.admin-services-and-tools/6.packet-captures.md -------------------------------------------------------------------------------- /networking/scenarios/1.private-range-conflict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/1.private-range-conflict.md -------------------------------------------------------------------------------- /networking/scenarios/2.port-forwarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/2.port-forwarding.md -------------------------------------------------------------------------------- /networking/scenarios/3.ssh-tunneling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/3.ssh-tunneling.md -------------------------------------------------------------------------------- /networking/scenarios/4.proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/4.proxy.md -------------------------------------------------------------------------------- /networking/scenarios/5.load-balancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/5.load-balancing.md -------------------------------------------------------------------------------- /networking/scenarios/6.openvpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/6.openvpn.md -------------------------------------------------------------------------------- /networking/scenarios/7.ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/networking/scenarios/7.ids.md -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/load-balancing/configs/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/load-balancing/configs/backend.conf -------------------------------------------------------------------------------- /nginx/load-balancing/configs/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/load-balancing/configs/reverse-proxy.conf -------------------------------------------------------------------------------- /nginx/load-balancing/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/load-balancing/docker-compose.yml -------------------------------------------------------------------------------- /nginx/log/configs/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/log/configs/backend.conf -------------------------------------------------------------------------------- /nginx/log/configs/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/log/configs/reverse-proxy.conf -------------------------------------------------------------------------------- /nginx/log/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/log/docker-compose.yml -------------------------------------------------------------------------------- /nginx/rate-limit/configs/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/rate-limit/configs/backend.conf -------------------------------------------------------------------------------- /nginx/rate-limit/configs/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/rate-limit/configs/reverse-proxy.conf -------------------------------------------------------------------------------- /nginx/rate-limit/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/rate-limit/docker-compose.yml -------------------------------------------------------------------------------- /nginx/reverse-proxy-prefix/configs/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy-prefix/configs/backend.conf -------------------------------------------------------------------------------- /nginx/reverse-proxy-prefix/configs/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy-prefix/configs/reverse-proxy.conf -------------------------------------------------------------------------------- /nginx/reverse-proxy-prefix/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy-prefix/docker-compose.yml -------------------------------------------------------------------------------- /nginx/reverse-proxy/configs/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy/configs/backend.conf -------------------------------------------------------------------------------- /nginx/reverse-proxy/configs/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy/configs/reverse-proxy.conf -------------------------------------------------------------------------------- /nginx/reverse-proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/nginx/reverse-proxy/docker-compose.yml -------------------------------------------------------------------------------- /opensearch/.env: -------------------------------------------------------------------------------- 1 | OPENSEARCH_INITIAL_ADMIN_PASSWORD=theStrongPassword123! 2 | -------------------------------------------------------------------------------- /opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/opensearch/README.md -------------------------------------------------------------------------------- /opensearch/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/opensearch/compose.yml -------------------------------------------------------------------------------- /openstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/openstack/README.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/python/README.md -------------------------------------------------------------------------------- /service-mesh/consul.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service-mesh/istio.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/1.1.intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/1.1.intro.md -------------------------------------------------------------------------------- /sql/1.2.fundementals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/1.2.fundementals.md -------------------------------------------------------------------------------- /sql/10.1.one2many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/10.1.one2many.md -------------------------------------------------------------------------------- /sql/10.2.joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/10.2.joins.md -------------------------------------------------------------------------------- /sql/10.3.many2many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/10.3.many2many.md -------------------------------------------------------------------------------- /sql/11.triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/11.triggers.md -------------------------------------------------------------------------------- /sql/12.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/12.index.md -------------------------------------------------------------------------------- /sql/2.databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/2.databases.md -------------------------------------------------------------------------------- /sql/3.1.tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/3.1.tables.md -------------------------------------------------------------------------------- /sql/3.2.table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/3.2.table.md -------------------------------------------------------------------------------- /sql/4.keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/4.keys.md -------------------------------------------------------------------------------- /sql/5.crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/5.crud.md -------------------------------------------------------------------------------- /sql/6.files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/6.files.md -------------------------------------------------------------------------------- /sql/7.1.functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/7.1.functions.md -------------------------------------------------------------------------------- /sql/7.2.string_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/7.2.string_functions.md -------------------------------------------------------------------------------- /sql/7.3.refining_selections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/7.3.refining_selections.md -------------------------------------------------------------------------------- /sql/7.4.aggregate_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/7.4.aggregate_functions.md -------------------------------------------------------------------------------- /sql/8.data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/8.data_types.md -------------------------------------------------------------------------------- /sql/9.1.operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/9.1.operators.md -------------------------------------------------------------------------------- /sql/9.2.logical_operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/9.2.logical_operators.md -------------------------------------------------------------------------------- /sql/9.3.comparison_operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/9.3.comparison_operators.md -------------------------------------------------------------------------------- /sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/README.md -------------------------------------------------------------------------------- /sql/examples/10.1/customers_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.1/customers_orders.sql -------------------------------------------------------------------------------- /sql/examples/10.2/1.orders_of_customer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.2/1.orders_of_customer.sql -------------------------------------------------------------------------------- /sql/examples/10.2/2.cross_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.2/2.cross_join.sql -------------------------------------------------------------------------------- /sql/examples/10.2/3.inner_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.2/3.inner_join.sql -------------------------------------------------------------------------------- /sql/examples/10.2/4.left_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.2/4.left_join.sql -------------------------------------------------------------------------------- /sql/examples/10.2/5.right_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.2/5.right_join.sql -------------------------------------------------------------------------------- /sql/examples/10.3/1.series_reviewers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/1.series_reviewers.sql -------------------------------------------------------------------------------- /sql/examples/10.3/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/2.sql -------------------------------------------------------------------------------- /sql/examples/10.3/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/3.sql -------------------------------------------------------------------------------- /sql/examples/10.3/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/4.sql -------------------------------------------------------------------------------- /sql/examples/10.3/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/5.sql -------------------------------------------------------------------------------- /sql/examples/10.3/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/6.sql -------------------------------------------------------------------------------- /sql/examples/10.3/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/7.sql -------------------------------------------------------------------------------- /sql/examples/10.3/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/10.3/8.sql -------------------------------------------------------------------------------- /sql/examples/11/simple_validation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/11/simple_validation.sql -------------------------------------------------------------------------------- /sql/examples/6/books_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/6/books_table.sql -------------------------------------------------------------------------------- /sql/examples/6/cats_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/6/cats_table.sql -------------------------------------------------------------------------------- /sql/examples/7.2/case.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/case.sql -------------------------------------------------------------------------------- /sql/examples/7.2/char_length.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/char_length.sql -------------------------------------------------------------------------------- /sql/examples/7.2/concat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/concat.sql -------------------------------------------------------------------------------- /sql/examples/7.2/replace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/replace.sql -------------------------------------------------------------------------------- /sql/examples/7.2/reverse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/reverse.sql -------------------------------------------------------------------------------- /sql/examples/7.2/substr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.2/substr.sql -------------------------------------------------------------------------------- /sql/examples/7.3/distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.3/distinct.sql -------------------------------------------------------------------------------- /sql/examples/7.3/like.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.3/like.sql -------------------------------------------------------------------------------- /sql/examples/7.3/limit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.3/limit.sql -------------------------------------------------------------------------------- /sql/examples/7.3/order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.3/order.sql -------------------------------------------------------------------------------- /sql/examples/7.3/where.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM books WHERE pages>=250; 2 | -------------------------------------------------------------------------------- /sql/examples/7.4/avg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/avg.sql -------------------------------------------------------------------------------- /sql/examples/7.4/count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/count.sql -------------------------------------------------------------------------------- /sql/examples/7.4/group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/group.sql -------------------------------------------------------------------------------- /sql/examples/7.4/group_min_max.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/group_min_max.sql -------------------------------------------------------------------------------- /sql/examples/7.4/min_max.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/min_max.sql -------------------------------------------------------------------------------- /sql/examples/7.4/sum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/7.4/sum.sql -------------------------------------------------------------------------------- /sql/examples/8/cats_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/8/cats_table.sql -------------------------------------------------------------------------------- /sql/examples/8/dogs_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/8/dogs_table.sql -------------------------------------------------------------------------------- /sql/examples/9.2/and.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/and.sql -------------------------------------------------------------------------------- /sql/examples/9.2/case_sensitive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/case_sensitive.sql -------------------------------------------------------------------------------- /sql/examples/9.2/in.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/in.sql -------------------------------------------------------------------------------- /sql/examples/9.2/modulo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/modulo.sql -------------------------------------------------------------------------------- /sql/examples/9.2/not_in.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/not_in.sql -------------------------------------------------------------------------------- /sql/examples/9.2/not_like.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/not_like.sql -------------------------------------------------------------------------------- /sql/examples/9.2/or.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.2/or.sql -------------------------------------------------------------------------------- /sql/examples/9.3/between.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.3/between.sql -------------------------------------------------------------------------------- /sql/examples/9.3/greater_less.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.3/greater_less.sql -------------------------------------------------------------------------------- /sql/examples/9.3/is.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.3/is.sql -------------------------------------------------------------------------------- /sql/examples/9.3/not_between.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.3/not_between.sql -------------------------------------------------------------------------------- /sql/examples/9.3/not_equal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/examples/9.3/not_equal.sql -------------------------------------------------------------------------------- /sql/setup/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/setup/mysql.md -------------------------------------------------------------------------------- /sql/setup/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/sql/setup/postgresql.md -------------------------------------------------------------------------------- /utilities/git.md: -------------------------------------------------------------------------------- 1 | # Git 2 | -------------------------------------------------------------------------------- /vagrant/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/default/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/vagrant/default/Vagrantfile -------------------------------------------------------------------------------- /vagrant/multiple-indexed/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/vagrant/multiple-indexed/Vagrantfile -------------------------------------------------------------------------------- /vagrant/multiple-named/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/vagrant/multiple-named/Vagrantfile -------------------------------------------------------------------------------- /vagrant/single/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadne/laboratory/HEAD/vagrant/single/Vagrantfile --------------------------------------------------------------------------------