Questions tagged [google-kubernetes-engine]

Google Kubernetes Engine (formerly known as Container Engine) takes care of provisioning and maintaining the underlying virtual machine cluster, scaling your application, and operational logistics like logging, monitoring, and health management.

Google Kubernetes Engine takes care of provisioning and maintaining the underlying virtual machine cluster, scaling your application, and operational logistics like logging, monitoring, and health management.

6757 questions
2
votes
1 answer

GKE Jenkins via Bitnami Helm chart - how to update

I've installed Jenkins on GKE using Bitnami Chart and it is online. When I want to adjust it using helm upgrade, Kubernetes brings up a new instance while leaving the other running (as expected), but the new instance fails to come up with Warning…
jws
  • 2,171
  • 19
  • 30
2
votes
2 answers

Process on GKE finishes and restarts by itself

I've created a cluster on Google Kubernetes Engine : gcloud container clusters create training-cluster --num-nodes=1 --zone=us-central1-a --machine-type="n1-highmem-2" --scopes="gke-default,storage-rw" I get the credentials: gcloud…
Patrick
  • 2,577
  • 6
  • 30
  • 53
2
votes
0 answers

List pods in a GKE cluster using REST api from the browser

Suppose I want to do operations on Kubernetes objects from a client-side web app. The app logs the user into Google using OAuth2 and obtains cloud-platform auth scope. Now the app can call Google Cloud APIs such as GKE APIs. The app can now…
Ark-kun
  • 6,358
  • 2
  • 34
  • 70
2
votes
0 answers

Anthos Config Management, Config sync not installed

I want to install Config sync via Anthos console UI, so a repository is watched and will deliver configuration to my Kubernetes clusters. While I don't get any error messages, the cluster never leaves the "In progress" status, although nothing is…
2
votes
0 answers

On GKE, dcgm-exporter can not get the gpu usage of pod/container, only the node gpu usage

apiVersion: apps/v1 kind: DaemonSet metadata: name: "dcgm-exporter" labels: app.kubernetes.io/name: "dcgm-exporter" app.kubernetes.io/version: "2.4.0-rc.3" namespace: zsx spec: updateStrategy: type: RollingUpdate selector: …
2
votes
1 answer

How can I visit NodePort service in GKE

This is my Service yaml. When create the svc on GKE.I don't know how can I visit the svc.I can't find a external ip for visiting the svc. How can I visit this svc in standard flow. Is it need to create an ingress? apiVersion: v1 kind:…
Pengbo Wu
  • 67
  • 8
2
votes
2 answers

How can I expose mongodb in a statefulset outside kubernetes

My webprotege StatefulSet has the following configuration. apiVersion: apps/v1 kind: StatefulSet metadata: name: webprotege-test labels: app: webprotege-test spec: serviceName: "webprotege-service-test" volumeClaimTemplates: -…
2
votes
1 answer

GKE resource request can't be lowered past 100 mCPU

I've recently set up a Kubernetes cluster using GKE Version 1.19.9-gke.1900 for the purpose of spinning up groups of microservices in different namespaces. Each service's pod contains a service image and an Istio proxy image. The initial CPU…
2
votes
1 answer

GKE Ingress pointing to ExternalName service doesn't work

First of all, what I want to build is right below. as above diagram, I want Ingress to make distribute traffics to service which is at other namespace me in same cluster. (Ingress is in main namespace) But the Ingress doesn't allow to point dns…
2
votes
2 answers

GCloud: Failed to pull image (400) - Permission "artifactregistry.repositories.downloadArtifacts" denied

My pod can't be created because of the following problem: Failed to pull image "europe-west3-docker.pkg.dev///my-app:1.0.0": rpc error: code = Unknown desc = Error response from daemon: Get…
berserk23
  • 21
  • 1
  • 3
2
votes
1 answer

why does my Openldap container keeps crashing due to pod security policy

I have successfully created a PodSecurityPolicy, CluserRole and a ClusterRoleBinding on GKE. I am now trying to use OpenLDap from here. Without my PodSecurityPolicy installed on the k8s cluster, the helm installation of this OpenLDap works…
2
votes
1 answer

GKE SSL Proxy NEG health check not working for TCP based services

I hav a StatefulSet of 3 replicas of ejabberd. I have exposed them to GCP NEG using the following declaration: apiVersion: v1 kind: Service metadata: name: ejabberd annotations: cloud.google.com/neg: '{"exposed_ports": {"5222":{"name":…
2
votes
3 answers

Deploying container as a Job to (Google) Kubernetes Engine - How to terminate Pod after completing task

Goal is to terminate the pod after completion of Job. This is my yaml file. Currently, my pod status is completed after running the job. apiVersion: batch/v1 kind: Job metadata: # Unique key of the Job instance name: example-job spec: …
2
votes
2 answers

Cant access pod of another Node

I install a 3 node Kubernetes Cluster with RKE tool. The installation was successful with no errors but I'm unable to ping from one pod to another pod. If I ping a pod running on worker2 node(NODE-IP-10.222.22.47) I get a response, but no responses…
virajatt
  • 73
  • 1
  • 11
2
votes
1 answer

setup skaffold to deploy changes to google cloud build

i'm new to skaffold and have setup the yaml file as below which should sync any changes in the src folder in my project to goolge cloud build. Please note Im not using git. When I run skaffold dev any changes in the src folder on the local machine…
1 2 3
99
100