Thomas Hanser

Results 10 comments of Thomas Hanser

I created a pull request to bump node-sass version to 6.0.1 fixes some vulns

Same here, but I think it already got resolved in an upcoming version: Here the correct pkg gets imported: [https://github.com/kubernetes/client-go/blob/v0.24.0-alpha.4/discovery/discovery_client.go#L32](https://github.com/kubernetes/client-go/blob/v0.24.0-alpha.4/discovery/discovery_client.go#L32)

In my case the Charts dir had a capital "C". The workflow is somehow case sensitive so I change it to: ```yaml - name: Run chart-releaser uses: helm/[email protected] with: charts_dir:...

What needs to be done, so we can deploy a Kind HelmChart in other namespaces than kube-system? Not every User is able to access this namespace..

I discoverd that this only works on downstream clusters and not on the local cluster. My solution now was to create an ingress for the default endpoint: ```yaml --- apiVersion:...

Hi @domruf :) Could you please check, if your kube-api pod in the kube-system namespace actually has a `--service-account-issuer` argument configured? `kubectl describe --namespace kube-system pod/kube-apiserver-MGMT_NODE_NAME` see: [https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver](https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/#:~:text=ServiceAccountIssuerDiscovery) > If...

As I am not able to pull your private helm repos I created a little demo of what works for me here: https://github.com/websi96/helm-global-values-sharing-between-charts Only thing I could imagine to be...

I came up with a solution for my self managed KeyCloak instance (Bitnami Helm Chart): Here are the relevant helm values: ```yaml image: tag: 20.0.2-debian-11-r9 proxy: edge httpRelativePath: /auth/ ingress:...

Hi I am currently also struggeling with importing values from subcharts, but i tried to import arrays and not just single values. Here is what I did to share values...