renepupil

Results 9 comments of renepupil

For anyone who wants to log to kubernetes stdout: As stupid as it may look putting the `php-fpm` command in a bash script from a docker file logs properly: ```...

@yosifkit Hey, thanks for your feedback, just a few questions regarding that... **So, `docker stop` or stopping the container via Docker desktop would not work, right? (We had to use...

I found another working solution: ``` RUN touch /start.sh RUN echo "#!/bin/bash" >> /start.sh RUN echo "php-fpm" >> /start.sh ... CMD ["/bin/bash", "/start.sh"] ``` @yosifkit Do you see any issues...

Definitely the backticks are the culprit, this works: ``` ```

> cert-manager works for tons of users already so this requires more detail The question is still if the redirect is expected behavior and as others said in the linked...

@longwuyuan Thanks for you feedback > You want that annotation to do selective intelligent redirection by NOT-redirecting acme traffic, because you want the cert, but you want it to redirect...

> you want to do seemingly contradictory things simultaneously on that rule being matched. That is a valid question (I will try a solution by DNS later on, but I...

> I think there is some fairness to expect that permanent-redirect annotation should redirect selectively so that it can integrate with cert-manager Thanks for acknowledgement. > can not practically integrate...

> Have you confirmed that the acme challenge actually hits your corporate website? ```yaml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: redirect-to-another namespace: our-redirects annotations: cert-manager.io/cluster-issuer: letsencrypt-prod acme.cert-manager.io/http01-ingress-class: nginx acme.cert-manager.io/http01-edit-in-place: "false"...