From 25ec87feb591be88cf293ab1766d54b158512bc1 Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Sat, 4 Dec 2021 10:26:40 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20sslip.io:=20fix=20key-value=20st?= =?UTF-8?q?ore=20for=20GCE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We set the number of replicas to 1 so that when you create a key-value on `ns-gce.sslip.io`, you're sure of retrieving that value later from `ns-gce.sslip.io`. Previously it could hit the other replica, which would have a different key-value store, which would make the value "disappear". --- k8s/sslip.io.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/sslip.io.yml b/k8s/sslip.io.yml index f09aaf6..b5bed4a 100644 --- a/k8s/sslip.io.yml +++ b/k8s/sslip.io.yml @@ -4,7 +4,7 @@ kind: Deployment metadata: name: sslip.io spec: - replicas: 2 + replicas: 1 selector: matchLabels: app: sslip.io-dns