Questions tagged [kubernetes]
44 questions
0
votes
1 answer
Implementing active/standby pattern with Kubernetes
I have a replicaset with two pods in an onpremise kubernetes. Is it possible to setup an active standby setup so only one pod receive requests and the second one stay in standby mode and takes requests only if first one is down? I don't find…

John Smith
- 183
0
votes
1 answer
Needed suggestions for key-value storage in Kubernetes
We have a requirement to store key value pairs (KVP) in Kubernetes and looking for possible options here. The requirements are as below:
KVP are small sized - 200 characters together.
KVP are short lived - 5 mins max, we don't need it beyond and…

Pavan Kumar
- 101
0
votes
2 answers
How to manage kubernetes configmap values in version control across environments?
I am looking for a way to automate deployment of configmaps to our dev/qa/prod environments. Right now our applications rely on kubernetes configmap/secrets that we manually apply in the cluster using
kubectl apply -f {name-of-configmap}.yaml
This…

alex
- 283
0
votes
0 answers
Sending and receiving data from a Kubernetes Job
I'm working on this containerized API where in two steps (one asynchronous and one synchronous) the user can interact with the output generated by the first step trough a front-end service.
I wasn't entirely sure if I should post it here or on SO…

Jurgy
- 111