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
DEBUG | |
kubectl get pods -n “namespace” | |
kubectl get services | |
kubectl get pods -n “namespace ”-o wide | |
kubectl logs {pod-name} | |
kubectl exec -it {pod-name} -- bin/bash | |
get all pods from all namespaces | |
kubectl get all -n namespace | |
kubectl describe endpoins |
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 | |
###################################################### | |
# Basic settings | |
###################################################### | |
# server base directory | |
RAGNAROK_DIR=/rAthena | |
# mysql database settings | |
MYSQL_ROOT_PW="changeme" |