-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Testing Supercluster documentation and update README
- Loading branch information
1 parent
463e646
commit 009c934
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
![logo](https://eliasdh.com/assets/media/images/logo-github.png) | ||
# 💙🤍Testing Supercluster🤍💙 | ||
|
||
## 📘Table of Contents | ||
|
||
1. [📘Table of Contents](#📘table-of-contents) | ||
2. [🖖Introduction](#🖖introduction) | ||
3. [✨Problems](#✨problems) | ||
1. [👉Problem 1: Create yourself an environment to test some network issues.](#👉problem-1-create-yourself-an-environment-to-test-some-network-issues) | ||
4. [🔗Links](#🔗links) | ||
|
||
--- | ||
|
||
## 🖖Introduction | ||
|
||
This document contains some interesting test commands. | ||
|
||
## ✨Problems | ||
|
||
### 👉Problem 1: Create yourself an environment to test some network issues. | ||
|
||
```bash | ||
kubectl run -i --tty --rm network-test --image=debian --restart=Never -- bash | ||
|
||
apt-get update && apt upgrade -y | ||
apt-get install dnsutils iputils-ping -y | ||
|
||
ping eliasdh.com | ||
ping google.com | ||
|
||
dig eliasdh.com | ||
dig google.com | ||
|
||
exit | ||
``` | ||
|
||
## 🔗Links | ||
- 👯 Web hosting company [EliasDH.com](https://eliasdh.com). | ||
- 📫 How to reach us elias.dehondt@outlook.com |
This file contains 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