I have created one service called fleetman-webapp: apiVersion: v1 kind: Service metadata: name: fleetman-webapp spec: selector: app: webapp ports: - n
I have a k8s service of type clusterIP.. i need to change the below configuration via CLI the http port to https port the port number the type to Load Balancer
I'm planning to deploy more than 30 apps in 5 namespaces. I will be using existing AWS EKS 1.21 Cluster. All the apps will be requiring external access because
I'm trying to verify that my postgres pod is accessible via the service that I've just set up. As of now, I cannot verify this. What I'm able to do is to log
I have deployed ECK (using helm) on my k8s cluster and i am attempting to install elasticsearch following the docs. https://www.elastic.co/guide/en/cloud-on-k8s
I am trying to start up the kubelet service on a worker node (the 3rd worker node)... at the moment, I can't quite tell what the error is here.. I do however, s
I have created EKS cluster with Fargate. I deployed two microservices. Everything is working properly with ingress and two separate application load balancers.
My pod give me tips: could not resolve host:mybatis.org. I found the kubernete's(v1.15.2) pods connect to kube DNS server failed,and now I found the failed host
I installed rancher into existing kubernetes cluster from this tutorial, using these commands: helm repo add rancher-latest https://releases.rancher.com/server-
Currently I do this: configMapGenerator: - name: sql-config-map files: - "someDirectory/one.sql" - "someDirectory/two.sql" - "someDirect
At work we use Kubernetes hosted in GCP. I also have a side project hosted in my personal GCP account using Google App Engine (deploy using gcloud app deploy).
First of all, let me thank you for this amazing guide. I'm very new to kubernetes and having a guide like this to follow helps a lot when trying to setup my fir
Using the following code: func GetPods(clientset *kubernetes.Clientset, name, namespace string) ([]corev1.Pod, error) { list, err := clientset.CoreV1().Pod
I am trying to connect TD with superset running in kube. This is code from my Dockerfile: USER root RUN pip install sqlalchemy-teradata RUN pip install
I try to create new Kubernetes cluster on Amazon EKS using eksctl script. I created IAM user with this permissions : when i try to create it I have this error
In official tutorial saying about changing namespace by cliking on namespace item and set context But I can't see in my version 2020.3
I'm using Docker For Desktop with the built-in Kubernetes cluster. I have installed a Pod that serves resources over HTTP, but I'm not sure how to access it usi
I am trying to configure Basic Authentication on a Nginx example with Traefik as Ingress controller. I just create the secret "mypasswd" on the Kubernetes secr
I would have a conceptual question. I can not figure it out how Istio and Service Mesh Interface come together. Service Mesh Interface' goal is to have a standa
I have added a new CRD ApiGateway to Kubernetes and I want to watch for new/changed resources of it. This works with a simple Rest Client as shown in the examp