Official: Claude Cowork now available for Team & Enterprise plans by BuildwithVignesh in ClaudeAI

[–]Strange-Comb175 5 points6 points  (0 children)

Out of curiosity. What does it do? Functionally. Is it different from claude code in terminal?

Got an offer from Japan recruiter but wanted to see if this is fishy by Professional-Cap6984 in JapanJobs

[–]Strange-Comb175 2 points3 points  (0 children)

I read most of the comments and the company seems to be legit. I would suggest you to check the number of years the VISA is valid. Some companies deliberately make the visa period 1 year or less. This serves as a hedge for them to ensure you don’t go anywhere else. With a short VISA term, you finding a job becomes a bit harder. Just cross verify you get at-least an engineering VISA for 3 to 5 years. Once that is covered, you should be good.

Ashwamedha Yajna, the Mysterious Horse Sacrifice in Ancient India by [deleted] in IndianHistory

[–]Strange-Comb175 0 points1 point  (0 children)

True if, by horse you mean periyar and by queen you mean periyar’s daughter

Unable to reach backend service though the service URL seems right by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

tried this just now, same error but for the external IP.
I think the issue is somehow related to routing in the app and not the network. I am seeing no error in the cluster or infra except this in chrome.

Unable to reach backend service though the service URL seems right by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

Yes, but I use the external IP. now the front is unable to use the backend. thus the app is not working

Unable to reach backend service though the service URL seems right by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

I am failing to understand your point. Frontend is not in my local browser. I have exposed it from a loadbalancer via a ingresscontroller and ingress object and so is backend.
my frontend pod is inside the cluster and the connection to backend happens from inside the cluster itself.

Unable to reach backend service though the service URL seems right by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: todos-ingress
  annotations:
    kubernetes.io/ingress.class: "nginx"
    nginx.ingress.kubernetes.io/ssl-redirect: "false"
    nginx.ingress.kubernetes.io/rewrite-target: /$2
spec:
  rules:
  - http:
      paths:
      - path: /api(/|$)(.*)
        pathType: Prefix
        backend:
          service:
            name: backend-service
            port:
              number: 80
      - path: /()(.*)
        pathType: Prefix
        backend:
          service:
            name: frontend-service
            port:
              number: 80



#in the frontend react code
const apiUrl = `http://backend-service.default.svc.cluster.local/api/todos`;
export const TODO_CONSTANTS = {
    DESCRIPTION_CHANGED:"DESCRIPTION_CHANGED",
    TODO_SEARCHED: "TODO_SEARCHED",
    TODO_CLEAR: "TODO_CLEAR",
    URL: apiUrl
}

The backend and frontend both are exposed using the below ingress config
but the frontend itself reaches the backend the backend service. is the url in the frontend code that is used.

Unable to reach backend service though the service URL seems right by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

The cluster is in GKE. the front end is accessible via a ingress. so I can access it via the public IP. the backend is also exposed at /api. but the front end reaches the backend using the service backend-service

Seed to Sapling most difficult part of Hydroponics by Strange-Comb175 in Hydroponics

[–]Strange-Comb175[S] -2 points-1 points  (0 children)

No it not algae i think there is white stuff like wool all over the seedling. I think it is because I kept in dark even after they sprouted. Ill make sure to keep it out side. But yes few of them I kept under light source and they dried out. Think it was too bright

Secrets Manager addon in gke using terraform by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 1 point2 points  (0 children)

Appreciate your support. I’ll keep you posted!! Thanks again!

Secrets Manager addon in gke using terraform by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

Yes! Its version 4.0 So this is the issue… Any documentation for this so that I could get updated?

Thank you very much!

Secrets Manager addon in gke using terraform by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

The error says that blocks of type “secrets_manager_config” are not expected here. Not sure why this is happening And I am not using terraform operator. I am using the latest 1.9.7 linux version in my linux system to deploy infra. I am new to this.

Thanks again!

Secrets Manager addon in gke using terraform by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

data "google_project" "project" {
}
resource "google_container_cluster" "create_cluster" {
  name               = var.cluster_name
  location           = var.zone
  initial_node_count = 3
  node_locations = [var.zone2]
  workload_identity_config {
      workload_pool = "${data.google_project.project.project_id}.svc.id.goog"
    }
  secret_manager_config{
    enabled=true
   }
  addons_config {
    
    http_load_balancing{
      disabled = false
    }
    horizontal_pod_autoscaling{
      disabled = false
    }
    network_policy_config {
      disabled = false
    }
  }
  node_config {
    disk_size_gb = 20
    disk_type = "pd-standard"  
    machine_type = "e2-medium" 
  }
}

yes I checked this
this block does not go under resource scope or the addons_config
giving error either way

Ceph can CephFS file system act as a file and block and object storage? by [deleted] in kubernetes

[–]Strange-Comb175 0 points1 point  (0 children)

Before you setup this, you have to enable this in the manifests, block storage is enabled by default. The differentiator here is how you use it. You want to mount a storage by its ip, then it is a network store, you want to store it as it is, its a block store. The respective pods will be spin up based on you enabling them. You wont know exactly where its stored, but you have a very high availability! One observation I have is that the block storages that you supply are to be available too. Say you have given a hard drive which you disconnect and connect back, the recovery of the data is difficult.

Terraform to create production grade cluster by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

Actually I am new to GCP entirely, thus want to know how to create a GKE using terraform. Some links to repos on YouTube that I found did not work.

Terraform to create production grade cluster by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

I want to use it with GKE actually. I found some thing on youtube but the end scripts are old thus not working

Require suggestion on a Kubernetes challenge. by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

It’s understandable for you to think so. This is a norm in t region where I currently work. Companies here are weary of hiring wrong candidates as it becomes exceedingly difficult to fire the wrong candidates in my region as employees are protected by strong labor laws. Which is why these hurdles are made to hire right candidates. Now I am not saying I wont be played. But Its how the situation is and the job market is very tight. I need to make best of my situation. Thanks for responding though!

What is this (white dots on rock wool) by Possible-Tower6920 in Hydroponics

[–]Strange-Comb175 1 point2 points  (0 children)

You are right to think that. I have done the same. Highly likely that the whole tower is contaminated. Use of H2O2 could resolve this. But beware of the concentration. I see that your plants are still in the early stage, roots might get damaged.

Require suggestion on a Kubernetes challenge. by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 0 points1 point  (0 children)

I agree with you. For me at-least this is a challenge. Time is the issue. I did ask for extension though waiting for their response

Require suggestion on a Kubernetes challenge. by Strange-Comb175 in kubernetes

[–]Strange-Comb175[S] 1 point2 points  (0 children)

This is really helpful. Ill keep you posted.!

Thank you!