Dennis Pfisterer

Results 15 comments of Dennis Pfisterer

I have the same issue. It would be nice to have to option to reset the internal state of the cling interpreter. This would allow having self-contained examples that do...

Currently, I'm using a workaround with block statements, e.g.: ``` { int i = 3; if(2 * i > 1000) { i = i / 2; i = 3 *...

@bodom0015 I have exactly the same issue. I've got - [cert-manager](https://cert-manager.io/) running in namespace `cert-manager` and - Traefik (deployed using [k3s](https://k3s.io/) that internally uses this [helm chart](https://github.com/traefik/traefik-helm-chart/)) in namespace `kube-system`....

I'm having the same issue on macOS using kail. Using `alias kail='KAIL_BG_THEME=light /usr/local/bin/kail '` or `export KAIL_BG_THEME=light` doesn't work. Output of `kail version` (installed using brew): ``` 0.15.0 (58d7816d3d93cccb1903603512e40919a843c760) ```

This would also be really useful to inject custom CA certs into the build pod. I'm trying to use a cluster-internal docker registry with a private CA cert. I've managed...

I did some more testing and the security groups that are generated and assigned somehow "do not work". When deploying applications to k8s, inter-pod communication does not work as expected....

Currently, I run this playbook after creating the k8s cluster as a workaround: ```YAML --- - hosts: localhost tasks: - name: Allow any TCP ingress traffic to nodes os_security_group_rule: security_group:...