DevOps&Cloud World
DevOps&Cloud World
  • 34
  • 177 441

วีดีโอ

How to Integrate SonarQube with Jenkins | Jenkins integration with SonarQube
มุมมอง 482ปีที่แล้ว
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.6Kปีที่แล้ว
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
มุมมอง 8Kปีที่แล้ว
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
มุมมอง 10Kปีที่แล้ว
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.8Kปีที่แล้ว
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
มุมมอง 831ปีที่แล้ว
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.2Kปีที่แล้ว
#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
มุมมอง 24Kปีที่แล้ว
#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
มุมมอง 20Kปีที่แล้ว
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
มุมมอง 26Kปีที่แล้ว
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
มุมมอง 9Kปีที่แล้ว
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
มุมมอง 5292 ปีที่แล้ว
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.1K2 ปีที่แล้ว
Nagios XI to monitor VMware ESX, ESXi, vSphere, and. vCenter Server with the VMware monitoring wizard Installation Overview In order to monitor VMware with Nagios XI, you will need to: • Install the prerequisites for the VMware SDK • Install the VMware Perl SDK on the Nagios XI server Ubuntu apt-get update apt-get install -y libxml-libxml-perl libxml2-dev xml2 uuid-dev perl-doc rpm libsoap-lite...
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
มุมมอง 8K2 ปีที่แล้ว
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
มุมมอง 6522 ปีที่แล้ว
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.4K2 ปีที่แล้ว
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
มุมมอง 282 ปีที่แล้ว
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.4K2 ปีที่แล้ว
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
มุมมอง 1132 ปีที่แล้ว
How to Install Kali Linux In VMware Workstation Pro 16 on Window 10
How to Install Jenkins on CentOS 7/8 Redhat Linux
มุมมอง 1.1K2 ปีที่แล้ว
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
How To Find WIFI Password In Windows 10/11 | Find all Wi-Fi passwords with only 1 command CMD
มุมมอง 413 ปีที่แล้ว
How To Find WIFI Password In Windows 10/11 | Find all Wi-Fi passwords with only 1 command CMD
Install Ubuntu 20.04 LTS On VMware workstation 16 pro / Virtual Box in Windows
มุมมอง 1073 ปีที่แล้ว
Install Ubuntu 20.04 LTS On VMware workstation 16 pro / Virtual Box in Windows

ความคิดเห็น

  • @tiagopaulino8390
    @tiagopaulino8390 17 วันที่ผ่านมา

    can we use this conf in prod?

  • @ibnudafa8772
    @ibnudafa8772 20 วันที่ผ่านมา

    how to SSL opensearch-dashboard ?

  • @joyebot7371
    @joyebot7371 28 วันที่ผ่านมา

    Thank you

  • @vineetbirlasoft
    @vineetbirlasoft หลายเดือนก่อน

    Worst

  • @AnfalRatul
    @AnfalRatul หลายเดือนก่อน

    How can we do the same thing using docker compose? I have tried but node1 and node2 is exiting

  • @deanxaka
    @deanxaka 2 หลายเดือนก่อน

    same as elasticsearch

  • @ThamizhmaniV-b6r
    @ThamizhmaniV-b6r 2 หลายเดือนก่อน

    I AM TRYING DIFFERENT WAY user:admin pass: Super@A!123 admin admin also i am tryied

  • @ThamizhmaniV-b6r
    @ThamizhmaniV-b6r 2 หลายเดือนก่อน

    version: '3.8' services: opensearch: image: opensearchproject/opensearch:2.15.0 container_name: opensearch environment: - cluster.name=opensearch-cluster - discovery.type=single-node - bootstrap.memory_lock=true - OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m - plugins.security.disabled=true - OPENSEARCH_INITIAL_ADMIN_PASSWORD=Super@A!123 ulimits: memlock: soft: -1 hard: -1 volumes: - opensearch-data:/usr/share/opensearch/data ports: - "9200:9200" - "9600:9600" networks: - opensearch-net healthcheck: test: ["CMD-SHELL", "curl -f localhost:9200 || exit 1"] interval: 30s timeout: 10s retries: 5 opensearch-dashboards: image: opensearchproject/opensearch-dashboards:2.15.0 container_name: opensearch-dashboards ports: - "5601:5601" environment: - OPENSEARCH_HOSTS=opensearch:9200 - DISABLE_SECURITY_DASHBOARDS_PLUGIN=true - OPENSEARCH_USERNAME=admin - OPENSEARCH_PASSWORD=Super@A!123 #- OPENSEARCH_INITIAL_ADMIN_PASSWORD=Super@A!123 networks: - opensearch-net depends_on: opensearch: condition: service_healthy volumes: opensearch-data: networks: opensearch-net: driver: bridge THIS IS MY COMPOSE FILE DASHBOARD OPENED BUT I AM UNABLE LOGIN I AM GETING ERROR USERNAME AND PASSWORD

  • @ThamizhmaniV-b6r
    @ThamizhmaniV-b6r 2 หลายเดือนก่อน

    i am geting error username and password how to resolve

  • @supertren
    @supertren 2 หลายเดือนก่อน

    lot of confusions in command line, terrible!

  • @anjaliadhikari4673
    @anjaliadhikari4673 2 หลายเดือนก่อน

    Have specifies storage class, nfs pv and pvc for mysql and wordpress. Pv 10 gi, pvc 5 gi for wordpress and 5gi for mysql. 5 10 gi bound to mysql and wordpress pending..

  • @anuragkrishna-v5h
    @anuragkrishna-v5h 3 หลายเดือนก่อน

    Thank you , working fine

  • @Edwinil
    @Edwinil 5 หลายเดือนก่อน

    Like butter, thanks

  • @wassimtorkhani8405
    @wassimtorkhani8405 6 หลายเดือนก่อน

    i need help in the configuration opensearch

  • @rudrapravinc
    @rudrapravinc 6 หลายเดือนก่อน

    have you configured S3datasource ?

  • @aleksandrtimashov8145
    @aleksandrtimashov8145 6 หลายเดือนก่อน

    Фифу-фифу блять, 12 минут 4 команды набирать.....

  • @DevisettyMahidhar
    @DevisettyMahidhar 6 หลายเดือนก่อน

    vim codecentric.yaml added the extraenv variables like , user and password. after i did helm upgrade keycloak codecentric/keycloak --values codecentric.yaml i got an error like, Error: UPGRADE FAILED: YAML parse error on keycloak/templates/statefulset.yaml: error converting YAML to JSON: yaml: line 83: did not find expected '-' indicator what should do

  • @guilhermeelias7276
    @guilhermeelias7276 6 หลายเดือนก่อน

    Thank you very much!

  • @serensiotic
    @serensiotic 6 หลายเดือนก่อน

    i have been stuck on this issue since 5days now " ./logstash --path.settings /etc/logstash -t " command it says " The given configuration is invalid. Reason: Expected one of [ \t ], "#", "=>" at line 3, column 10 (byte 27) after input { file { path " although i have checked it so many times it does not work please help me out input { beats { port = 5044 } }

    • @azizchehata3813
      @azizchehata3813 6 หลายเดือนก่อน

      input { beats { port => 5044 # Other configuration settings go here } }

  • @AnuradhaPaswan-pe2gu
    @AnuradhaPaswan-pe2gu 7 หลายเดือนก่อน

    After Enabling the SonarQube service, the status shows failed. What could be the possible reason for that?

  • @ahmedmostafa8954
    @ahmedmostafa8954 7 หลายเดือนก่อน

    thanks a lot the --insecure solved the problem I was searching for it

  • @ahmetaksoy553
    @ahmetaksoy553 7 หลายเดือนก่อน

    Bro, After the ==> helm install keycloak codecentric/keycloak --values codecentric.yaml command, the Pods remained in Pending. The video is paused there. You did something different. I could not run the application.How can I do it. Can you help?

  • @abdullahahsan1859
    @abdullahahsan1859 7 หลายเดือนก่อน

    background music is very annoying

  • @ravipudiyashwanth4584
    @ravipudiyashwanth4584 7 หลายเดือนก่อน

    Hi bro how to configure opensearch and opensearch dashboard in separate servers

  • @wjing003
    @wjing003 7 หลายเดือนก่อน

    Thank you. Very useful. I wonder where Logstash ingests data from. Where does the searched content come from?

  • @DivyanshPatel-q6k
    @DivyanshPatel-q6k 7 หลายเดือนก่อน

    Thanks

  • @chenjunhin-daxin-tangerang4179
    @chenjunhin-daxin-tangerang4179 8 หลายเดือนก่อน

    i got error kubectl conbash: ((: 4: syntax error: invalid arithmetic operator (error token is "") bash: ((: 4: syntax error: invalid arithmetic operator (error token is "") bash: ((: 4: syntax error: invalid arithmetic operator (error token is "") when I want to use kubectl config

  • @MarkTellier
    @MarkTellier 8 หลายเดือนก่อน

    Silence is golden! Thanks for the excellent video, informative and straight to the point.

  • @Talhakhhaan
    @Talhakhhaan 8 หลายเดือนก่อน

    Brother can you please make a video for terraform project? I am unable to create terraform app in argocd. maybe my plugin is not correct

  • @siddhuy315
    @siddhuy315 8 หลายเดือนก่อน

    Hi. Even though I provide kubernetes credentials via certificate secret file while writing jenkinsfile, getting an error after building some thing like "unable to read ca.crt file"- permission denied. I tried allowing all users to access the secret file using usermod command and also passed minikube URL to connect with jenkins server but of no use. Even a kubectl version command is not running through jenkinsfile. Any thoughts on this?

    • @devopsandcloudworld
      @devopsandcloudworld 8 หลายเดือนก่อน

      You may be need to add environment variables

  • @kavyaalakshminarayanan
    @kavyaalakshminarayanan 8 หลายเดือนก่อน

    can you please add all the commands link you used in this video

  • @AjaySingh-cs2cs
    @AjaySingh-cs2cs 8 หลายเดือนก่อน

    After process your steps. I am not able to install sonarqube. After hit an IP on the browser got NGINX web server.

    • @devopsandcloudworld
      @devopsandcloudworld 8 หลายเดือนก่อน

      Can you retry it plz

    • @AjaySingh-cs2cs
      @AjaySingh-cs2cs 8 หลายเดือนก่อน

      @@devopsandcloudworld I will update you.

  • @okc5484
    @okc5484 8 หลายเดือนก่อน

    Hi boss, is there any way to check prometheus-server's Port in different platform/site? how can we open prometheus in chrome pls? can you pls help me about this?

    • @devopsandcloudworld
      @devopsandcloudworld 8 หลายเดือนก่อน

      add Prometheus service a NodePort or LB

  • @Mangesh-m2x
    @Mangesh-m2x 8 หลายเดือนก่อน

    can i intigrate kibana with ossec ?

  • @marvellousfrederick9315
    @marvellousfrederick9315 9 หลายเดือนก่อน

    i wish i can tag @kodekloud now. you are supposed to be in prison

  • @MahadevaswamyN-f2m
    @MahadevaswamyN-f2m 9 หลายเดือนก่อน

    in this jenkin deployment how to add helm for that docker image and if i check out the code from github where it stores how to access that while checking out from pipeline.

  • @MahadevaswamyN-f2m
    @MahadevaswamyN-f2m 9 หลายเดือนก่อน

    if you added the explanation audio not rather than music it would be realy more and more helpfull.

  • @HirangaPerera
    @HirangaPerera 9 หลายเดือนก่อน

    Thank for your video its verry clear and usefull . I have one question, where did you get that https url and in my cluster I have configured ingress, in that scenario how could I access the keycloak ?

  • @ajmalkhalil752
    @ajmalkhalil752 10 หลายเดือนก่อน

    Dear I followed your video and did all the steps. Now my postgres pod s running fine but keycloak but is throwing the following error and do not get start Defaulted container "keycloak" out of: keycloak, pgchecker (init) Error from server (BadRequest): container "keycloak" in pod "keycloak-0" is waiting to start: PodInitializing Your help would be appreciated

  • @ixlune9104
    @ixlune9104 10 หลายเดือนก่อน

    version: '3' services: kong-database: image: postgres:9.6 environment: POSTGRES_USER: kong POSTGRES_DB: kong networks: - kong-net kong-migrations: image: kong:latest environment: KONG_DATABASE: postgres KONG_PG_HOST: kong-database KONG_PG_USER: kong KONG_PG_PASSWORD: kong networks: - kong-net command: "kong migrations bootstrap" kong: image: kong:latest environment: KONG_DATABASE: postgres KONG_PG_HOST: kong-database KONG_PG_USER: kong KONG_PG_PASSWORD: kong networks: - kong-net ports: - "8000:8000" - "8443:8443" - "8001:8001" - "8444:8444" depends_on: - kong-database - kong-migrations networks: kong-net:

  • @truonghongminh9950
    @truonghongminh9950 10 หลายเดือนก่อน

    thank you but i face isssue Error establishing a database connection, help me please !

    • @devopsandcloudworld
      @devopsandcloudworld 10 หลายเดือนก่อน

      You are welcome Please send the logs

  • @IDF-q2k
    @IDF-q2k 10 หลายเดือนก่อน

    i love you

  • @GSNIKHILGS
    @GSNIKHILGS 11 หลายเดือนก่อน

    Thanks for your video. As per my knowledge the pipelines.yml file is primarily intended for managing and configuring pipelines, including defining pipeline IDs, workers, and configuration file paths. It's not designed to define the actual data processing pipeline, which is typically handled by the logstash.conf file. Could you please let me know is there any specific reason for adding input and output section to logstash.yml.

  • @kushalchougule3281
    @kushalchougule3281 11 หลายเดือนก่อน

    Best

  • @yesitasnow
    @yesitasnow 11 หลายเดือนก่อน

    Hi! which IP and port are you connecting to?

    • @yesitasnow
      @yesitasnow 11 หลายเดือนก่อน

      I get a 500 error: Error establishing a database connection. I haven't been able to troubleshoot it :(

    • @devopsandcloudworld
      @devopsandcloudworld 11 หลายเดือนก่อน

      Master node ip and port is assigned by Kubernetes lb @@yesitasnow

  • @manjushp5547
    @manjushp5547 11 หลายเดือนก่อน

    It errored out in the storage creation in cloud. Had to remove the persistent volume and proceed just with PVC. Rest worked like a charm, although i used an ingress to the service to connect.

  • @dipanshumishra8901
    @dipanshumishra8901 11 หลายเดือนก่อน

    Amazing

  • @rajeshraj-ln1oq
    @rajeshraj-ln1oq 11 หลายเดือนก่อน

    keycloak pod is strucked at init 0/1 stage ...why its not coming to runing state

    • @devopsandcloudworld
      @devopsandcloudworld 11 หลายเดือนก่อน

      describe the pod to see the issue It may be related to pvc

  • @Ellipsis_
    @Ellipsis_ ปีที่แล้ว

    hahah I never saw a video with such well explained without any word spoke

  • @FarhanNurHilaludin-o1o
    @FarhanNurHilaludin-o1o ปีที่แล้ว

    hi bro, how to using plugin http-log in service and how to see log at ?thanks

    • @devopsandcloudworld
      @devopsandcloudworld ปีที่แล้ว

      enable http-log from plugin section give path of /tmp/file.log

    • @FarhanNurHilaludin-o1o
      @FarhanNurHilaludin-o1o ปีที่แล้ว

      @@devopsandcloudworld iam not see, i am use kong manager oss