Code Monkey home page Code Monkey logo

tickets-in-kubernetes-'s Introduction

Build + Publish => Deployment => Service Configuration

Docker basic command to build and run

#1
Build: docker build .
Runn: docker run id_of_image
Tagging an image*1: docker build -t khairul100/image_name:latest .
Run tagged image: docker run khairul100/image_name
               OR docker run -p 8080:8080 khairul100/image_name
               OR docker run --name container_name -d -p 8080:8080 khairul100/image_name
Publish image*2: docker push khairul100/image_name

kubernetes basic command to build and run

Pod:
Creating Pod: kubectl apply -f posts.yaml
Get Pods: kubectl get pods
Execute: kubectl exec -t posts
Logs: kubectl logs
Delete Pod: kubectl delete pod posts
Event Log: kubectl describe pod posts

Deployment#2:
Creating Deployment*1: kubectl apply -f posts-depl.yaml /  kubectl apply -f .
Rollout & Restart*1.1(when code is updated): kubectl rollout restart deployment deployment_name_here
Get Deployment*2: kubectl get deployments
Get Pods**2: kubectl get pods
Delete Deployment: kubectl delete deployment posts
Event Log: kubectl describe deployment posts
Logs*3: kubectl logs pod_name_here

Service#3:
Creating Service*1: kubectl apply -f posts-srv.yaml
Get Services*2: kubectl get services
Event Log*3: kubectl describe service name_of_service_her

Skaffold Setup to deploy & publish auto

Install from here*1: https://skaffold.dev/docs/install/ OR
Installl Chocolatey then install skaffold using powershell : choco install -y skaffold
Configure skaffold.yaml
Run command 'skaffold dev' from root directory

Docker & kubernetes usefull command

docker ps --format= format_here

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.