mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
🔧 Bump up vcluster version to work around weird bug
(Probably due to K8S version mismatch; vcluster was on 1.33 and the host cluster was on 1.35. Symptoms: some pods start, all their containers are ready, the pod shows up as ready, and yet, it's not considered ready so the deployment says 0/1 and Helm never completes.)
This commit is contained in:
@@ -5,6 +5,9 @@
|
|||||||
# 10% CPU
|
# 10% CPU
|
||||||
# (See https://docs.google.com/document/d/1n0lwp6rQKQUIuo_A5LQ1dgCzrmjkDjmDtNj1Jn92UrI)
|
# (See https://docs.google.com/document/d/1n0lwp6rQKQUIuo_A5LQ1dgCzrmjkDjmDtNj1Jn92UrI)
|
||||||
# PRO2-XS = 4 core, 16 gb
|
# PRO2-XS = 4 core, 16 gb
|
||||||
|
# Note that we also need 2 volumes per vcluster (one for vcluster itself, one for shpod),
|
||||||
|
# so we might hit the maximum number of volumes per node!
|
||||||
|
# (TODO: check what that limit is on Scaleway and Linode)
|
||||||
#
|
#
|
||||||
# With vspod:
|
# With vspod:
|
||||||
# 800 MB RAM
|
# 800 MB RAM
|
||||||
@@ -15,7 +18,7 @@ set -e
|
|||||||
|
|
||||||
KONKTAG=konk
|
KONKTAG=konk
|
||||||
PROVIDER=linode
|
PROVIDER=linode
|
||||||
STUDENTS=5
|
STUDENTS=2
|
||||||
|
|
||||||
case "$PROVIDER" in
|
case "$PROVIDER" in
|
||||||
linode)
|
linode)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ resource "helm_release" "_" {
|
|||||||
create_namespace = true
|
create_namespace = true
|
||||||
repository = "https://charts.loft.sh"
|
repository = "https://charts.loft.sh"
|
||||||
chart = "vcluster"
|
chart = "vcluster"
|
||||||
version = "0.27.1"
|
version = "0.30.4"
|
||||||
values = [
|
values = [
|
||||||
yamlencode({
|
yamlencode({
|
||||||
controlPlane = {
|
controlPlane = {
|
||||||
|
|||||||
Reference in New Issue
Block a user