Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Command:
    openssl genrsa -out key.pem 4096
    
    openssl req -subj '/CN=client' -new -key key.pem -out client.csr
    
    openssl x509 -req -days 365 -sha256 -in client.csr -CA ca.pem -CAkey ca-key.pem -CAcreateserial -out cert.pem 
    
    openssl pkcs8 -topk8 -inform PEM -outform DER -in key.pem -out key.der -nocrypt
    
Prompts:
    Enter pass phrase for ca-key.pem:

...

Code Block
Commands:
    sudo systemctl daemon-reload
    sudo systemctl restart docker.service

8. Capture path of Client certificate files: In order to add the certificates to FlexDeploy we will need to capture the paths of 3 different files. The ca.pem, cert.pem, key.der. The path of these files will be entered as input in configuration for the docker plugin.