DevOps&Cloud World
DevOps&Cloud World
  • 36
  • 187 280

วีดีโอ

DevOps Explained in 3 Minutes | Beginner’s Guide to DevOps Principles & Tools
มุมมอง 712 หลายเดือนก่อน
“Welcome to my quick introduction to DevOps! In this 3-minute video, we’ll cover the basics of DevOps - from what it is to its core principles, benefits, and popular tools. If you’re new to DevOps or looking to understand its impact on modern software development, this video is for you! We’ll dive into: What DevOps is and why it’s important Key principles like collaboration, automation, continu...
Uptime Kuma installation and configuration Kubernetes | Uptime and Response Time Monitoring
มุมมอง 4228 หลายเดือนก่อน
Uptime Kuma installation and configuration Kubernetes | Uptime and Response Time | Opensource Website monitoring tools Monitoring
How to Integrate SonarQube with Jenkins | Jenkins integration with SonarQube
มุมมอง 499ปีที่แล้ว
How to Integrate SonarQube with Jenkins | Jenkins integration with SonarQube If this has been helpful to you, we'd appreciate it if you could consider liking and subscribing. :::STEPS::: 1. Install OpenJDK 11 Install OpenJDK 11. $ sudo apt-get install openjdk-11-jdk -y Set Java Home vim ~/.bashrc export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 export PATH=$PATH:$JAVA_HOME/bin source ~/.bash...
Install Grafana Loki with Docker Compose | Another Log Aggregation tool
มุมมอง 2.8Kปีที่แล้ว
Install Grafana Loki with Docker Compose Loki is a log database developed by Grafana Labs. It is similar to Elasticsearch, with some major conceptual differences Steps: mkdir evaluate-loki cd evaluate-loki wget raw.githubusercontent.com/grafana/loki/main/examples/getting-started/loki-config.yaml -O loki-config.yaml wget raw.githubusercontent.com/grafana/loki/main/examples/getting-started/promta...
Keycloak Deployment on Kubernetes Cluster with Persistence Volume
มุมมอง 9Kปีที่แล้ว
Keycloak Deployment on Kubernetes Cluster with Persistence Volume curl -fsSL -o get_helm.sh raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 chmod 700 get_helm.sh ./get_helm.sh apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: local-storage provisioner: kubernetes.io/no-provisioner volumeBindingMode: WaitForFirstConsumer apiVersion: v1 kind: PersistentVolume metadata: ...
OpenSearch integration with Logstash and OpenSearch Dashboard
มุมมอง 11Kปีที่แล้ว
OpenSearch can be integrated with Logstash and OpenSearch Dashboard on Ubuntu to build a scalable and customizable search solution. The integration enables you to ingest, transform, and index data from multiple sources using Logstash, and then search and visualize the data using OpenSearch Dashboard. Here are the high-level steps to integrate OpenSearch with Logstash and OpenSearch Dashboard: I...
Deploying WordPress and MySQL with Persistent Volumes | WordPress Deployment on Kubernetes
มุมมอง 5Kปีที่แล้ว
#kubernetes #devops #wordpress Deploying WordPress and MySQL with Persistent Volumes | WordPress Deployment on Kubernetes This video shows you how to deploy a WordPress site and a MySQL database. Both applications use PersistentVolumes and PersistentVolumeClaims to store data. Setup MySQL on Kubernetes 1. Create Secret for MySQL echo -n 'mysql1234' | base64 apiVersion: v1 kind: Secret metadata:...
Easiest Step To Setup Jenkins On Kubernetes Cluster with Persistent Volume
มุมมอง 1.9Kปีที่แล้ว
In this video, I have explained the step-by-step process for setting up Jenkins on a Kubernetes cluster. Step 1: Create a Namespace for Jenkins. kubectl create namespace jenkins Step 2: Create a serviceAccount.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: jenkins-admin rules: - apiGroups: [""] resources: ["*"] verbs: ["*"] apiVersion: v1 kind: ServiceAccount me...
Step-by-Step: Guide Installing a Kubernetes Cluster using Kubeadm on Ubuntu | Mutli Node Cluster
มุมมอง 859ปีที่แล้ว
Step by Step Guide Installing a Kubernetes Cluster using Kubeadm on Ubuntu 1 master and 2 worker node cluster. Run on All Node included Master and Worker Step 1: Install Docker 2 sudo apt-get update 3 sudo apt-get install docker.io Step 2: Start and Enable Docker 4 sudo systemctl enable docker 5 sudo systemctl start docker 6 sudo systemctl status docker Step 3: Add Kubernetes Signing Key 7 curl...
How To Deploy Sample Web App On Kubernetes Cluster using Terraform | Kubernetes with Terraform
มุมมอง 3.3Kปีที่แล้ว
#kubernetes #terraform How To Deploy Sample Web Application On Kubernetes Cluster using Terraform | Kubernetes with Terraform In this video we will deploy several Kubernetes resources using terraform. Install Terraform: apt update apt install unzip -y curl -L -o /tmp/terraform_1.1.5_linux_amd64.zip releases.hashicorp.com/terraform/1.1.5/terraform_1.1.5_linux_amd64.zip unzip -d /usr/local/bin /t...
Install And Configure OpenSearch With OpenSearch Dashboards On Ubuntu
มุมมอง 26Kปีที่แล้ว
#OpenSearch #OpenSearchDashboards Install And Configure OpenSearch With OpenSearch Dashboards On Ubuntu OpenSearch is a family of software consisting of a search engine, and OpenSearch Dashboards, a data visualization dashboard for that search engine. The software started in 2021 as a fork of Elasticsearch and Kibana, with development led by Amazon Web Services. OpenSearch Dashboards is an open...
How to Install Elasticsearch, Logstash, Kibana and Filebeat (ELK Stack) on Ubuntu
มุมมอง 21K2 ปีที่แล้ว
Install Elasticsearch, Logstash, Kibana and Filebeat curl -fsSL artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg dearmor -o /usr/share/keyrings/elastic.gpg echo "deb [signed-by=/usr/share/keyrings/elastic.gpg] artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list sudo apt update sudo apt install elasticsearch vim /etc/elasticsearch/elasti...
Install Argo CD on Kubernetes cluster | Deploy Application to Kubernetes using Argo CD | Helm Charts
มุมมอง 27K2 ปีที่แล้ว
In this video I will show how to install argocd on Kubernetes cluster using helm chart after installation we will deploy nginx web server with the help of helm chart using argocd.
Install Kong and Konga Ubuntu | Kong with Konga
มุมมอง 10K2 ปีที่แล้ว
Install Kong and Konga Ubuntu | Kong with Konga | Kong api gateway Download Kong: download.konghq.com Download Postgres: www.postgresql.org/download/linux/ubuntu/ Kong installation guide: docs.konghq.com/gateway/latest/install/linux/ubuntu/ Konga: github.com/pantsel/konga Install "zlib1g-dev" Package on Ubuntu: sudo apt-get update -y sudo apt-get install -y zlib1g-dev
Beautiful tool to colorize kubectl output in Kubernetes | Kubecolor | Just Awesome
มุมมอง 5502 ปีที่แล้ว
I will show you how to download and use kubecolor tool to colorize kubectl output. Kubecolor Github github.com/hidetatz/kubecolor Thanks for watching
Monitoring VMware ESXI Server With Nagios XI
มุมมอง 3.3K2 ปีที่แล้ว
Monitoring VMware ESXI Server With Nagios XI
Build and Deploy Application war file to Tomcat Using Jenkins - CICD - Complete DevOps Project
มุมมอง 7K2 ปีที่แล้ว
Build and Deploy Application war file to Tomcat Using Jenkins - CICD - Complete DevOps Project
How to Install SonarQube in Ubuntu Linux - Download and Setup SonarQube
มุมมอง 15K2 ปีที่แล้ว
How to Install SonarQube in Ubuntu Linux - Download and Setup SonarQube
How To Setup Jenkins On Kubernetes Cluster using Helm | Running Jenkins in Kubernetes Cluster
มุมมอง 12K2 ปีที่แล้ว
How To Setup Jenkins On Kubernetes Cluster using Helm | Running Jenkins in Kubernetes Cluster
Install Prometheus and Grafana on Kubernetes using helm
มุมมอง 6K2 ปีที่แล้ว
Install Prometheus and Grafana on Kubernetes using helm
How to Add a Service, Route and and Plugins Kong API Gateway
มุมมอง 9K2 ปีที่แล้ว
How to Add a Service, Route and and Plugins Kong API Gateway
Microsoft AZ 900 fundamental free certification | AZ 900 free voucher | 99$ USD in Free
มุมมอง 6552 ปีที่แล้ว
Microsoft AZ 900 fundamental free certification | AZ 900 free voucher | 99$ USD in Free
Download and Install Jenkins on Windows | Jenkins first job
มุมมอง 912 ปีที่แล้ว
Download and Install Jenkins on Windows | Jenkins first job
Deploy a web application to Apache Tomcat on Window 10/11
มุมมอง 2.8K2 ปีที่แล้ว
Deploy a web application to Apache Tomcat on Window 10/11
Upgrade Windows 10 to Windows 11 || Windows 10 to Windows 11 Step-By-Step
มุมมอง 283 ปีที่แล้ว
Upgrade Windows 10 to Windows 11 || Windows 10 to Windows 11 Step-By-Step
How to enable HTML and CSS in Jenkins | HTML Publisher Plugin - No CSS
มุมมอง 4.6K3 ปีที่แล้ว
How to enable HTML and CSS in Jenkins | HTML Publisher Plugin - No CSS
How to Install Kali Linux In VMware Workstation Pro 16 on Window 10
มุมมอง 1133 ปีที่แล้ว
How to Install Kali Linux In VMware Workstation Pro 16 on Window 10
How to Install Jenkins on CentOS 7/8 Redhat Linux
มุมมอง 1.1K3 ปีที่แล้ว
How to Install Jenkins on CentOS 7/8 Redhat Linux
Maven build in Jenkins | Maven And Jenkins Integration
มุมมอง 763 ปีที่แล้ว
Maven build in Jenkins | Maven And Jenkins Integration