Daniel Schaaff

Results 22 comments of Daniel Schaaff

I worked around this by adding the the role directly in addition to the collection. Annoying but it works without messing with code. ``` # this due to a bug...

As a user I really need to be able to control the shutdown. In my case I have cli applications that are only using envoy for outbound connections. Some of...

Any updates on this? We just an annotation as suggested in https://github.com/hashicorp/consul-k8s/pull/911/files. Here is how linkerd handles it https://linkerd.io/2.11/tasks/graceful-shutdown/. I think this issue should be given really high priority as...

I've resorted to running a custom built binary with a patch containing the changes here https://github.com/hashicorp/consul-k8s/pull/911. It is the only way to run Consul Connect in production at present without...

I continue to build a forked image of the control plane binary for each release in order to add a prestop hook to the envoy sidecar. It's quite disappointing that...

I use this docker file to build ``` FROM public.ecr.aws/docker/library/golang:1.18.4-alpine3.15 as build ARG TARGETOS ARG TARGETARCH COPY . /go RUN cd /go/control-plane && \ set -x; go build -o pkg/bin/consul-k8s-control-plane...

I'd also note that I'm running a fork with the changes in this pull request. This feature really needs to get prioritized. There is no way to do rolling deployments...

Rancher also has a fork that at least works with helm 3

I do have that project shared with the group directly ``` resource "gitlab_project_share_group" "sre" { project_id = gitlab_project.this.id group_id = var.sre_group_id group_access = "developer" } ```

I'm attaching a redacted trace log with the relevant portion of data [gitlab_tf_log_trace.zip](https://github.com/gitlabhq/terraform-provider-gitlab/files/9303744/gitlab_tf_log_trace.zip) . Here is the full source of the terraform code ``` resource "gitlab_project" "this" { name =...