Ervin Barta
Ervin Barta
Have you tried manually creating the `v1.0.0` tag? `github-tag-action` should be able to pick it up from there.
This just happened to me as well, and the cause was that the config file at `C:/Users//AppData/Roaming/screenBloom/screenBloom_config.cfg` had hardcoded the IP with: ``` hue_ip = 192.168.1.7 ``` This was fine,...
@rr-tomas-henriquez Having a Service ( `type: LoadBalancer`) backed by a NLB for example would solve the "double jump" issue right? Or am I missing something?
Thanks for the clarification; I pictured the following when I read your comment: ``` NLB -> nginx (IC) -> krakend -> services ```
When running [jobs in a container](https://docs.github.com/en/actions/using-jobs/running-jobs-in-a-container#example-running-a-job-within-a-container), the solution is to use the [`runner` user](https://github.com/actions/runner/blob/8415f13babf8199551f817eb16b718dcdd5b31e2/images/Dockerfile#L38) when starting the container: ```yaml jobs: setup: runs-on: int-runner-set container: image: ci-image:v1.0.0 options: --user 1001 ......
Hubble UI doesn't work, fresh Cilium 1.12.1 install, "Data stream has failed on the UI backend: EOF"
The CLI simply doesn't support TLS being disabled. When the following flags are issued: ``` cilium hubble enable --ui --helm-set hubble.tls.enabled=false --helm-set hubble.tls.auto.enabled=false --helm-set hubble.relay.tls.server.enabled=false ``` 1. It causes the...
I worked around this limitation by simply having the revision in the SLO name. For example ```yaml slos: name: http-availability-rev-1 description: 99.5% of the requests should be successful for the...
You can use the `-d` flag, but it's extremely verbose. I've encountered random hangs as well, and it turned out it was because of the lack of memory on the...
Apparently the `dependency` block is getting a special treatment when using the `deep` merge strategy, where a `dependency` can be referenced in both directions: parent -> child, child -> parent....