Skip to content

Commit

Permalink
fix: update deprecated/unsupported Quarkus Http TLS options
Browse files Browse the repository at this point in the history
With the Quarkus version upgrade the supporting TLS options also changed.

It no longer uses quarkus.http.ssl.certificate.key-file and quarkus.http.ssl.certificate.file

https://quarkus.io/guides/http-reference#configuring-the-http-server-directly
  • Loading branch information
avi5kdonrh authored and adongre committed Aug 12, 2024
1 parent 788a6e4 commit 7349eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/cf/cf_https.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ func (this *HttpsCF) Sense() {
// Observation #5
// Find out if Java options is set
this.targetJavaOptions = map[string]string{
"-Dquarkus.http.ssl.certificate.file": "/certs/tls.crt",
"-Dquarkus.http.ssl.certificate.key-file": "/certs/tls.key",
"-Dquarkus.http.ssl.certificate.files": "/certs/tls.crt",
"-Dquarkus.http.ssl.certificate.key-files": "/certs/tls.key",
}

var err error = nil
Expand Down

0 comments on commit 7349eec

Please sign in to comment.