mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
d4be5ad2a1
* add upgrade tests * fix lint issues go.mod * remove req.cnf * revert unrelated changes * make version configurable in test * fix golangci-lint ruleguard issue Related to https://github.com/go-critic/go-critic/issues/1152 Need to have github.com/quasilyte/go-ruleguard/dsl * fix lint issues * fix * clean up docker-compose.yml * fix http request * add readme * fix lint issues * address feedback * fix * add platform * address feedback * run go fmt
11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
|
|
-keyout fleet.key -out fleet.crt -extensions san -config \
|
|
<(echo "[req]";
|
|
echo distinguished_name=req;
|
|
echo "[san]";
|
|
echo subjectAltName=DNS:fleet-a,DNS:fleet-b
|
|
) \
|
|
-subj "/CN=fleet"
|