Les Vogel

Results 58 comments of Les Vogel

We haven't worked with this in a while. https://github.com/GoogleCloudPlatform/abelana is the current one. I should be fixing things this week w/ it.

I also tried just setting: ``` min_node_count = 1 max_node_count = 10 auto_repair = true auto_upgrade= true ``` It failed inside `default_node_pool`, but worked inside a `node_pool`. I tried just...

So, I tried again, and still no success. ``` module "gke-cluster" { source = "google-terraform-modules/kubernetes-engine/google" version = "1.19.1" general = { name = "${var.cluster_name}" env = "${var.environment}" zone = "${var.gcp_zone}"...

I can do it with the gcloud command. (I get the right result) when I do: ``` gcloud container clusters create $CLUSTER_NAME \ --zone=$CLUSTER_ZONE \ --cluster-version=latest \ --machine-type=n1-standard-4 \ --enable-autoscaling...

I ended up switching to the beta provider and using resources directly (and that worked for me): ``` resource "google_container_cluster" "gke_cluster" { name = "${var.cluster_name}" zone = "${var.gcp_zone}" min_master_version =...

If you'd be receptive to a PR, I'd propose modifying `genkit/go/plugins/ollama/ollama.go`: - adding `Timeout int` to `type Config` L148 - adding `timeout int` to `var state struct` L44 - add...