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

ContainerD nodes in GKE based on Windows

Is there a tutorial, manual, or instructions on how to get started using ContainerD as a primary tool to build images for K8S (on Windows) since Google Kubernetes is abandoning Docker-based Windows nodes and recommending switching to ContainerD…
2
votes
1 answer

GCP Resource with service account lagging logging role logs

I create a node-pool under a GKE cluster while using a custom service account. When I created this service account, I did not associate it with any roles. the Resource (node-pool) itself was created with scope required for logging. but, the service…
2
votes
0 answers

Loki endpoint on Kubernetes returning a 404 status

I am trying to pull logs from the Loki server directly for parsing - however, I am having trouble accessing the Loki server using the internal cluster IP. The service for the Loki server is: apiVersion: v1 kind: Service metadata: labels: app:…
2
votes
1 answer

GKE stuck at autorepairing and not able to add the nodepools

Recently I faced an issue in my Kubernetes cluster on GCP, From all services which is running in the my cluster, one of the service used the node memory out of limit and Node get crashed, Application node status changed to NotReady status due to the…
2
votes
1 answer

GCP GKE Google Kubernetes Engine The connection to the server localhost:8080 was refused

i am trying GCP and GKE google kubernetes engine. 1-)i am create a cluster 2-)i opened cloud shell and used command "kubectl get nodes" i get this error: "The connection to the server localhost:8080 was refused - did you specify the right host or…
2
votes
1 answer

Google Cloud: How to move a running Kubernetes cluster to a shared VPC?

We have one Kubernetes cluster running and we want to connect it to a new cluster. I found Google Clouds multicluster-service (MCS API) which seems promising, but it needs all clusters to be in the same VPC. How do one migrate / move / add a running…
NorwegianClassic
  • 935
  • 8
  • 26
2
votes
0 answers

ESPv2 with Google Cloud Endpoints using gRPC returning "The current request is not defined"

I'm trying to get ESPv2 with Cloud Endpoints working to proxy to a service using gRPC. (We've been already extensively using ESPv2 with OpenApi, but this is the first gRPC service we're trying to use it with.) Here is what I did: I have a proto…
2
votes
1 answer

ESP on GKE fails if the service account key JSON file is omitted

I'm running ESPv2 on GKE. The container starts only if the service account key JSON file is provided using the --service_account_key flag. However this flag is documented under Non GCP Platform Deployment. Furthermore, proxy startup options…
Jack
  • 10,313
  • 15
  • 75
  • 118
2
votes
1 answer

How to change admin password in OpenSearch multi-node cluster?

I have multi-node opensearch cluster managed using helm on GKE. the question is how to change it's password properly? I've found some information about creating user in internal_users.yaml and disabling demo security configuration. If that's the key…
2
votes
1 answer

How to migrate Persistent Volumes within GKE clusters in the same project?

I have a GKE cluster running with several persistent disks for storage. To set up a staging environment, I created a second cluster inside the same project. Now I want to use the data from the persistent disks of the production cluster in the…
2
votes
0 answers

How do I install Anthos on an Autopilot cluster without getting autogke-csr-limitation error?

I am trying to install Anthos. I do this using the following command... asmcli install -p project -l us-central1 -n earth-615 --managed --verbose --output_dir earth-615 --use_managed_cni --channel Rapid --enable-all So I try to check it…
2
votes
1 answer

GCP terraform-google: error getting credentials using GOOGLE_APPLICATION_CREDENTIALS environment variable: unknown credential type: "external_account"

Using GCP workload identity I am not able to provision a GKE cluster by terraform from Github action. Here is my workflow file of the GitHub action: name: Infrastructure provisions jobs: provision_gkes: permissions: …
2
votes
0 answers

Deploying consul on existing kubernetes cluster in GKE

I am trying to deploy Consul service mesh to an existing kubernetes cluster running on GKE. The cluster already has workloads running in production. For this matter i followed the following…
Shadesfear
  • 749
  • 4
  • 17
2
votes
1 answer

Ensure compatibility of your Kubernetes Engine certificates

I received an email from Google Cloud[1] about the usage of X.509 Common Name, which will be not supported anymore, just the X.509 Subject Alternative Name (SAN) fields 1 - [Action Required] Ensure compatibility of your Kubernetes Engine…
2
votes
1 answer

How to configure remote logging for airflow?

I successfully deployed Airflow 2.2.4 to GCP Kubernetes Engine. However, I have an issue with logging. I am using the official helm chart. So the, thing is, I defined a connection ID using the Airflow UI and the connection ID works for tasks as they…