johanjk

Results 6 comments of johanjk

@ludzzz The workaround refered to by gjeusel works. Here is a complete working example: Dockerfile: ```dockerfile ARG VERSION FROM registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis-ha:${VERSION} USER root RUN curl -sSL -o /etc/yum.repos.d/timescale_timescaledb.repo "https://packagecloud.io/install/repositories/timescale/timescaledb/config_file.repo?os=el&dist=8" && \...

I assume the log is an output from when you ran the container standalone using `docker run`, not through the crd of the operator? In that case, see https://crunchydata.github.io/crunchy-containers/stable/container-specifications/crunchy-postgres/#running-modes to...

@mariusstaicu the following works for me (note it resembles previously posted dockerfiles in this thread very closely) ```dockerfile ARG VERSION FROM registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:${VERSION} USER root RUN curl -sSL -o /etc/yum.repos.d/timescale_timescaledb.repo "https://packagecloud.io/install/repositories/timescale/timescaledb/config_file.repo?os=el&dist=8"...

All clusterctl env variables are listed here [here](https://www.sidero.dev/v0.6/overview/installation/) Sidero itself is installed using a kustomization, it can be found [here](https://github.com/siderolabs/sidero/blob/main/config/kustomization.yaml). It does not create `LoadBalancer` services. Assuming you have [metallb](https://metallb.universe.tf/installation/)...

Late to the party, but for future reference, the workaround is to set `--cache-artifacts=false` and heredoc syntax will work.

I would in fact also like `publisher` to be usable standalone. In my example I am scheduling it in the background using `asyncio.create_task` as part of `lifespan` with the help...