Skip to content

Instantly share code, notes, and snippets.

View devops-school's full-sized avatar

DevOps School devops-school

View GitHub Profile
first last address city phone
Jane Garcia 643 2nd Ave Boston 9325763815
Emma Smith 5399 Maple St Houston 9084802186
Bob Smith 5016 Cedar St Boston 8985554810
Alice Brown 3417 1st Ave San Jose 2684754835
Olivia Miller 4543 Oak St San Jose 2339613320
Jane Martinez 9221 Pine St Dallas 8705643176
Alice Miller 7568 Broadway Houston 4414732574
Chris Jones 9324 Maple St Chicago 9741513938
Michael Johnson 4990 Maple St Houston 3556216310
@devops-school
devops-school / Linux-MySQLMariaDB-CPU-MEMORY.md
Created August 23, 2025 08:26
Linux + MySQL MariaDB: Who’s eating CPU RAM

Linux + MySQL/MariaDB: “Who’s eating CPU/RAM?” — Handy Commands

Below is a compact, copy-pasteable cheat-sheet to find which process, user, or application is consuming the most CPU and memory, plus MySQL/MariaDB commands to pinpoint hot databases and queries.


🧠 Quick System Snapshots

# Top CPU processes (non-interactive)
@devops-school
devops-school / install_artifactory.sh
Created July 27, 2025 11:27
How to install Jfrog Artifactory Automated Installation Script
#!/bin/bash
# === Variables ===
DB_NAME="artifactory"
DB_USER="artifactory"
DB_PASS="StrongPassword123!"
ARTIFACTORY_VERSION="7.117.7"
echo "=== JFrog Artifactory $ARTIFACTORY_VERSION Installation Started ==="
@devops-school
devops-school / README.md
Created July 1, 2025 02:03
AWS Load Balancer Controller for Kubernetes: A Comprehensive Guide

AWS Load Balancer Controller for Kubernetes: A Comprehensive Guide

Table of Contents

  1. Introduction
    • What is the AWS Load Balancer Controller?
    • How It Works
    • Key Concepts
  2. Prerequisites
    • Kubernetes Cluster Requirements
  • AWS IAM Permissions
@devops-school
devops-school / README.md
Created July 1, 2025 02:02
A complete guide of AWS Load Balancer Controller

The AWS Load Balancer Controller is a critical component for running Kubernetes workloads on AWS, enabling seamless integration with AWS Elastic Load Balancers (ELB). This comprehensive tutorial will guide you from fundamental concepts to advanced configurations, ensuring you can effectively manage external traffic to your Kubernetes applications.

Table of Contents

  1. Introduction to AWS Load Balancer Controller
    • What is it?
    • How it works
    • Key Concepts (Ingress, Service, ALB, NLB, Target Groups, Annotations)
  2. Prerequisites
  3. Installation
@devops-school
devops-school / .gitlab-ci.yml
Created May 28, 2025 02:00
Gitlab Integration with Servicenow
stages:
- plan
- approval
- deploy
variables:
SERVICENOW_INSTANCE: "https://your-instance.service-now.com"
CHANGE_REQUEST_ID_FILE: "change_request_id.txt"
# Step 1: Create a Change Request in ServiceNow
@devops-school
devops-school / .gitlab-ci.ym
Created May 28, 2025 01:54
Gitlab Pipeline - Enforce Compliance in pipeline code
# =============================
# 🎯 Pipeline Execution Policy YAML
# Enforces: SAST, Secret Detection, Custom Job
# =============================
type: pipeline
name: enforce-secure-pipeline
enabled: true
rules:
- type: pipeline
branches:

🧪 GitLab Code Section – Student Lab Manual (v18.0)

Welcome to the GitLab Lab Manual for the Code section. This hands-on guide will walk you through using essential version control and collaboration tools available under a GitLab project’s Code tab.


🎯 Objective

By the end of this lab, you will be able to:

@devops-school
devops-school / DevOpsSchool_Markdown_Certification_Guide.md
Created May 27, 2025 01:59
DevOpsSchool_Markdown_Certification_Guide

🛠️ DevOpsSchool Markdown Reference

Welcome to DevOpsSchool – your one-stop platform for mastering DevOps and Cloud skills. Below is a demonstration of Markdown language features while introducing our top certifications and frameworks.


📚 DevOps Certifications Offered

Here is a categorized list of certifications you can pursue at DevOpsSchool:

@devops-school
devops-school / .child-pipeline.yml
Created May 26, 2025 18:56
Sample GitLab CI Pipeline: gitlab-ci.yml
stages:
- microservice_build
build_service_a:
stage: microservice_build
script:
- echo "Building microservice A..."
build_service_b:
stage: microservice_build