Skip to content

Instantly share code, notes, and snippets.

View oleg-schelkunov's full-sized avatar

Oleg Schelkunov oleg-schelkunov

View GitHub Profile

3x worker nodes with 50GB disk (where applicable), 1 load balancer (where applicable)

Provider Node Class Node Details CPU Node Node Disk LB Total EUR
Civo Medium 2vCPU 4GB RAM 50GB NVMe Dedicated 20 0 10 75.803
Digital Ocean Basic 2vCPU 4GB RAM 80GB SSD Shared 24 0 12 90.9636
GCP N1 Spot n1-standard-1, 50GB Disk Dedicated 8.03 5.5 0 32.043011
GCP N1 n1-standard-1, 50GB Disk Dedicated 26.72 5.5 0 92.761214
GCP E2 e2-medium, 50GB Disk Shared 26.93 5.5 0 93.443441
Scaleway* PLAY2 NANO Cost-Optimized- 2 - 4 GB Shared 19.71 4.31 14.6 80.814
@oleg-schelkunov
oleg-schelkunov / dummy.go
Last active March 8, 2021 08:24
Examples of HTTP mocks in Golang
package dummy
import (
"fmt"
"github.com/go-resty/resty/v2"
)
type XMLDummy struct {
Name string `xml:"Name"`
}