Questions tagged [kubernetes]

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

For more details, visit the official Kubernetes page.

2075 questions
0
votes
1 answer

Inheritance in Kubernetes Ingress Rule Path

I have the following ingress in my .yaml file: apiVersion: extensions/v1beta1 kind: Ingress metadata: name: my-ingress annotations: kubernetes.io/ingress.global-static-ip-name: my-ip-1 spec: rules: - http: paths: - backend: …
Will
  • 101
  • 3
0
votes
1 answer

Does etcd resources are encrypted on gke master nodes?

I do not find any information on etcd database managed by google on kubernetes master nodes. I see how resources (pod/nodes/...) communicates, but I don't know if the data are encrypted before being stored in etcd database. Sincerely
0
votes
1 answer

Get all Secrets from Kubernetes on a Pod

First of all, I have read the documentation and i see this text, which is pretty self explanatory, To use a secret, a pod needs to reference the secret. But I want to see if its possible to get all secrets from a secret definition without defining…
Diego Velez
  • 780
  • 1
  • 6
  • 13
0
votes
1 answer

Kubernetes Dashboard User/Pass?

How can i protect my Kubernetes Dashboard with a User/Pass from external access? Create a Cluster using Minikubes in vm-driver=none mode.
Berndinox
  • 240
  • 1
  • 3
  • 11
0
votes
1 answer

specify network interface for kubesystem pods

I've created a virtual kubernetes cluster using vagrant boxes. All my boxes have 2 network interfaces 2: enp0s3: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 02:1d:76:b3:3c:fe brd…
rvabdn
  • 235
  • 2
  • 11
0
votes
1 answer

metrics-server CrashLoopBackOff on k8s v1.11.1

Using kubeadm and flannel over 4-nodes running on RHEL 7 I did the following: Open port 10250 on all nodes Applied Failed to get kubernetes address: No kubernetes source found to address no source found issue Ran kubectl create -f deploy/1.8+/ Ran…
horcle_buzz
  • 175
  • 3
  • 10
0
votes
1 answer

Kubernetes: what proxy-mode does the NodePort type use?

When I am using NodePort type to expose service in kubernetes, what proxy-mode does it use?
Ran
  • 13
  • 2
0
votes
1 answer

Kubernetes hostPort: invisible to lsof?

I am playing around with my own small Kubernetes cluster. Something that I don't understand so far is how to see all open ports (= everything my Pods are listening on). I use Traefik as ingress with hostPorts :80 and :443 and I can see it listening…
0
votes
2 answers

Why should Cloudflare LB point to another AWS/GC/etc. LB?

I am aware Cloudflare has a security focus, but considering it also provides load balancing, why should I have it point to yet another load balancer e.g. AWS ELB?
0
votes
2 answers

Managing group memberships in kubernetes (GKE)

I'm administering a k8s cluster (on Google Kubernetes Engine if it matters) and would like to apply a fairly fine-grained RBAC role to all of our users that aren't service accounts. From reading documentation, I gather that groups are a bit of a…
0
votes
1 answer

Increasing the size of a PersistentVolumeClaim on GKE

I've heard that in later versions of Kubernetes (1.9 onwards if I'm not mistaken; I have 1.10), it's possible to expand a PersistentVolume as long as allowVolumeExpansion: true is set in the StorageClass configuration. In my case, on GCP, the…
0
votes
2 answers

Can we install a Kubernetes cluster on RHEL atomic hosts?

We want to install an on premise Kubernetes cluster. We have a license for RHEL and RHEL atomic. I know Red Hat has its own Kubernetes based platform called OpenShift. OpenShift can be installed on Centos7/RHEL7 but I read it's the best to install…
DenCowboy
  • 283
  • 3
  • 6
  • 14
0
votes
0 answers

Kubernetes Influx DB - Backend Unhealthy

I am trying to deploy Influx DB on Kubernetes. Using the official Influx DB Helm chart. I am deploying this Helm chart with the following values file: persistence: enabled: true size: 5Gi ingress: enabled: true # tls:…
0
votes
1 answer

Executing a script in a Docker container in K8s

I am experiencing some odd behaviors when executing a script in a k8s/Argo workflow step. To start with, where I start the Metamap Tagger servers (see code snippet below), instead of waiting till each has completed before executing the next…
horcle_buzz
  • 175
  • 3
  • 10
0
votes
1 answer

404s for service endpoints when using ingress with Gcloud

I'm working with k8s and gcloud to deploy a multi-service application with Ingress being responsible for routing requests to a specific service. K8s and generally infrastructure is a new area of learning for me so it's been very trial and error so…