* Add quarkus-elytron-security-properties to enable application properties supporting plaintext http
* Changes to `application.properties` to use openshift secrets in openshift env and pssaas:pssaas in dev
* Clean up of old config options
There is incompatibility between resteasy in quarkus (6.x) to the one
used in PNC (3.x), the API design has changed quite a bit and it seems
impossible to have both exist on the classpath at the same time.
For the one endpoint we need (Build) then our own restclient should do
Hit a bug with pnc rest-easy client builder using javax rather than
jakarta which means the class fails to load at runtime for some reason,
i've tried various dependency inclusions and exclusions as well as using
classic resteasy-client in quarkus, all either cause duplicates or give
the same error
```
java.lang.RuntimeException: java.lang.ClassNotFoundException: org.glassfish.jersey.client.JerseyClientBuilder
javax.ws.rs.client.ClientBuilder.newBuilder(ClientBuilder.java:86)
at org.jboss.pnc.client.ClientBase.<init>(ClientBase.java:76)
at org.jboss.pnc.client.ArtifactClient.<init>(ArtifactClient.java:22)
at com.redhat.pctsec.model.api.service.PncService.<init>(PncService.java:31)
```