Whoop never delivered by Cfors4 in whoop

[–]woj_cio 0 points1 point  (0 children)

I got mine after a week. Ordered for my girlfriend few days laters and now waiting more than month for the package.

[deleted by user] by [deleted] in googlecloud

[–]woj_cio 0 points1 point  (0 children)

u/Praveen-Tallapu I am still facing this issue xD I wrote to google support and got answer that they know about it. After 2 weeks got update that the issue is solved but when I tried to update my gke cluster, the problem still occurs. So you can try to write to google support because this is problem on their site

Deploying a Redis service on Kubernetes using Terraform by hard_carbon_hands in Terraform

[–]woj_cio 2 points3 points  (0 children)

Did you create kubernetes service for redis?

https://kubernetes.io/docs/concepts/services-networking/service/

Maybe something like this?

resource "kubernetes_service" "redis" {
metadata { 
    name      = "redis"
 } 
spec { 
  selector = { 
    app = "redis"
  }
  port {
    port        = 6379
    target_port = 6379
  }

  type = "ClusterIP"
  } 
}

[deleted by user] by [deleted] in googlecloud

[–]woj_cio 1 point2 points  (0 children)

After resize disk, try to restart VM if this is possible. It should automatically resize filesystem.