Please turn JavaScript on
header-image

Direct DevOps from Quality Thought

Subscribe to Direct DevOps from Quality Thought’s news feed.

Click on “Follow” and decide if you want to get news from Direct DevOps from Quality Thought via RSS, as email newsletter, via mobile or on your personal news page.

Subscription to Direct DevOps from Quality Thought comes without risk as you can unsubscribe instantly at any time.

You can also filter the feed to your needs via topics and keywords so that you only receive the news from Direct DevOps from Quality Thought which you are really interested in. Click on the blue “Filter” button below to get started.

Website title: Direct DevOps from Quality Thought

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  6.46 / week

Message History

Public Networks vs Private Networks

  • A public network is directly accesible over internet
  • A private network is not directly accessible over internet.
    • For private networks we have reserved ip ranges
      • 192.168.0.0/16 => 192.168.0.0 to 192.168.255.255
      • 172.16.0.0/12 => 172.16.0.0 to 172.31.255.255
      • 10.0.0.0/8 => 10.0.0.0 to ...

Read full story

What does it take to run a container

  • Things to have
    • a docker installed on a system (docker host)
    • docker image
  • Containers generally have server side applications which are accessible over network.
  • Docker supports port forwarding between container networks and host networks
  • Examine the following command wher...

Read full story

Creating Azure Kubernetes Service using Terraform

  • Ways of Working with Terraform:
    • Ensure you are aware of manual creation steps and make a note of inputs
    • For each resource created, express a desired state in terraform template
    • For multi user working enable backends
    • For multi user and multi environment enable backends + workspaces
    • ...

Read full story

Creating networks

  • If we stick to decimals the possible subnet masks are
    • 255.255.255.0 => 2^8 – 2 = 254
    • 255.255.0.0 => 2^16 – 2 ~= 65000
    • 255.0.0.0 => 2^24 – 2
  • If i want a network of size 500 then subnet mask would tb 255.255.0.0
  • To solve this problem we use CIDR (Classless interdomain Routing...

Read full story

Docker components

  • When we install docker we get the following components
    • docker client
    • docker daemon
    • local storage
  • client => command line application
  • Docker can be installed on
    • windows
    • linux
    • mac

Play with docker

  • We will use a href="h...

Read full story