├── .gitignore ├── LICENSE ├── README.md ├── cicd ├── bamboo │ └── node.md ├── circleci │ └── node.md ├── gitlab │ └── node.md └── jenkins │ └── node.md ├── contributing.md └── images ├── Go.png ├── HR.png ├── ansible.png ├── aws.png ├── aws ├── ami.png ├── ebs.png ├── elastic_load_balancing.png ├── iam.svg ├── kinesis.png ├── s3.png └── vpc.png ├── azure.png ├── azure ├── active_directory.png ├── blob_storage.png ├── disk_storage.svg ├── images.svg ├── load_balancer.png ├── stream_analytics.png ├── virtual_machine.svg ├── virtual_network.png └── virtual_network.svg ├── bamboo.png ├── bash.png ├── big-data.png ├── certificates.png ├── chef.png ├── circleci.png ├── cloud.png ├── cloudformation.png ├── containers.png ├── databases.png ├── design.png ├── design ├── cdn-no-downtime.png ├── input-process-output.png ├── producers_consumers_fix.png └── producers_consumers_issue.png ├── devops.png ├── devops_exercises.png ├── devops_resources.png ├── distributed.png ├── distributed ├── distributed_design_lb.png └── distributed_design_standby.png ├── dns.png ├── ec2.png ├── elastic.png ├── exercises.png ├── gcp ├── cloud_storage.png ├── identity.png ├── load_balancing.png ├── persistent_disk.png ├── pub_sub.svg └── vpc.png ├── gcp_compute_engine.png ├── general.png ├── git.png ├── gitlab.png ├── googlecloud.png ├── grafana.png ├── graphite.png ├── hardware.png ├── how_they_devops.png ├── infraverse.png ├── jenkins.png ├── jenkins └── jenkins-to-kibana.png ├── kafka.png ├── kibana.png ├── kubernetes.png ├── linux.png ├── mongo.png ├── monitoring.png ├── nagios.png ├── network.png ├── no.png ├── openshift.png ├── openshift_pipelines.png ├── openstack.png ├── openstack ├── cinder.png ├── glance.png ├── keystone.png ├── neutron.png ├── octavia.png └── swift.png ├── openstack_nova.png ├── os.png ├── programming.png ├── prometheus.png ├── pulumi.svg ├── puppet.png ├── python.png ├── regex.png ├── reportportal.png ├── sad.png ├── security.png ├── sql.png ├── storage.png ├── team_city.png ├── terraform.png ├── testing.png ├── virtualization.png ├── yes.png └── you.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/README.md -------------------------------------------------------------------------------- /cicd/bamboo/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/cicd/bamboo/node.md -------------------------------------------------------------------------------- /cicd/circleci/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/cicd/circleci/node.md -------------------------------------------------------------------------------- /cicd/gitlab/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/cicd/gitlab/node.md -------------------------------------------------------------------------------- /cicd/jenkins/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/cicd/jenkins/node.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/contributing.md -------------------------------------------------------------------------------- /images/Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/Go.png -------------------------------------------------------------------------------- /images/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/HR.png -------------------------------------------------------------------------------- /images/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/ansible.png -------------------------------------------------------------------------------- /images/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws.png -------------------------------------------------------------------------------- /images/aws/ami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/ami.png -------------------------------------------------------------------------------- /images/aws/ebs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/ebs.png -------------------------------------------------------------------------------- /images/aws/elastic_load_balancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/elastic_load_balancing.png -------------------------------------------------------------------------------- /images/aws/iam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/iam.svg -------------------------------------------------------------------------------- /images/aws/kinesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/kinesis.png -------------------------------------------------------------------------------- /images/aws/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/s3.png -------------------------------------------------------------------------------- /images/aws/vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/aws/vpc.png -------------------------------------------------------------------------------- /images/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure.png -------------------------------------------------------------------------------- /images/azure/active_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/active_directory.png -------------------------------------------------------------------------------- /images/azure/blob_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/blob_storage.png -------------------------------------------------------------------------------- /images/azure/disk_storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/disk_storage.svg -------------------------------------------------------------------------------- /images/azure/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/images.svg -------------------------------------------------------------------------------- /images/azure/load_balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/load_balancer.png -------------------------------------------------------------------------------- /images/azure/stream_analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/stream_analytics.png -------------------------------------------------------------------------------- /images/azure/virtual_machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/virtual_machine.svg -------------------------------------------------------------------------------- /images/azure/virtual_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/virtual_network.png -------------------------------------------------------------------------------- /images/azure/virtual_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/azure/virtual_network.svg -------------------------------------------------------------------------------- /images/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/bamboo.png -------------------------------------------------------------------------------- /images/bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/bash.png -------------------------------------------------------------------------------- /images/big-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/big-data.png -------------------------------------------------------------------------------- /images/certificates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/certificates.png -------------------------------------------------------------------------------- /images/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/chef.png -------------------------------------------------------------------------------- /images/circleci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/circleci.png -------------------------------------------------------------------------------- /images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/cloud.png -------------------------------------------------------------------------------- /images/cloudformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/cloudformation.png -------------------------------------------------------------------------------- /images/containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/containers.png -------------------------------------------------------------------------------- /images/databases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/databases.png -------------------------------------------------------------------------------- /images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/design.png -------------------------------------------------------------------------------- /images/design/cdn-no-downtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/design/cdn-no-downtime.png -------------------------------------------------------------------------------- /images/design/input-process-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/design/input-process-output.png -------------------------------------------------------------------------------- /images/design/producers_consumers_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/design/producers_consumers_fix.png -------------------------------------------------------------------------------- /images/design/producers_consumers_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/design/producers_consumers_issue.png -------------------------------------------------------------------------------- /images/devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/devops.png -------------------------------------------------------------------------------- /images/devops_exercises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/devops_exercises.png -------------------------------------------------------------------------------- /images/devops_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/devops_resources.png -------------------------------------------------------------------------------- /images/distributed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/distributed.png -------------------------------------------------------------------------------- /images/distributed/distributed_design_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/distributed/distributed_design_lb.png -------------------------------------------------------------------------------- /images/distributed/distributed_design_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/distributed/distributed_design_standby.png -------------------------------------------------------------------------------- /images/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/dns.png -------------------------------------------------------------------------------- /images/ec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/ec2.png -------------------------------------------------------------------------------- /images/elastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/elastic.png -------------------------------------------------------------------------------- /images/exercises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/exercises.png -------------------------------------------------------------------------------- /images/gcp/cloud_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/cloud_storage.png -------------------------------------------------------------------------------- /images/gcp/identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/identity.png -------------------------------------------------------------------------------- /images/gcp/load_balancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/load_balancing.png -------------------------------------------------------------------------------- /images/gcp/persistent_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/persistent_disk.png -------------------------------------------------------------------------------- /images/gcp/pub_sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/pub_sub.svg -------------------------------------------------------------------------------- /images/gcp/vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp/vpc.png -------------------------------------------------------------------------------- /images/gcp_compute_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gcp_compute_engine.png -------------------------------------------------------------------------------- /images/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/general.png -------------------------------------------------------------------------------- /images/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/git.png -------------------------------------------------------------------------------- /images/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/gitlab.png -------------------------------------------------------------------------------- /images/googlecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/googlecloud.png -------------------------------------------------------------------------------- /images/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/grafana.png -------------------------------------------------------------------------------- /images/graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/graphite.png -------------------------------------------------------------------------------- /images/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/hardware.png -------------------------------------------------------------------------------- /images/how_they_devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/how_they_devops.png -------------------------------------------------------------------------------- /images/infraverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/infraverse.png -------------------------------------------------------------------------------- /images/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/jenkins.png -------------------------------------------------------------------------------- /images/jenkins/jenkins-to-kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/jenkins/jenkins-to-kibana.png -------------------------------------------------------------------------------- /images/kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/kafka.png -------------------------------------------------------------------------------- /images/kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/kibana.png -------------------------------------------------------------------------------- /images/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/kubernetes.png -------------------------------------------------------------------------------- /images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/linux.png -------------------------------------------------------------------------------- /images/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/mongo.png -------------------------------------------------------------------------------- /images/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/monitoring.png -------------------------------------------------------------------------------- /images/nagios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/nagios.png -------------------------------------------------------------------------------- /images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/network.png -------------------------------------------------------------------------------- /images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/no.png -------------------------------------------------------------------------------- /images/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openshift.png -------------------------------------------------------------------------------- /images/openshift_pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openshift_pipelines.png -------------------------------------------------------------------------------- /images/openstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack.png -------------------------------------------------------------------------------- /images/openstack/cinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/cinder.png -------------------------------------------------------------------------------- /images/openstack/glance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/glance.png -------------------------------------------------------------------------------- /images/openstack/keystone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/keystone.png -------------------------------------------------------------------------------- /images/openstack/neutron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/neutron.png -------------------------------------------------------------------------------- /images/openstack/octavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/octavia.png -------------------------------------------------------------------------------- /images/openstack/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack/swift.png -------------------------------------------------------------------------------- /images/openstack_nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/openstack_nova.png -------------------------------------------------------------------------------- /images/os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/os.png -------------------------------------------------------------------------------- /images/programming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/programming.png -------------------------------------------------------------------------------- /images/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/prometheus.png -------------------------------------------------------------------------------- /images/pulumi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/pulumi.svg -------------------------------------------------------------------------------- /images/puppet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/puppet.png -------------------------------------------------------------------------------- /images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/python.png -------------------------------------------------------------------------------- /images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/regex.png -------------------------------------------------------------------------------- /images/reportportal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/reportportal.png -------------------------------------------------------------------------------- /images/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/sad.png -------------------------------------------------------------------------------- /images/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/security.png -------------------------------------------------------------------------------- /images/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/sql.png -------------------------------------------------------------------------------- /images/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/storage.png -------------------------------------------------------------------------------- /images/team_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/team_city.png -------------------------------------------------------------------------------- /images/terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/terraform.png -------------------------------------------------------------------------------- /images/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/testing.png -------------------------------------------------------------------------------- /images/virtualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/virtualization.png -------------------------------------------------------------------------------- /images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/yes.png -------------------------------------------------------------------------------- /images/you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bregman-arie/infraverse/HEAD/images/you.png --------------------------------------------------------------------------------