├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── images ├── ansible.png ├── aws.png ├── containers.png ├── git.png ├── googlecloud.png ├── kubernetes.png ├── linux.png └── terraform.png ├── prepare_for_interview.md ├── run_ci.sh ├── tests └── syntax_lint.py └── topics ├── ansible ├── README.md ├── my_first_playbook.md ├── my_first_task.md ├── solutions │ ├── my_first_playbook.md │ ├── my_first_task.md │ └── update_upgrade_task.md └── update_upgrade_task.md ├── aws ├── README.md ├── exercises │ ├── access_advisor │ │ ├── exercise.md │ │ └── solution.md │ ├── alb_multiple_target_groups │ │ ├── exercise.md │ │ └── solution.md │ ├── app_load_balancer │ │ ├── exercise.md │ │ └── solution.md │ ├── asg_dynamic_scaling_policy │ │ ├── exercise.md │ │ └── solution.md │ ├── aurora_db │ │ ├── exercise.md │ │ └── solution.md │ ├── auto_scaling_groups_basics │ │ ├── exercise.md │ │ └── solution.md │ ├── basic_s3_ci │ │ ├── exercise.md │ │ └── solution.md │ ├── budget_setup │ │ ├── exercise.md │ │ └── solution.md │ ├── create_ami │ │ ├── exercise.md │ │ └── solution.md │ ├── create_efs │ │ ├── exercise.md │ │ └── solution.md │ ├── create_role │ │ ├── exercise.md │ │ └── solution.md │ ├── create_spot_instances │ │ ├── exercise.md │ │ └── solution.md │ ├── create_user │ │ ├── exercise.md │ │ └── solution.md │ ├── creating_records │ │ ├── exercise.md │ │ └── solution.md │ ├── credential_report │ │ ├── exercise.md │ │ └── solution.md │ ├── ebs_volume_creation │ │ ├── exercise.md │ │ └── solution.md │ ├── ec2_iam_roles │ │ ├── exercise.md │ │ └── solution.md │ ├── ecs_task │ │ ├── exercise.md │ │ └── solution.md │ ├── elastic_beanstalk_simple │ │ ├── exercise.md │ │ └── solution.md │ ├── elastic_ip │ │ ├── exercise.md │ │ └── solution.md │ ├── elastic_network_interfaces │ │ ├── exercise.md │ │ └── solution.md │ ├── elasticache │ │ ├── exercise.md │ │ └── solution.md │ ├── health_checks │ │ ├── exercise.md │ │ └── solution.md │ ├── hello_function │ │ ├── exercise.md │ │ └── solution.md │ ├── hibernate_instance │ │ ├── exercise.md │ │ └── solution.md │ ├── launch_ec2_web_instance │ │ ├── exercise.md │ │ └── solution.md │ ├── mysql_db │ │ ├── exercise.md │ │ └── solution.md │ ├── network_load_balancer │ │ ├── exercise.md │ │ └── solution.md │ ├── new_vpc │ │ ├── exercise.md │ │ ├── main.tf │ │ ├── pulumi │ │ │ └── __main__.py │ │ ├── solution.md │ │ └── terraform │ │ │ └── main.tf │ ├── no_application │ │ ├── exercise.md │ │ └── solution.md │ ├── password_policy_and_mfa │ │ ├── exercise.md │ │ └── solution.md │ ├── placement_groups │ │ ├── exercise.md │ │ └── solution.md │ ├── register_domain │ │ ├── exercise.md │ │ └── solution.md │ ├── route_53_failover │ │ ├── exercise.md │ │ └── solution.md │ ├── s3 │ │ └── new_bucket │ │ │ ├── exercise.md │ │ │ ├── pulumi │ │ │ └── __main__.py │ │ │ ├── solution.md │ │ │ └── terraform │ │ │ └── main.tf │ ├── sample_cdk │ │ ├── exercise.md │ │ └── solution.md │ ├── security_groups │ │ ├── exercise.md │ │ └── solution.md │ ├── snapshots │ │ ├── exercise.md │ │ └── solution.md │ ├── subnets │ │ ├── exercise.md │ │ ├── pulumi │ │ │ └── __main__.py │ │ ├── solution.md │ │ └── terraform │ │ │ └── main.tf │ ├── url_function │ │ ├── exercise.md │ │ └── solution.md │ └── web_app_lambda_dynamodb │ │ ├── exercise.md │ │ └── terraform │ │ └── main.tf └── images │ └── lambda │ └── aws_lambda_direct_access.png ├── containers ├── README.md ├── commit_image.md ├── containerized_db.md ├── containerized_db_persistent_storage.md ├── containerized_web_server.md ├── image_layers.md ├── multi_stage_builds.md ├── run_forest_run.md ├── running_containers.md ├── sharing_images.md ├── solutions │ ├── commit_image.md │ ├── containerized_db.md │ ├── containerized_db_persistent_storage.md │ ├── containerized_web_server.md │ ├── image_layers.md │ ├── multi_stage_builds.md │ ├── run_forest_run.md │ ├── running_containers.md │ ├── sharing_images.md │ └── working_with_images.md ├── working_with_images.md └── write_containerfile_run_container.md ├── gcp ├── README.md └── exercises │ ├── assign_roles │ ├── exercise.md │ ├── main.tf │ ├── solution.md │ ├── vars.tf │ └── versions.tf │ ├── create_project │ ├── exercise.md │ ├── main.tf │ ├── solution.md │ └── versions.tf │ └── instance_101 │ ├── exercise.md │ ├── main.tf │ ├── solution.md │ └── versions.tf ├── git ├── README.md ├── branch_01.md ├── commit_01.md ├── solutions │ ├── branch_01_solution.md │ ├── commit_01_solution.md │ └── squashing_commits.md └── squashing_commits.md ├── kubernetes ├── CKA.md ├── README.md ├── exercises │ ├── kustomize_common_labels │ │ ├── exercise.md │ │ ├── solution.md │ │ └── someApp │ │ │ ├── deployment.yml │ │ │ └── service.yml │ ├── labels_and_selectors │ │ ├── exercise.md │ │ └── solution.md │ ├── node_selectors │ │ ├── exercise.md │ │ └── solution.md │ └── taints_101 │ │ ├── exercise.md │ │ └── solution.md ├── images │ ├── cluster_architecture_exercise.png │ ├── cluster_architecture_solution.png │ ├── service_exercise.png │ └── service_solution.png ├── killing_containers.md ├── pods_01.md ├── replicaset_01.md ├── replicaset_02.md ├── replicaset_03.md ├── services_01.md └── solutions │ ├── killing_containers.md │ ├── pods_01_solution.md │ ├── replicaset_01_solution.md │ ├── replicaset_02_solution.md │ ├── replicaset_03_solution.md │ └── services_01_solution.md ├── linux ├── README.md └── exercises │ ├── copy │ ├── README.md │ └── solution.md │ ├── create_remove │ ├── README.md │ └── solution.md │ ├── navigation │ ├── README.md │ └── solution.md │ └── uniqe_count │ ├── README.md │ ├── ip_list │ └── solution.md └── terraform ├── README.md └── exercises ├── launch_ec2_instance ├── exercise.md └── solution.md ├── launch_ec2_web_instance └── exercise.md ├── s3_bucket_rename ├── exercise.md └── solution.md └── terraform_local_provider ├── exercise.md └── solution.md /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/README.md -------------------------------------------------------------------------------- /images/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/ansible.png -------------------------------------------------------------------------------- /images/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/aws.png -------------------------------------------------------------------------------- /images/containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/containers.png -------------------------------------------------------------------------------- /images/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/git.png -------------------------------------------------------------------------------- /images/googlecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/googlecloud.png -------------------------------------------------------------------------------- /images/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/kubernetes.png -------------------------------------------------------------------------------- /images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/linux.png -------------------------------------------------------------------------------- /images/terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/images/terraform.png -------------------------------------------------------------------------------- /prepare_for_interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/prepare_for_interview.md -------------------------------------------------------------------------------- /run_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/run_ci.sh -------------------------------------------------------------------------------- /tests/syntax_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/tests/syntax_lint.py -------------------------------------------------------------------------------- /topics/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/README.md -------------------------------------------------------------------------------- /topics/ansible/my_first_playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/my_first_playbook.md -------------------------------------------------------------------------------- /topics/ansible/my_first_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/my_first_task.md -------------------------------------------------------------------------------- /topics/ansible/solutions/my_first_playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/solutions/my_first_playbook.md -------------------------------------------------------------------------------- /topics/ansible/solutions/my_first_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/solutions/my_first_task.md -------------------------------------------------------------------------------- /topics/ansible/solutions/update_upgrade_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/solutions/update_upgrade_task.md -------------------------------------------------------------------------------- /topics/ansible/update_upgrade_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/ansible/update_upgrade_task.md -------------------------------------------------------------------------------- /topics/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/README.md -------------------------------------------------------------------------------- /topics/aws/exercises/access_advisor/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/access_advisor/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/access_advisor/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/access_advisor/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/alb_multiple_target_groups/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/alb_multiple_target_groups/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/alb_multiple_target_groups/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/alb_multiple_target_groups/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/app_load_balancer/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/app_load_balancer/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/app_load_balancer/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/app_load_balancer/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/asg_dynamic_scaling_policy/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/asg_dynamic_scaling_policy/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/asg_dynamic_scaling_policy/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/asg_dynamic_scaling_policy/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/aurora_db/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/aurora_db/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/aurora_db/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/aurora_db/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/auto_scaling_groups_basics/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/auto_scaling_groups_basics/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/auto_scaling_groups_basics/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/auto_scaling_groups_basics/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/basic_s3_ci/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/basic_s3_ci/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/basic_s3_ci/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/basic_s3_ci/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/budget_setup/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/budget_setup/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/budget_setup/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/budget_setup/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_ami/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_ami/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_ami/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_ami/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_efs/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_efs/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_efs/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_efs/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_role/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_role/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_role/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_role/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_spot_instances/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_spot_instances/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_spot_instances/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_spot_instances/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_user/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_user/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/create_user/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/create_user/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/creating_records/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/creating_records/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/creating_records/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/creating_records/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/credential_report/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/credential_report/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/credential_report/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/credential_report/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/ebs_volume_creation/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ebs_volume_creation/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/ebs_volume_creation/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ebs_volume_creation/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/ec2_iam_roles/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ec2_iam_roles/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/ec2_iam_roles/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ec2_iam_roles/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/ecs_task/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ecs_task/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/ecs_task/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/ecs_task/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_beanstalk_simple/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_beanstalk_simple/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_beanstalk_simple/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_beanstalk_simple/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_ip/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_ip/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_ip/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_ip/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_network_interfaces/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_network_interfaces/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/elastic_network_interfaces/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elastic_network_interfaces/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/elasticache/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elasticache/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/elasticache/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/elasticache/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/health_checks/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/health_checks/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/health_checks/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/health_checks/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/hello_function/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/hello_function/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/hello_function/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/hello_function/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/hibernate_instance/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/hibernate_instance/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/hibernate_instance/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/hibernate_instance/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/launch_ec2_web_instance/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/launch_ec2_web_instance/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/launch_ec2_web_instance/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/launch_ec2_web_instance/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/mysql_db/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/mysql_db/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/mysql_db/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/mysql_db/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/network_load_balancer/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/network_load_balancer/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/network_load_balancer/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/network_load_balancer/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/new_vpc/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/new_vpc/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/new_vpc/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topics/aws/exercises/new_vpc/pulumi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/new_vpc/pulumi/__main__.py -------------------------------------------------------------------------------- /topics/aws/exercises/new_vpc/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/new_vpc/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/new_vpc/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/new_vpc/terraform/main.tf -------------------------------------------------------------------------------- /topics/aws/exercises/no_application/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/no_application/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/no_application/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/no_application/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/password_policy_and_mfa/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/password_policy_and_mfa/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/password_policy_and_mfa/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/password_policy_and_mfa/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/placement_groups/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/placement_groups/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/placement_groups/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/placement_groups/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/register_domain/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/register_domain/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/register_domain/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/register_domain/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/route_53_failover/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/route_53_failover/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/route_53_failover/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/route_53_failover/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/s3/new_bucket/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/s3/new_bucket/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/s3/new_bucket/pulumi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/s3/new_bucket/pulumi/__main__.py -------------------------------------------------------------------------------- /topics/aws/exercises/s3/new_bucket/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/s3/new_bucket/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/s3/new_bucket/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/s3/new_bucket/terraform/main.tf -------------------------------------------------------------------------------- /topics/aws/exercises/sample_cdk/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/sample_cdk/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/sample_cdk/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/sample_cdk/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/security_groups/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/security_groups/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/security_groups/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/security_groups/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/snapshots/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/snapshots/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/snapshots/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/snapshots/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/subnets/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/subnets/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/subnets/pulumi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/subnets/pulumi/__main__.py -------------------------------------------------------------------------------- /topics/aws/exercises/subnets/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/subnets/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/subnets/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/subnets/terraform/main.tf -------------------------------------------------------------------------------- /topics/aws/exercises/url_function/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/url_function/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/url_function/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/url_function/solution.md -------------------------------------------------------------------------------- /topics/aws/exercises/web_app_lambda_dynamodb/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/web_app_lambda_dynamodb/exercise.md -------------------------------------------------------------------------------- /topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/exercises/web_app_lambda_dynamodb/terraform/main.tf -------------------------------------------------------------------------------- /topics/aws/images/lambda/aws_lambda_direct_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/aws/images/lambda/aws_lambda_direct_access.png -------------------------------------------------------------------------------- /topics/containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/README.md -------------------------------------------------------------------------------- /topics/containers/commit_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/commit_image.md -------------------------------------------------------------------------------- /topics/containers/containerized_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/containerized_db.md -------------------------------------------------------------------------------- /topics/containers/containerized_db_persistent_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/containerized_db_persistent_storage.md -------------------------------------------------------------------------------- /topics/containers/containerized_web_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/containerized_web_server.md -------------------------------------------------------------------------------- /topics/containers/image_layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/image_layers.md -------------------------------------------------------------------------------- /topics/containers/multi_stage_builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/multi_stage_builds.md -------------------------------------------------------------------------------- /topics/containers/run_forest_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/run_forest_run.md -------------------------------------------------------------------------------- /topics/containers/running_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/running_containers.md -------------------------------------------------------------------------------- /topics/containers/sharing_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/sharing_images.md -------------------------------------------------------------------------------- /topics/containers/solutions/commit_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/commit_image.md -------------------------------------------------------------------------------- /topics/containers/solutions/containerized_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/containerized_db.md -------------------------------------------------------------------------------- /topics/containers/solutions/containerized_db_persistent_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/containerized_db_persistent_storage.md -------------------------------------------------------------------------------- /topics/containers/solutions/containerized_web_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/containerized_web_server.md -------------------------------------------------------------------------------- /topics/containers/solutions/image_layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/image_layers.md -------------------------------------------------------------------------------- /topics/containers/solutions/multi_stage_builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/multi_stage_builds.md -------------------------------------------------------------------------------- /topics/containers/solutions/run_forest_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/run_forest_run.md -------------------------------------------------------------------------------- /topics/containers/solutions/running_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/running_containers.md -------------------------------------------------------------------------------- /topics/containers/solutions/sharing_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/sharing_images.md -------------------------------------------------------------------------------- /topics/containers/solutions/working_with_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/solutions/working_with_images.md -------------------------------------------------------------------------------- /topics/containers/working_with_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/working_with_images.md -------------------------------------------------------------------------------- /topics/containers/write_containerfile_run_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/containers/write_containerfile_run_container.md -------------------------------------------------------------------------------- /topics/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/README.md -------------------------------------------------------------------------------- /topics/gcp/exercises/assign_roles/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/assign_roles/exercise.md -------------------------------------------------------------------------------- /topics/gcp/exercises/assign_roles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/assign_roles/main.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/assign_roles/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/assign_roles/solution.md -------------------------------------------------------------------------------- /topics/gcp/exercises/assign_roles/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/assign_roles/vars.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/assign_roles/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/assign_roles/versions.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/create_project/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/create_project/exercise.md -------------------------------------------------------------------------------- /topics/gcp/exercises/create_project/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/create_project/main.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/create_project/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/create_project/solution.md -------------------------------------------------------------------------------- /topics/gcp/exercises/create_project/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/create_project/versions.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/instance_101/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/instance_101/exercise.md -------------------------------------------------------------------------------- /topics/gcp/exercises/instance_101/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/instance_101/main.tf -------------------------------------------------------------------------------- /topics/gcp/exercises/instance_101/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/instance_101/solution.md -------------------------------------------------------------------------------- /topics/gcp/exercises/instance_101/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/gcp/exercises/instance_101/versions.tf -------------------------------------------------------------------------------- /topics/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/README.md -------------------------------------------------------------------------------- /topics/git/branch_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/branch_01.md -------------------------------------------------------------------------------- /topics/git/commit_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/commit_01.md -------------------------------------------------------------------------------- /topics/git/solutions/branch_01_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/solutions/branch_01_solution.md -------------------------------------------------------------------------------- /topics/git/solutions/commit_01_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/solutions/commit_01_solution.md -------------------------------------------------------------------------------- /topics/git/solutions/squashing_commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/solutions/squashing_commits.md -------------------------------------------------------------------------------- /topics/git/squashing_commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/git/squashing_commits.md -------------------------------------------------------------------------------- /topics/kubernetes/CKA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/CKA.md -------------------------------------------------------------------------------- /topics/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/README.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/kustomize_common_labels/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/kustomize_common_labels/exercise.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/kustomize_common_labels/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/kustomize_common_labels/solution.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/kustomize_common_labels/someApp/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/kustomize_common_labels/someApp/deployment.yml -------------------------------------------------------------------------------- /topics/kubernetes/exercises/kustomize_common_labels/someApp/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/kustomize_common_labels/someApp/service.yml -------------------------------------------------------------------------------- /topics/kubernetes/exercises/labels_and_selectors/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/labels_and_selectors/exercise.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/labels_and_selectors/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/labels_and_selectors/solution.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/node_selectors/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/node_selectors/exercise.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/node_selectors/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/node_selectors/solution.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/taints_101/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/taints_101/exercise.md -------------------------------------------------------------------------------- /topics/kubernetes/exercises/taints_101/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/exercises/taints_101/solution.md -------------------------------------------------------------------------------- /topics/kubernetes/images/cluster_architecture_exercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/images/cluster_architecture_exercise.png -------------------------------------------------------------------------------- /topics/kubernetes/images/cluster_architecture_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/images/cluster_architecture_solution.png -------------------------------------------------------------------------------- /topics/kubernetes/images/service_exercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/images/service_exercise.png -------------------------------------------------------------------------------- /topics/kubernetes/images/service_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/images/service_solution.png -------------------------------------------------------------------------------- /topics/kubernetes/killing_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/killing_containers.md -------------------------------------------------------------------------------- /topics/kubernetes/pods_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/pods_01.md -------------------------------------------------------------------------------- /topics/kubernetes/replicaset_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/replicaset_01.md -------------------------------------------------------------------------------- /topics/kubernetes/replicaset_02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/replicaset_02.md -------------------------------------------------------------------------------- /topics/kubernetes/replicaset_03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/replicaset_03.md -------------------------------------------------------------------------------- /topics/kubernetes/services_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/services_01.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/killing_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/killing_containers.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/pods_01_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/pods_01_solution.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/replicaset_01_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/replicaset_01_solution.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/replicaset_02_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/replicaset_02_solution.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/replicaset_03_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/replicaset_03_solution.md -------------------------------------------------------------------------------- /topics/kubernetes/solutions/services_01_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/kubernetes/solutions/services_01_solution.md -------------------------------------------------------------------------------- /topics/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/README.md -------------------------------------------------------------------------------- /topics/linux/exercises/copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/copy/README.md -------------------------------------------------------------------------------- /topics/linux/exercises/copy/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/copy/solution.md -------------------------------------------------------------------------------- /topics/linux/exercises/create_remove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/create_remove/README.md -------------------------------------------------------------------------------- /topics/linux/exercises/create_remove/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/create_remove/solution.md -------------------------------------------------------------------------------- /topics/linux/exercises/navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/navigation/README.md -------------------------------------------------------------------------------- /topics/linux/exercises/navigation/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/navigation/solution.md -------------------------------------------------------------------------------- /topics/linux/exercises/uniqe_count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/uniqe_count/README.md -------------------------------------------------------------------------------- /topics/linux/exercises/uniqe_count/ip_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/uniqe_count/ip_list -------------------------------------------------------------------------------- /topics/linux/exercises/uniqe_count/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/linux/exercises/uniqe_count/solution.md -------------------------------------------------------------------------------- /topics/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/README.md -------------------------------------------------------------------------------- /topics/terraform/exercises/launch_ec2_instance/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/launch_ec2_instance/exercise.md -------------------------------------------------------------------------------- /topics/terraform/exercises/launch_ec2_instance/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/launch_ec2_instance/solution.md -------------------------------------------------------------------------------- /topics/terraform/exercises/launch_ec2_web_instance/exercise.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topics/terraform/exercises/s3_bucket_rename/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/s3_bucket_rename/exercise.md -------------------------------------------------------------------------------- /topics/terraform/exercises/s3_bucket_rename/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/s3_bucket_rename/solution.md -------------------------------------------------------------------------------- /topics/terraform/exercises/terraform_local_provider/exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/terraform_local_provider/exercise.md -------------------------------------------------------------------------------- /topics/terraform/exercises/terraform_local_provider/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/into-the-devops/HEAD/topics/terraform/exercises/terraform_local_provider/solution.md --------------------------------------------------------------------------------