pipelineRat

Results 4 comments of pipelineRat

I have tried the solution of an initContainer to add certs to the truststore. However I recieve permission denied from keytool when doing the import. All the containers are being...

``` customInitContainers: - name: init-certs image: registry1.dso.mil/ironbank/redhat/openjdk/openjdk17:1.17 command: - sh args: - -c - | cp /usr/lib/jvm/jre-17-openjdk/lib/security/cacerts /cacerts/cacerts for f in /certs/*.crt; do file=${f##*/} alias=${file%.*} echo $alias keytool -cacerts -storepass...

Ill give that a try thankx maxnitze

@maxnitze just replying back with what worked for me. even after changing my keystore pointer to `-keystore /cacerts/cacerts` i was still experiencing failures. turns out my cp command was failing...