https://github.com/making/pks-master-gateway
https://github.com/making/pks-master-gateway
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/making/pks-master-gateway
- Owner: making
- Created: 2018-06-01T18:09:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-08T12:38:15.000Z (almost 8 years ago)
- Last Synced: 2025-05-01T02:38:37.962Z (12 months ago)
- Language: Java
- Size: 58.6 KB
- Stars: 6
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
openssl pkcs12 -export \
-name pks-master-gateway \
-in $(pwd)/src/test/resources/kube.crt \
-inkey $(pwd)/src/test/resources/kube.key \
-out /tmp/keystore.p12 \
-password pass:foobar
keytool -importkeystore \
-destkeystore /tmp/keystore.jks \
-srckeystore /tmp/keystore.p12 \
-deststoretype pkcs12 \
-srcstoretype pkcs12 \
-alias pks-master-gateway \
-deststorepass changeme \
-destkeypass changeme \
-srcstorepass foobar \
-srckeypass foobar \
-noprompt
```