Difference between revisions of "PKC Complete Installation Process"

From PKC
Jump to navigation Jump to search
Line 7: Line 7:
In order to run container, we need some kind of tools, which in this case are using Docker. For further readings, please visit [https://devopscube.com/what-is-docker/ this page] for comprehensive explanation of Docker by Bibin Wilson.<ref>https://devopscube.com/author/bibinwilson/</ref> </br>
In order to run container, we need some kind of tools, which in this case are using Docker. For further readings, please visit [https://devopscube.com/what-is-docker/ this page] for comprehensive explanation of Docker by Bibin Wilson.<ref>https://devopscube.com/author/bibinwilson/</ref> </br>
Below is the simple diagram on how container is deployed into one's computer, to give better understanding on high-level concept of docker container.
Below is the simple diagram on how container is deployed into one's computer, to give better understanding on high-level concept of docker container.
[[File:Docker-diagram.png|300px|thumb|center]]
[[File:Docker-diagram.png|300px|thumb|center] Simple diagram on How Docker is Deployed]


== Ansible Concept ==
== Ansible Concept ==

Revision as of 08:40, 26 February 2022

Introduction

This page is written to give complete documentation on how the PKC is installed, description of all the related services, and the concept behind the architecture design. PKC Architecture is implemented at several docker container that runs its own service on same virtual network. PKC can be installed on a Virtual Machine or Bare-Metal machine.

Docker Concept

Docker is an containerized application runs on top of host operating system. It is some form of more lightweight implementation of virtualization. All we need to do to deploy and shipped new application is to containerized all our executable code and all its dependencies inside one docker container, and we are ready to delivered the application.

  • Docker is a tools, to develop and run container
  • Container is the packed executable and application code.

In order to run container, we need some kind of tools, which in this case are using Docker. For further readings, please visit this page for comprehensive explanation of Docker by Bibin Wilson.[1]
Below is the simple diagram on how container is deployed into one's computer, to give better understanding on high-level concept of docker container. [[File:Docker-diagram.png|300px|thumb|center] Simple diagram on How Docker is Deployed]

Ansible Concept

Ansible is open-source tools that provide automation tools for cross-platform computer support. Enabled developer or DevOps to perform various task of installation, configuration, and provisioning computer and/or server. Basically everything that system administrator does in routine. And it does not depend on any agent software nor additional security layers. So its easy to use and deploy. Below are the simple schematic diagram to better give high-level understanding of ansible.

Simple diagram on How Ansible Work

PKC Architecture Review

Pre-Requisite

How to provision your server

Installation Execution

Source Code

Configuration Explained

References