This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import au.com.dius.pact.provider.junit5.*; | |
| import au.com.dius.pact.provider.junit5.http.*; | |
| import org.junit.jupiter.api.TestTemplate; | |
| import org.junit.jupiter.api.extension.ExtendWith; | |
| @Provider("booking-backend") | |
| public class BookingServiceProviderPactTest { | |
| @TestTemplate | |
| @ExtendWith(PactVerificationInvocationContextProvider.class) | |
| void pactVerificationTestTemplate(PactVerificationContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 👋 Hi, I'm Venkata Koripalli | |
| I’m a **Senior SDET/QA Consultant/Lead** with over 12 years of experience in **automation**, **performance**, **mobile**, and **infrastructure testing**. I specialize in building automation frameworks from scratch, focusing on enhancing product quality through detailed quality engineering, and delivering both functional and non-functional testing solutions. | |
| --- | |
| ### 🛠 **Core Expertise:** | |
| - **UI Test Automation**: Selenium WebDriver, WebdriverIO, Cypress, Playwright, CodeceptJS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import yaml | |
| from collections import defaultdict | |
| # Load Vault JSON | |
| with open("vaultfile.json") as f: | |
| vault_data = json.load(f) | |
| # Load YAML config | |
| with open("apis.yaml") as f: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NAMESPACE=$1 | |
| if [[ -z "$NAMESPACE" ]]; then | |
| echo "❌ Usage: $0 <namespace>" | |
| exit 1 | |
| fi | |
| DATE=$(date "+%Y-%m-%d %H:%M:%S") | |
| REPORT="k8s_health_report_${NAMESPACE}_$(date +%Y%m%d).md" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NAMESPACE=$1 | |
| if [[ -z "$NAMESPACE" ]]; then | |
| echo "❌ Usage: $0 <namespace>" | |
| exit 1 | |
| fi | |
| TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S") | |
| REPORT_FILE="k8s_release_report_${NAMESPACE}_$(date +%Y%m%d).md" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import markdown | |
| import pdfkit | |
| # Read markdown content | |
| with open('file.md', 'r') as f: | |
| text = f.read() | |
| # Convert to HTML | |
| html = markdown.markdown(text) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| from fuzzywuzzy import fuzz | |
| # Load CSVs without headers | |
| df1 = pd.read_csv("file1.csv", header=None, names=["URI"]) | |
| df2 = pd.read_csv("file2.csv", header=None, names=["URI"]) | |
| # Optional: Normalize URIs (strip spaces, lowercase, remove trailing slashes) | |
| df1["URI"] = df1["URI"].str.strip().str.lower().str.rstrip('/') | |
| df2["URI"] = df2["URI"].str.strip().str.lower().str.rstrip('/') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NAMESPACE=$1 | |
| if [[ -z "$NAMESPACE" ]]; then | |
| echo "❌ Usage: $0 <namespace>" | |
| exit 1 | |
| fi | |
| TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S") | |
| REPORT_FILE="k8s_namespace_report_${NAMESPACE}_$(date +%Y%m%d).md" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NAMESPACE=$1 | |
| if [[ -z "$NAMESPACE" ]]; then | |
| echo "❌ Usage: $0 <namespace>" | |
| exit 1 | |
| fi | |
| TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S") | |
| REPORT_FILE="k8s_namespace_report_${NAMESPACE}_$(date +%Y%m%d).md" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Ensure a namespace is provided | |
| NAMESPACE=$1 | |
| if [[ -z "$NAMESPACE" ]]; then | |
| echo "❌ Usage: $0 <namespace>" | |
| exit 1 | |
| fi | |
| REPORT_FILE="k8s_namespace_report_${NAMESPACE}_$(date +%Y%m%d).txt" |
NewerOlder