kubernetes-deployment Questions
1
Solved
I have a nginx deployment in k8s cluster which proxies my api/ calls like this:
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /...
Bah asked 17/7, 2019 at 11:28
3
I have 4 k8s pods by setting the replicas of Deployment to 4 now.
apiVersion: v1
kind: Deployment
metadata:
...
spec:
...
replicas: 4
...
The POD will get items in a database and consume it, ...
Uncouple asked 24/4, 2019 at 8:24
1
I'm using helm chart to deploy my application on kubernetes. But services that I'm using in my stack depends on other services how do I make sure helm will not deploy until the dependencies are up?...
Fdic asked 28/2, 2019 at 15:15
2
Solved
My deployment pod was evicted due to memory consumption:
Type Reason Age From Message
---- ------ ---- ---- -------
Warning Evicted 1h kubelet, gke-XXX-default-pool-XXX The node was low on reso...
Panel asked 20/2, 2019 at 12:23
2
Is there a way to create a tree of inheritance for Kubernetes deployments? I have a number of deployments which are similar but not identical. They share many ENV vars but not all. They all use the...
Grover asked 9/10, 2018 at 15:15
1
Solved
We have hundreds of deployment and in the config we have imagePullPolicy set as “ifnotpresent” for most of them and for few it is set to “always” now I want to modify all deployment which has ifnot...
Woodsia asked 29/8, 2018 at 14:59
1
I can get the ReplicaSet if given the replica-set-name using the api as below:
GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
But how can I get the ReplicaSet based on the deploymen...
Victim asked 25/7, 2018 at 14:19
2
Solved
I'm creating a Kubernetes PVC and a Deploy that uses it.
In the yaml it is specified that uid and gid must be 1000.
But when deployed the volume is mounted with different IDs so I have no write a...
Rabbinism asked 17/7, 2018 at 22:1
1
Solved
I am trying to get my hands dirty on Kubernetes. I am firing following command:
kubectl get deployment
and I get the following headers in the output:
I can't find the difference between curre...
Bright asked 28/6, 2018 at 14:42
2
Solved
I have a kubernetes cluster of 3 hosts where each Host has a unique id label.
On this cluster, there is a software that has 3 instances (replicas).
Each replica requires to talk to all other repl...
Accumulate asked 15/12, 2016 at 14:29
© 2022 - 2024 — McMap. All rights reserved.