leland knight
leland knight
It's not clear to me what to uncomment or not. Are you thinking to put together a helm chart and keep this going? Your efforts would certainly be appreciated.
@Antebios I'm trying to get the same use case working as you did. Is this the template file that you used? https://github.com/ctrought/adcs-issuer/blob/master/template.yaml I'm seeing an error saying a secret is...
Ya, I wasn't able to track it down either in a day of troubleshooting. Kept switching between enabling kube-plex and disabling it with the two videos failing with in my...
I'd recommend using taints and tolerances to target a single node, and use a localshare pvc rather than nfs... to eliminate a variable until you get things working. I used...
Capturing a manual solution for other kubernetes folks: ``` volumeMounts: - mountPath: /tmp/ca name: certs volumes: - name: certs configMap: name: ca-certs items: - key: "ca.crt" path: "cacert.pem" lifecycle: postStart:...
I switched from using ingressClassName "avi-lb" to "nginx" and everything started working. I'm looking into why "avi-lb" is experiencing an issue but "nginx" does not.
Someone from avi collected a packet trace from my client system with keycloak working using nginx, and a packet trace via avi using avi-lb. Will report back once they've had...
Unchecking 'HTTP-Only Cookies' also fixed it for me.
@dgilsonAfelio do you happen to also know about gateway-api? I was trying to get gateway-api to work while I simultaneously worked to get the avi-lb ingress to work. I thought...
Ok, I'm going to work on a pull request which will add as mentioned above, the ability to mount extra volumes & run a postStart command via yaml specification, and...