tagged [kubernetes]
Pods stuck in Terminating status
Pods stuck in Terminating status I tried to delete a `ReplicationController` with 12 pods and I could see that some of the pods are stuck in `Terminating` status. My Kubernetes cluster consists of one...
- Modified
- 14 Feb at 23:8
Kubernetes API - Get Pods on Specific Nodes
Kubernetes API - Get Pods on Specific Nodes Reading the [Kubernets documentation](http://kubernetes.io/docs/user-guide/labels/#selecting-sets-of-nodes) it looks to be possible to select a certain rang...
- Modified
- 26 Jan at 00:7
kubectl unable to connect to server: x509: certificate signed by unknown authority
kubectl unable to connect to server: x509: certificate signed by unknown authority i'm getting an error when running kubectl one one machine (windows) the k8s cluster is running on CentOs 7 kubernetes...
- Modified
- 15 Sep at 07:42
no matches for kind "Deployment" in version "extensions/v1beta1"
no matches for kind "Deployment" in version "extensions/v1beta1" While deploying mojaloop, Kubernetes responds with the following errors: > Error: validation failed: [unable to recognize "": no matche...
- Modified
- 13 Jan at 13:58
Checking kubernetes pod CPU and memory
Checking kubernetes pod CPU and memory I am trying to see how much memory and CPU is utilized by a kubernetes pod. I ran the following command for this: I am getting the following error: ``` W0205 15:...
- Modified
- 5 Feb at 10:16
Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict
Kubernetes Pod Warning: 1 node(s) had volume node affinity conflict I try to set up Kubernetes cluster. I have Persistent Volume, Persistent Volume Claim and Storage class all set-up and running but w...
- Modified
- 22 Jan at 21:36
Kubernetes: how to set VolumeMount user group and file permissions
Kubernetes: how to set VolumeMount user group and file permissions I'm running a Kubernetes cluster on AWS using kops. I've mounted an EBS volume onto a container and it is visible from my application...
- Modified
- 21 Apr at 13:54
mapping values are not allowed in this context
mapping values are not allowed in this context I'm a novice regarding YAML format and kubernetes. The following is a file. ``` --- apiVersion: extensions/v1beta1 kind: Deployment metadata: labels: ...
- Modified
- 3 Nov at 05:12
How to completely uninstall kubernetes
How to completely uninstall kubernetes I installed kubernetes cluster using following this [guide](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/). After some period of time, I d...
- Modified
- 9 Jan at 19:0
How can I debug "ImagePullBackOff"?
How can I debug "ImagePullBackOff"? All of a sudden, I cannot deploy some images which could be deployed before. I got the following pod status: ``` [root@webdev2 origin]# oc get pods NAME R...
- Modified
- 25 Oct at 12:44
error converting YAML to JSON, did not find expected key kubernetes
error converting YAML to JSON, did not find expected key kubernetes I am doing a lab about kubernetes in google cloud. I have create the YAML file, but when I am trying to deploy it a shell shows me t...
- Modified
- 7 Dec at 18:0
pod has unbound PersistentVolumeClaims
pod has unbound PersistentVolumeClaims When I push my deployments, for some reason, I'm getting the error on my pods: > pod has unbound PersistentVolumeClaims Here are my YAML below: This is running l...
- Modified
- 11 Apr at 14:23
How to gracefully remove a node from Kubernetes?
How to gracefully remove a node from Kubernetes? I want to scale up/down the number of machines to increase/decrease the number of nodes in my Kubernetes cluster. When I add one machine, I’m able to s...
- Modified
- 2 Mar at 20:40
Container runtime network not ready: cni config uninitialized
Container runtime network not ready: cni config uninitialized I'm installing kubernetes(kubeadm) on centos VM running inside `Virtualbox`, so with yum I installed `kubeadm, kubelet` and `docker`. Now ...
- Modified
- 20 Feb at 06:10
.net core 2.0 logging inside Kubernetes pod console
.net core 2.0 logging inside Kubernetes pod console I wrote few web APIs in .net core 2.0 and deployed it using a docker container inside a Kubernetes cluster. I am using the below logging configurati...
- Modified
- 9 Jul at 16:41
Execute bash command in pod with kubectl?
Execute bash command in pod with kubectl? my question is simple. How to execute a bash command in the pod? I want to do everything with one bash command? So, the command is simply ignored. ``` [root@m...
- Modified
- 9 Jul at 14:10
standard_init_linux.go:211: exec user process caused "exec format error"
standard_init_linux.go:211: exec user process caused "exec format error" I am building the Dockerfile for python script which will run in minikube windows 10 system below is my Dockerfile Building the...
- Modified
- 9 Oct at 07:31
ServiceStack and Batch Processing at scale
ServiceStack and Batch Processing at scale This question is potentially more stylistic that programmatic although it does have implementation implications. I have a ServiceStack microservices architec...
- Modified
- 1 Aug at 02:58
System.drawing.common the type initializer for 'gdip' threw an exception
System.drawing.common the type initializer for 'gdip' threw an exception This is my code to add a picture to a worksheet. I get the picture as a byte from the database. .Net Core framework version is ...
- Modified
- 5 Dec at 13:39
Entity Framework Core leaving many connections in sleeping status
Entity Framework Core leaving many connections in sleeping status I have a .net core API using Entity Framework Core. The DB context is registered in startup.cs like this: In connection string I set `...
- Modified
- 25 Aug at 12:38
Exception "error MSB3024: Could not copy the file..." is thrown when attempting to build in DevOps pipeline using .Net Core 3.0 SDK (preview5)
Exception "error MSB3024: Could not copy the file..." is thrown when attempting to build in DevOps pipeline using .Net Core 3.0 SDK (preview5) I am attempting to build a `.Net Core 3.0 (preview)` proj...
- Modified
- 16 Sep at 05:12
ASP.NET Core 2.1 cookie authentication appears to have server affinity
ASP.NET Core 2.1 cookie authentication appears to have server affinity I'm developing an application in ASP.NET Core 2.1, and running it on a Kubernetes cluster. I've implemented authentication using ...
- Modified
- 26 Nov at 23:33
Scaling an IdentityServer4 service
Scaling an IdentityServer4 service I have followed the [IdentityServer4 quickstarts](https://github.com/IdentityServer/IdentityServer4.Samples/tree/release/Quickstarts/7_JavaScriptClient) and am able ...
- Modified
- 21 Jul at 13:20
Service located in another namespace
Service located in another namespace I have been trying to find a way to define a service in one namespace that links to a Pod running in another namespace. I know that containers in a Pod running in ...
- Modified
- 23 Jan at 17:44