Jonathan Zimmerman
Jonathan Zimmerman
Every dependency can include classifiers (tests, javadoc, sources). The line `.addClassifiers(Classifier.sources)` forces the inclusion of sources with _every_ dependency. Removing this line prevents the automatic inclusion of sources that is...
### Which feature would you like to have? The Orange Pi 5 Max is a very recent addition to the OPi5 lineup. It seems to be a bit of a...
I am attempting to install ingress-nginx via helm using v33: ```python aws_eks.HelmChart( self, "Ingress-NGINX", cluster=self.eks_cluster, chart="ingress-nginx", release="ingress-nginx", repository="https://kubernetes.github.io/ingress-nginx", version="4.13.0", namespace="ingress-nginx", create_namespace=True, values={ "controller.service.type": "LoadBalancer", "controller.service.annotations.service\\.beta\\.kubernetes\\.io/aws-load-balancer-type": "nlb", } ) ``` Unfortunately...