Evan Cordell

Results 81 comments of Evan Cordell

@julienvincent Thanks for the context! Looks like https://github.com/pulumi/pulumi-kubernetes/issues/2046 would make the kustomize experience in pulumi match the helm one, but for now I can see why you'd prefer helm.

My rule of thumb for patches is that they are for things that the operator itself has no opinion about (i.e. no operator behavior changes with different topology constraints). It...

This is possible today via the `patches` API: ```yaml spec: patches: - kind: Deployment patch: spec: template: spec: containers: - name: spicedb resources: requests: memory: "256Mi" cpu: "250m" limits: memory:...

Yep, it's in the SpiceDBCluster API. Full example: ```yaml apiVersion: authzed.com/v1alpha1 kind: SpiceDBCluster metadata: name: spicedb-cluster namespace: spicedb spec: config: replicas: 1 datastoreEngine: "postgres" telemetryEndpoint: "" secretName: spicedb-config patches: -...

@timebertt I found this thread when trying to see if anyone had written exactly the tool you wrote. I would be interested in having it more easily available - would...

@vladimir-v-diaz The way the TAP is currently written changes the specification to use the `names` key instead of the `name` key. So the proposal of supporting both is technically invalid...

A few things could be going on here. Can you share more details of how you are generating load? That might give us more of a clue. One thing to...

What is the QPS of checks during your load test? You will need to size the node to handle the maximum number of parallel requests. It also looks like you're...

I'm guessing this was just a misinterpretation of the cache filling as a memory leak. Going to close this as resolved, feel free to re-open if you have additional info...