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
#!/usr/bin/env bash | |
# ----------------------------------------------------------------------------- | |
# Linter Toggle Script for golangci-lint (.golangci.yml) | |
# | |
# This script automates the process of verifying each individual linter | |
# listed under the `linters -> enable` section in a golangci-lint YAML config. | |
# | |
# It performs the following steps: | |
# 1. Parses all linters listed (even commented ones) in the `enable:` section. |
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
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
################################################################################ | |
# Usage: ./check_flakes.sh <INPUT_FILE> [<GITHUB_TOKEN>] | |
# | |
# Description: | |
# Reads each line from <INPUT_FILE>. If a line includes "[CHECK]" then: | |
# 1. Extracts the text after "[CHECK]" (the test name). | |
# 2. Queries GitHub for an existing kind/ci-flake issue containing that test |
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
# Overview | |
The following depict example manifests of two scenarios of communication between VMs connected via primay-UDN: | |
1. VMs under the same namespace | |
2. VMs under different namespaces | |
## Prerequisits | |
- CNV 4.17 cluster. | |
- oc tool | |
# Configuring priamry-UDN on a CNV cluster |