You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Created letsencrypt-clusterissuer.yaml in my local machine. and ran the below command:
kubectl apply -f letsencrypt-clusterissuer.yaml --namespace="report-portal"
After this is was able to lauch the URL https://51.105.219.36/ui/#login and login using default/1q2w3e - but it said the site it not secure:
Hence I proceeded with the next step of adding TLS. But I'm getting an error
kubectl apply --namespace="report-portal" -f certificate-tls.yaml - Failed Getting Error:
no matches for kind "Certificate" in version "certmanager.k8s.io/v1alpha1"
Please help me fix this and Do let me know if there r any mismatch in the versions I'm using?
Also, every next day when I log in to work - I see all the pods would have crashed. is there any parameter to let them run forever?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
The solution is to properly configure cert-manager to use a real issuer. The screenshot above shows it is using a fake issuer (by default this is normal). Everyone uses different Cert providers, which require credentials and other ways of proving it should issue you a cert. https://cert-manager.io/ explains in great detail how to use it.
"kubernetesVersion": "1.19.9"
helm version
version.BuildInfo{Version:"v3.4.1", GitCommit:"c4e74854886b2efe3321e185578e6db9be0a6e29", GitTreeState:"clean", GoVersion:"go1.14.11"}
Steps followed:
Updated Values.yaml -> ingress.hosts - with <LoadBalancer's EXTERNAL-IP address>
kubectl apply -f letsencrypt-clusterissuer.yaml --namespace="report-portal"
letsencrypt-clusterissuer.txt
values.txt
After this is was able to lauch the URL https://51.105.219.36/ui/#login and login using default/1q2w3e - but it said the site it not secure:
Hence I proceeded with the next step of adding TLS. But I'm getting an error
Getting Error:
no matches for kind "Certificate" in version "certmanager.k8s.io/v1alpha1"
here is the gateway ingress file and the tls file:
gateway-ingress.txt
Certificate-tls.yaml file.
certificate-tls.txt
Please help me fix this and Do let me know if there r any mismatch in the versions I'm using?
Also, every next day when I log in to work - I see all the pods would have crashed. is there any parameter to let them run forever?
Thanks in advance.
The text was updated successfully, but these errors were encountered: