TheGeniesis
TheGeniesis
We faced similar problem. After long debugging session we found that we misunderstood how LDAP works. It's not possible to assign user from LDAP to Group from Airflow. When we...
I had similar problem: What didn't work: - Removing file `/usr/local/bin/docker-credential-osxkeychain` + docker restart - Removing content from `$HOME/.docker/config.json` + docker restart - System restart - I have tried to...
My solution based on @ranneyd answer (I didn't know how my docker-machine is called): In Docker Quickstart Terminal I ran `docker-machine env`, it gave me: ``` export DOCKER_TLS_VERIFY="1" export DOCKER_HOST="tcp://192.168.99.100:2376"...
Just my 2 cents (it took me several hours to find a working solution): My working config for AKS cluster v1.27 with [ingress-nginx/ingress-nginx](https://github.com/kubernetes/ingress-nginx) chart (v4.10.0): ```yaml server: frontend: ingress: enabled:...
I did one more test - I enabled ES (changed flag `elasticsearch.enabled: true` in a chart and the feature works. I checked [Temporal documentation](https://docs.temporal.io/visibility#custom-search-attributes) and I shouldn't have any problems...
For 503 error I added additional logs into the code and found that claims are not send for DescribeNamespace: Changes in default_authorizer.go ```go func (a *defaultAuthorizer) Authorize(_ context.Context, claims *Claims,...
Any chance to merge it? I have scenario when I want to put different types of metrics stored as configmaps in different directories. e.g. ``` logs/ log_dashboard_1 log_dashboard_1 cluster_metrics/ metric_dashboard_1...
> I'm currently have the feeling that the current approach is well designed . Regarding to the [charts/grafana/templates/_config.tpl](https://github.com/grafana/helm-charts/blob/main/charts/grafana/templates/_config.tpl#L142) it's possible to declare multiple providers inside `provider.yaml` part. This chart doesn't...
I think it would be more consistent to go with `.Values.sidecar.dashboards.provider` pattern (not tested, but you should get the idea): ```yaml providers: - name: '{{ .Values.sidecar.dashboards.provider.name }}' orgId: {{ .Values.sidecar.dashboards.provider.orgid...
@jkroepke I spent some time on this today and I have two conclusions: 1. There was a flaw in my thinking - provider part allows to set specific directory (ok),...