Ben
Ben
I used this role to install a redis 5.0.8 master/slave setup. On the slave I got the following error in `journalctl -u redis_6379`: ``` Mär 25 13:59:02 *** redis-server[11357]: ***...
## Description When using a OneToOneField as a primary key it does not get serialized in the same way as the "parent" model. E.g. ```python class MyModelA(models.Model): id = models.DecimalField(max_digits=4,...
The C4-PlantUML [documentation](https://github.com/RicardoNiepel/C4-PlantUML#getting-started) suggests that you can include the `puml` files locally with relative paths. I tried this with `c4builder site` and `"generateLocalImages": true` but that results in errors. Is...
First of all: thank you for providing this nice little lib! According to the setup.py Django
When assembling: ``` assembly add r1, r2, r3 sub r1, r2, r3 sll r1, r2, r3 srl r1, r2, r3 sra r1, r2, r3 ``` the bytecode shows that rs...
The instruction ``` assembly subi r2,r0,42 ``` assembles to 0x4002002a with an opcode of 0x10 wheras this overview (https://www.csee.umbc.edu/courses/undergraduate/411/spring96/dlx.html) of the DLX opcodes states that the opcode for subi is...
When executing following code I expect that the 1st branch is taken and the 2nd one isn't. Instead the 1st is not taken and the 2nd is. ``` assembly .global...
#### What this PR does / why we need it: This PR adds `extraEnvVars`, `extraVolumeMounts`, `extraVolumes` and `extraInitContainers` to the `values.yaml` and `StatefulSet`. The rendering of the values is performed...