Coder Social home page Coder Social logo

photon-k8-cluster's Introduction

photon-k8-cluster

Install Kubernetes Cluster on Photon VMs

Preparation

Build Infrastructure Machines

  • Install 1 x Master VM - photon-master
  • Install 1 or more Node VMs - photon-node1 and so on

Configure Infrastructure Machines

  • Log-in as root from console to each server installed with Photon OS and perform below tasks.
  • Enable SSH on all photon servers. vim /etc/ssh/sshd_config
  • Find below line and uncomment by removing the hash "#" in front of the line. #PermitRootLogin prohibit-password
  • Check if you have a ssh key set up on your computer cat ~/.ssh/id_rsa.pub .
  • If no key is set up, run ssh-keygen -t rsa to set one up.
  • Take a copy the key output from cat ~/.ssh/id_rsa.pub
  • On each Photon VM created, perform below tasks touch ~/.ssh/authorized_keys chmod 700 ~/.ssh; chmod 640 ~/.ssh/authorized_keys
  • Add the copy of key to this file vim ~/.ssh/authorized_keys
  • You should now be able to log in without passwrd using ssh root@photon-master.

Optional

  • Install and set up PMD tdnf install pmd pmd-cli systemctl start pmd.service

Define Inventory for the playbook scope

  • Update Inventory with Photon VM details in hosts file, as as example.
# hosts
[kubernetes_cluster]
192.168.1.1
192.168.1.2

[masters]
192.168.1.1

[minions]
192.168.1.2

[kubernetes_cluster:vars]
master_hostname=photon-master
master_ip=192.168.1.1
minion_hostname=photon-node
minion_ip=192.168.1.2

Run the Ansible YAML Playbook to build Kubernetes Cluster

  • Run the following from the repository location where both hosts and kubernetes_cluster.yml are located. ansible-playbook -i hosts --user root kubernetes_cluster.yml

*Check your cluster status from Master node. ssh root@photon-master kubectl get nodes

photon-k8-cluster's People

Contributors

shahkamran avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.