-
Notifications
You must be signed in to change notification settings - Fork 691
Closed
Labels
Description
Please confirm the following
- I agree to follow this project's code of conduct.
- I have checked the current issues for duplicates.
- I understand that AWX Operator is open source software provided for free and that I might not receive a timely response.
Feature Summary
In the current implementation, the certificate used by mesh ingress appears to be valid for one year.
$ kubectl -n awx exec -it deployment/inbound-hop01 -- openssl x509 -text -in /etc/receptor/tls/receptor.crt -noout
Certificate:
Data:
...
Issuer: CN = awx Receptor Root CA
Validity
Not Before: Feb 16 13:00:59 2024 GMT
Not After : Feb 16 13:00:59 2025 GMT
Subject: CN = inbound-hop01This certificate is regenerated each time the mesh ingress pod is restarted, so it will not expire unless the same pod has been running continuously for over a year, but it would be safer if it could be longer. To extend the expiration date, we can use --cert-signreq with specifing notafter.
@TheRealHaoLiu @rooftopcellist @fosterseth
I would like to hear your opinion. I'm sure we'll have little trouble with it as it is, but I wasn't sure if it was the intended design, so I'm creating this issue just in case.