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
# sh vcluster.sh bublebee-vcluster youcef 600Mi 2000m 300Mi 1000m | |
VCLUSTER=$1 | |
NAMESPACE=$2 | |
MEMORY_LIMIT=$3 | |
CPU_LIMIT=$4 | |
MEMORY_REQUEST=$5 | |
CPU_REQUEST=$6 | |
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
package main | |
import ( | |
"log" | |
"time" | |
"github.com/go-pg/pg" | |
) | |
const maxWorkers = 5 |