yellowhat
yellowhat
I am limited to 512 MB of RAM. Are there any settings that I can change to lower the memory utilization? Thanks
I have the same problem, I would like to remove files/folders without moving to the trash, like: ``` export FFF_TRASH_CMD="rm -rf" ``` I think that the problem is releated to...
May I ask how did you configure the keyboard layout? I have added the following to `config.py`: ```python from libqtile import qtile qtile.core.set_keymap(layout="gb", options="", variant="") ``` and seems to work....
I was starting `qtile` from the `tty`: ```console export XKB_DEFAULT_LAYOUT="gb" export XKB_DEFAULT_OPTIONS="caps:escape,altwin:swap_lalt_lwin" qtile start -b wayland ``` Do this answer you question?
Are there any update in this? Thanks
Is there a wrapper I can write? I have tried: ```python def get_ingress_ip(args): """Return Ingress ip""" ingress = args[0] for _ in range(10): ... sleep(5) grafana_ingress = kubernetes.networking.v1.Ingress.get( "grafana-ingress", Output.concat(monitoring.status.namespace,...
May I ask which version are you running?
Are you using `kubernetes.helm.v3.Chart` instead of `kubernetes.helm.v3.Release`? Unfortunately I do not have a workaround for it.
I wish was that simple: ```python monitoring = kubernetes.helm.v3.Chart( "monitoring", kubernetes.helm.v3.ChartOpts( chart="kube-prometheus-stack", version="33.2.0", namespace=monitoring_ns.metadata.name, fetch_opts=kubernetes.helm.v3.FetchOpts( repo="https://prometheus-community.github.io/helm-charts", ), values={ "grafana": { "ingress": { "enabled": True, }, }, }, ), opts=ResourceOptions(provider=k8s_provider), )...
I am trying to implement a way to wait for the `ip` to be available: ```python def get_ingress_ip(args): """Return Ingress ip""" ingress = args[0] for _ in range(10): ... sleep(5)...