mirror of https://github.com/apache/druid.git
45 lines
1.4 KiB
Bash
Executable File
45 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
export DOCKER_HOST_IP=$(resolveip -s $HOSTNAME)
|
|
|
|
# Generate a client cert that will be revoked
|
|
cat <<EOT > revoked_csr.conf
|
|
[req]
|
|
default_bits = 1024
|
|
prompt = no
|
|
default_md = sha256
|
|
req_extensions = req_ext
|
|
distinguished_name = dn
|
|
|
|
[ dn ]
|
|
C=DR
|
|
ST=DR
|
|
L=Druid City
|
|
O=Druid
|
|
OU=RevokedIntegrationTests
|
|
emailAddress=revoked-it-cert@druid.io
|
|
CN = localhost
|
|
|
|
[ req_ext ]
|
|
subjectAltName = @alt_names
|
|
basicConstraints=CA:FALSE,pathlen:0
|
|
|
|
[ alt_names ]
|
|
IP.1 = ${DOCKER_HOST_IP}
|
|
IP.2 = 127.0.0.1
|
|
IP.3 = 172.172.172.1
|
|
IP.4 = ${DOCKER_MACHINE_IP:=127.0.0.1}
|
|
DNS.1 = ${HOSTNAME}
|
|
DNS.2 = localhost
|
|
|
|
EOT
|
|
|
|
# Generate a client certificate for this machine
|
|
openssl genrsa -out revoked_client.key 1024 -sha256
|
|
openssl req -new -out revoked_client.csr -key revoked_client.key -reqexts req_ext -config revoked_csr.conf
|
|
openssl x509 -req -days 3650 -in revoked_client.csr -CA root.pem -CAkey root.key -set_serial 0x11111113 -out revoked_client.pem -sha256 -extfile csr.conf -extensions req_ext
|
|
|
|
# Create a Java keystore containing the generated certificate
|
|
openssl pkcs12 -export -in revoked_client.pem -inkey revoked_client.key -out revoked_client.p12 -name revoked_druid -CAfile root.pem -caname druid-it-root -password pass:druid123
|
|
keytool -importkeystore -srckeystore revoked_client.p12 -srcstoretype PKCS12 -destkeystore revoked_client.jks -deststoretype JKS -srcstorepass druid123 -deststorepass druid123
|